summaryrefslogtreecommitdiffstats
path: root/staging_vespalib/src/vespa/vespalib/metrics/counter_aggregator.h
blob: 4e3524f9cc8df2572200dcc8365986964566d519 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include "metric_id.h"
#include "point.h"
#include "counter.h"

namespace vespalib {
namespace metrics {

// internal
struct CounterAggregator {
    std::pair<MetricId, Point> idx;
    size_t count;

    CounterAggregator(const Counter::Increment &other);
    void merge(const CounterAggregator &other);
};

} // namespace vespalib::metrics
} // namespace vespalib