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

#include "document_db_feeding_metrics.h"

namespace proton {

DocumentDBFeedingMetrics::DocumentDBFeedingMetrics(metrics::MetricSet* parent)
    : MetricSet("feeding", {}, "feeding metrics in a document database", parent),
      commit(this)
{
}

DocumentDBFeedingMetrics::~DocumentDBFeedingMetrics() = default;

}