aboutsummaryrefslogtreecommitdiffstats
path: root/node-admin/src/main/java/com/yahoo/vespa/hosted/node/admin/container/metrics/MetricValue.java
blob: da05464e0be8d129f6920f100789040aa1a923be (plain) (blame)
1
2
3
4
5
6
7
8
9
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.node.admin.container.metrics;

/**
 * @author freva
 */
public interface MetricValue {
    Number getValue();
}