blob: 75c1018a9e6675ab48427ca3f0d23687671f3299 [file] [log] [blame]
pankaj390abbc2014-10-01 17:01:05 -07001package org.onlab.metrics;
2
3/**
4 * Features to tag metrics.
5 */
6public class MetricsFeature {
7 private final String name;
8
9 /**
10 * Constructs a Feature from a name.
11 *
12 * @param newName name of the Feature
13 */
pankaj0d237832014-10-02 18:08:16 -070014 public MetricsFeature(final String newName) {
pankaj390abbc2014-10-01 17:01:05 -070015 name = newName;
16 }
17
18 public String getName() {
19 return name;
20 }
21}