summaryrefslogtreecommitdiffstats
path: root/simplemetrics/src/main/java/com/yahoo/metrics/simple/runtime/MetricProperties.java
blob: 4bc9810667a9ee9dbc0ba38b655cf6ae3923f027 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.metrics.simple.runtime;

import java.nio.file.Path;
import java.nio.file.Paths;

/**
 * Constants used by Vespa to make the simple metrics implementation available
 * to other components.
 *
 * @author <a href="mailto:steinar@yahoo-inc.com">Steinar Knutsen</a>
 */
public final class MetricProperties {
    private MetricProperties() {
    }

    public static final String BUNDLE_SYMBOLIC_NAME = "simplemetrics";
}