aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/metrics/documentdb_metrics_collection.cpp
blob: 80a1508614b88fcc453f4b9a7e7d2fb15be2cab9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "documentdb_metrics_collection.h"

namespace proton {

DocumentDBMetricsCollection::DocumentDBMetricsCollection(const vespalib::string &docTypeName, size_t maxNumThreads)
    : _metrics(docTypeName, maxNumThreads),
      _taggedMetrics(docTypeName)
{}

DocumentDBMetricsCollection::~DocumentDBMetricsCollection() {}

} // namespace proton