summaryrefslogtreecommitdiffstats
path: root/simplemetrics/src/main/java/com/yahoo/metrics/simple/runtime/MetricProperties.java
blob: 2e9082dbe448c8016d9382921a87d0bc1d3d43cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2016 Yahoo Inc. 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";
}