in ffwd-client/src/main/java/com/spotify/ffwd/v1/Metric.java [57:68]
public Metric(
long has, long time, String key, Value value, String host,
List<String> tags, Map<String, String> attributes
) {
this.has = has;
this.time = time;
this.key = key;
this.value = (value == null) ? Value.doubleValue(0) : value;
this.host = host;
this.tags = tags;
this.attributes = attributes;
}