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

com.etsy.statsd.profiler.util.CPUTraces Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package com.etsy.statsd.profiler.util;

import java.util.HashMap;
import java.util.Map;

/**
 * Represents the state of the CPU profiler
 *
 * @author Andrew Johnson
 */
public class CPUTraces {
    private Map traces;
    private int max = Integer.MIN_VALUE;
    private int min = Integer.MAX_VALUE;

    public CPUTraces() {
        traces = new HashMap<>();
    }

    /**
     * Increment the aggregate time for a trace
     *
     * @param traceKey The key for the trace
     * @param inc The value by which to increment the aggregate time for the trace
     */
    public void increment(String traceKey, long inc) {
        MapUtil.setOrIncrementMap(traces, traceKey, inc);
        updateBounds(traceKey);
    }

    /**
     * Get data to be flushed from the state
     * It only returns traces that have been updated since the last flush
     *
     */
    public Map getDataToFlush() {
        Map result = traces;
        traces = new HashMap<>();
        return result;
    }

    /**
     * Get the bounds on the number of path components for the CPU trace metrics
     *
     * @return A Pair of integers, the left being the minimum number of components and the right being the maximum
     */
    public Range getBounds() {
        return new Range(min, max);
    }

    private void updateBounds(String traceKey) {
        int numComponents = 1;
        int len = traceKey.length();
        for (int i = 0; i < len; ++i) {
            if (traceKey.charAt(i) == '.') {
                numComponents++;
            }
        }
        // Account for the cpu.trace prefix
        max = Math.max(max, numComponents - 2);
        min = Math.min(min, numComponents - 2);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy