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

com.metamx.emitter.core.statsd.DimensionConverter Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package com.metamx.emitter.core.statsd;

import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.google.common.base.Strings;
import com.google.common.collect.ImmutableMap;
import com.metamx.common.ISE;
import com.metamx.common.logger.Logger;

import javax.annotation.Nullable;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Map;

/**
 */
public class DimensionConverter
{

  private static final Logger log = new Logger(DimensionConverter.class);
  private Map metricMap;

  public DimensionConverter(ObjectMapper mapper, String dimensionMapPath)
  {
    metricMap = readMap(mapper, dimensionMapPath);
  }

  @Nullable
  public StatsDMetric addFilteredUserDims(
      String service,
      String metric,
      Map userDims,
      ImmutableMap.Builder builder
  )
  {
     /*
        Find the metric in the map. If we cant find it try to look it up prefixed by the service name.
        This is because some metrics are reported differently, but with the same name, from different services.
       */
    StatsDMetric statsDMetric = null;
    if (metricMap.containsKey(metric)) {
      statsDMetric = metricMap.get(metric);
    } else if (metricMap.containsKey(service + "-" + metric)) {
      statsDMetric = metricMap.get(service + "-" + metric);
    }
    if (statsDMetric != null) {
      for (String dim : statsDMetric.dimensions) {
        if (userDims.containsKey(dim)) {
          builder.put(dim, userDims.get(dim).toString());
        }
      }
      return statsDMetric;
    } else {
      return null;
    }
  }

  private Map readMap(ObjectMapper mapper, String dimensionMapPath)
  {
    try {
      InputStream is;
      if (Strings.isNullOrEmpty(dimensionMapPath)) {
        log.info("Using default metric dimension and types");
        is = this.getClass().getClassLoader().getResourceAsStream("defaultMetricDimensions.json");
      } else {
        log.info("Using metric dimensions at types at [%s]", dimensionMapPath);
        is = new FileInputStream(new File(dimensionMapPath));
      }
      return mapper.readerFor(new TypeReference>()
      {
      }).readValue(is);
    }
    catch (IOException e) {
      throw new ISE(e, "Failed to parse metric dimensions and types");
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy