コード例 #1
0
 private void setAttrCacheTag(MetricsTag tag, int recNo) {
   String key = tagName(tag.name(), recNo);
   attrCache.put(key, new Attribute(key, tag.value()));
 }
コード例 #2
0
 @Override
 public MetricsRecordBuilder add(MetricsTag metricsTag) {
   tags.put(canonicalizeMetricName(metricsTag.name()), metricsTag.value());
   return this;
 }