summaryrefslogtreecommitdiffstats
path: root/clustercontroller-core/src/main/java/com/yahoo/vespa/clustercontroller/core/StorageNodeStats.java
blob: 21bec495e4397d0bd6f09481de9f6023861df763 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.clustercontroller.core;

/**
 * Contains stats related to a single storage node.
 *
 * @author hakonhall
 */
public class StorageNodeStats {

    final private LatencyStats distributorPutLatency;

    /**
     * @param distributorPutLatency    The "put" latency from the point of view of the distributor.
     */
    public StorageNodeStats(LatencyStats distributorPutLatency) { this.distributorPutLatency = distributorPutLatency; }
    public LatencyStats getDistributorPutLatency() { return distributorPutLatency; }
    public void add(StorageNodeStats statsToAdd) {
        distributorPutLatency.add(statsToAdd.distributorPutLatency);
    }

}