Package org.tehuti.metrics

Examples of org.tehuti.metrics.Sensor


                this.emptyResponseKeysSensor.add(emptyResponseKeysSensorName + ".sampled-total", new SampledTotal());

        // Key and Value Bytes Sensor

        String keyAndValueBytesSensorName= name + ".key-and-value-bytes";
        Sensor keyAndValueBytesSensor = metricsRepository.sensor(keyAndValueBytesSensorName, metricConfig);
        this.requestThroughputInBytes =
                keyAndValueBytesSensor.add(keyAndValueBytesSensorName + ".bytes-throughput", new Rate());
        valueBytesParentSensors[amountOfParentSensors] = keyAndValueBytesSensor;
        keyBytesParentSensors[amountOfParentSensors] = keyAndValueBytesSensor;

        // Value Bytes Sensor
View Full Code Here

TOP

Related Classes of org.tehuti.metrics.Sensor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.