aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/persistence/filestorage/active_operations_metrics.h
blob: 776fe87919814bf57a5404f5561c8dfecf778953 (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 Vespa.ai. 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;
};

}