/* * Copyright 2017 NAVER Corp. * * 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 com.navercorp.pinpoint.web.mapper.stat.sampling.sampler; import com.navercorp.pinpoint.common.server.bo.stat.CpuLoadBo; import com.navercorp.pinpoint.web.vo.chart.Point; import com.navercorp.pinpoint.web.vo.chart.UncollectedPoint; import com.navercorp.pinpoint.web.vo.stat.chart.DownSampler; import com.navercorp.pinpoint.web.vo.stat.chart.DownSamplers; import com.navercorp.pinpoint.web.vo.stat.SampledCpuLoad; import org.springframework.stereotype.Component; import java.util.ArrayList; import java.util.List; /** * @author HyunGil Jeong */ @Component public class CpuLoadSampler implements AgentStatSampler<CpuLoadBo, SampledCpuLoad> { private static final int NUM_DECIMAL_PLACES = 1; public static final DownSampler<Double> DOUBLE_DOWN_SAMPLER = DownSamplers.getDoubleDownSampler(CpuLoadBo.UNCOLLECTED_VALUE, NUM_DECIMAL_PLACES); @Override public SampledCpuLoad sampleDataPoints(int timeWindowIndex, long timestamp, List<CpuLoadBo> dataPoints, CpuLoadBo previousDataPoint) { List<Double> jvmCpuLoads = new ArrayList<>(dataPoints.size()); List<Double> systemCpuLoads = new ArrayList<>(dataPoints.size()); for (CpuLoadBo cpuLoadBo : dataPoints) { if (cpuLoadBo.getJvmCpuLoad() != CpuLoadBo.UNCOLLECTED_VALUE) { jvmCpuLoads.add(cpuLoadBo.getJvmCpuLoad() * 100); } if (cpuLoadBo.getSystemCpuLoad() != CpuLoadBo.UNCOLLECTED_VALUE) { systemCpuLoads.add(cpuLoadBo.getSystemCpuLoad() * 100); } } SampledCpuLoad sampledCpuLoad = new SampledCpuLoad(); sampledCpuLoad.setJvmCpuLoad(createPoint(timestamp, jvmCpuLoads)); sampledCpuLoad.setSystemCpuLoad(createPoint(timestamp, systemCpuLoads)); return sampledCpuLoad; } private Point<Long, Double> createPoint(long timestamp, List<Double> values) { if (values.isEmpty()) { return new UncollectedPoint<>(timestamp, CpuLoadBo.UNCOLLECTED_VALUE); } else { return new Point<>( timestamp, DOUBLE_DOWN_SAMPLER.sampleMin(values), DOUBLE_DOWN_SAMPLER.sampleMax(values), DOUBLE_DOWN_SAMPLER.sampleAvg(values), DOUBLE_DOWN_SAMPLER.sampleSum(values)); } } }