All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.metamx.metrics.MonitorUtils Maven / Gradle / Ivy

There is a newer version: 1.3.8
Show newest version
package com.metamx.metrics;

import com.metamx.emitter.service.ServiceMetricEvent;
import java.util.Map;

public class MonitorUtils
{
  public static void addDimensionsToBuilder(ServiceMetricEvent.Builder builder, Map dimensions)
  {
    for (Map.Entry keyValue : dimensions.entrySet()) {
      builder.setDimension(keyValue.getKey(), keyValue.getValue());
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy