
io.pcp.parfait.timing.LoggerSink Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parfait-core Show documentation
Show all versions of parfait-core Show documentation
Java performance monitoring framework, including PCP bridge
The newest version!
/*
* Copyright 2009-2017 Aconex
*
* Licensed 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 io.pcp.parfait.timing;
import java.util.Collection;
import java.util.Map;
import javax.measure.Unit;
import net.jcip.annotations.ThreadSafe;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.common.collect.Maps;
@ThreadSafe
public class LoggerSink implements StepMeasurementSink {
private final Logger logger;
private final Map, Unit>> normalizations = Maps.newConcurrentMap();
public LoggerSink() {
this(LoggerSink.class.getName());
}
public LoggerSink(String loggerName) {
logger = LoggerFactory.getLogger(loggerName);
}
@Override
public void handle(StepMeasurements measurements, int depth) {
String depthText = buildDepthString(depth);
String metricData = buildMetricDataString(measurements.getMetricInstances());
logger.info(String.format("%s\t%s\t%s\t%s", depthText, measurements.getForwardTrace(), measurements
.getBackTrace(), metricData));
}
private String buildDepthString(int depth) {
return (depth > 0) ? "Nested (" + depth + ")" : "Top";
}
private String buildMetricDataString(Collection metricInstances) {
String result = "";
for (MetricMeasurement metric : metricInstances) {
result += "\t" + buildSingleMetricResult(metric);
}
return result;
}
@SuppressWarnings({ "unchecked", "rawtypes" })
String buildSingleMetricResult(MetricMeasurement metric) {
Unit canonicalUnit = normalizations.get(metric.getMetricSource().getUnit());
if (canonicalUnit == null) {
canonicalUnit = metric.getMetricSource().getUnit();
}
return metric.getMetricName() + ": own " +
metric.ownTimeValue().to(canonicalUnit) + ", total " + metric.totalValue().to(canonicalUnit);
}
public void normalizeUnits(Unit> originalUnit, Unit> normalizedUnit) {
normalizations.put(originalUnit, normalizedUnit);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy