in ffwd-client/src/main/java/com/spotify/ffwd/v1/Metric.java [106:110]
public Metric attribute(String k, String v) {
final Map<String, String> attributes = new HashMap<>(this.attributes);
attributes.put(k, v);
return new Metric(set(ATTRIBUTES), time, key, value, host, tags, attributes);
}