in ffwd-client/src/main/java/com/spotify/ffwd/Metric.java [60:72]
public Metric(
long has, String proc, long time, String key, double value, String host,
List<String> tags, Map<String, String> attributes
) {
this.has = has;
this.proc = proc;
this.time = time;
this.key = key;
this.value = value;
this.host = host;
this.tags = tags;
this.attributes = attributes;
}