aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/persistence/filestorage/active_operations_metrics.h
blob: 94856d70f9e6763de2d583b25d32e463d131ac48 (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 Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/metrics/metricset.h>
#include <vespa/metrics/valuemetric.h>

namespace storage {

/*
 * Metrics for active operations with bucket lock at service layer.
 */
struct ActiveOperationsMetrics : public metrics::MetricSet
{
    metrics::DoubleAverageMetric size;
    metrics::DoubleAverageMetric latency;

    ActiveOperationsMetrics(metrics::MetricSet* parent);
    ~ActiveOperationsMetrics() override;
};

}