/* * 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 org.apache.skywalking.oap.server.core.query; import java.io.IOException; import java.text.ParseException; import java.util.*; import org.apache.skywalking.apm.util.StringUtil; import org.apache.skywalking.oap.server.core.Const; import org.apache.skywalking.oap.server.core.analysis.indicator.Indicator; import org.apache.skywalking.oap.server.core.query.entity.*; import org.apache.skywalking.oap.server.core.query.sql.*; import org.apache.skywalking.oap.server.core.storage.StorageModule; import org.apache.skywalking.oap.server.core.storage.annotation.ValueColumnIds; import org.apache.skywalking.oap.server.core.storage.query.IMetricQueryDAO; import org.apache.skywalking.oap.server.library.module.*; import org.apache.skywalking.oap.server.library.module.Service; import org.apache.skywalking.oap.server.library.util.CollectionUtils; import org.slf4j.*; /** * @author peng-yongsheng */ public class MetricQueryService implements Service { private static final Logger logger = LoggerFactory.getLogger(MetricQueryService.class); private final ModuleManager moduleManager; private IMetricQueryDAO metricQueryDAO; public MetricQueryService(ModuleManager moduleManager) { this.moduleManager = moduleManager; } private IMetricQueryDAO getMetricQueryDAO() { if (metricQueryDAO == null) { metricQueryDAO = moduleManager.find(StorageModule.NAME).getService(IMetricQueryDAO.class); } return metricQueryDAO; } public IntValues getValues(final String indName, final List ids, final Step step, final long startTB, final long endTB) throws IOException { if (CollectionUtils.isEmpty(ids)) { throw new RuntimeException("IDs can't be null"); } Where where = new Where(); KeyValues intKeyValues = new KeyValues(); intKeyValues.setKey(Indicator.ENTITY_ID); where.getKeyValues().add(intKeyValues); ids.forEach(intKeyValues.getValues()::add); return getMetricQueryDAO().getValues(indName, step, startTB, endTB, where, ValueColumnIds.INSTANCE.getValueCName(indName), ValueColumnIds.INSTANCE.getValueFunction(indName)); } public IntValues getLinearIntValues(final String indName, final String id, final Step step, final long startTB, final long endTB) throws IOException, ParseException { List durationPoints = DurationUtils.INSTANCE.getDurationPoints(step, startTB, endTB); List ids = new ArrayList<>(); if (StringUtil.isEmpty(id)) { durationPoints.forEach(durationPoint -> ids.add(String.valueOf(durationPoint.getPoint()))); } else { durationPoints.forEach(durationPoint -> ids.add(durationPoint.getPoint() + Const.ID_SPLIT + id)); } return getMetricQueryDAO().getLinearIntValues(indName, step, ids, ValueColumnIds.INSTANCE.getValueCName(indName)); } public Thermodynamic getThermodynamic(final String indName, final String id, final Step step, final long startTB, final long endTB) throws IOException, ParseException { List durationPoints = DurationUtils.INSTANCE.getDurationPoints(step, startTB, endTB); List ids = new ArrayList<>(); durationPoints.forEach(durationPoint -> { if (id == null) { ids.add(durationPoint.getPoint() + ""); } else { ids.add(durationPoint.getPoint() + Const.ID_SPLIT + id); } }); return getMetricQueryDAO().getThermodynamic(indName, step, ids, ValueColumnIds.INSTANCE.getValueCName(indName)); } }