summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/metrics/simple/runtime/MetricProperties.java
blob: 9c3ecec10fc88f2ce403fafbf0162ff4ecb28032 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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 Steinar Knutsen
 */
public final class MetricProperties {

    private MetricProperties() {
    }

    public static final String BUNDLE_SYMBOLIC_NAME = "simplemetrics";

}