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

namespace vespalib {
namespace metrics {


void
Counter::add(size_t count, Point point) const
{
    if (_manager) {
        MetricPointId fullId(_id, point);
        _manager->add(Increment(fullId, count));
    }
}

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