/* * 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.analysis.generated.service; import java.util.*; import lombok.*; import org.apache.skywalking.oap.server.core.Const; import org.apache.skywalking.oap.server.core.alarm.AlarmMeta; import org.apache.skywalking.oap.server.core.alarm.AlarmSupported; import org.apache.skywalking.oap.server.core.analysis.indicator.*; import org.apache.skywalking.oap.server.core.analysis.indicator.annotation.IndicatorType; import org.apache.skywalking.oap.server.core.remote.annotation.StreamData; import org.apache.skywalking.oap.server.core.remote.grpc.proto.RemoteData; import org.apache.skywalking.oap.server.core.storage.annotation.*; import org.apache.skywalking.oap.server.core.storage.StorageBuilder; import org.apache.skywalking.oap.server.core.source.Scope; /** * This class is auto generated. Please don't change this class manually. * * @author Observability Analysis Language code generator */ @IndicatorType @StreamData @StorageEntity(name = "service_p75", builder = ServiceP75Indicator.Builder.class, source = Scope.Service) public class ServiceP75Indicator extends P75Indicator implements AlarmSupported { @Setter @Getter @Column(columnName = "entity_id") @IDColumn private java.lang.String entityId; @Override public String id() { String splitJointId = String.valueOf(getTimeBucket()); splitJointId += Const.ID_SPLIT + entityId; return splitJointId; } @Override public int hashCode() { int result = 17; result = 31 * result + entityId.hashCode(); result = 31 * result + (int)getTimeBucket(); return result; } @Override public int remoteHashCode() { int result = 17; result = 31 * result + entityId.hashCode(); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; ServiceP75Indicator indicator = (ServiceP75Indicator)obj; if (!entityId.equals(indicator.entityId)) return false; if (getTimeBucket() != indicator.getTimeBucket()) return false; return true; } @Override public RemoteData.Builder serialize() { RemoteData.Builder remoteBuilder = RemoteData.newBuilder(); remoteBuilder.addDataStrings(getEntityId()); remoteBuilder.addDataLongs(getTimeBucket()); remoteBuilder.addDataIntegers(getValue()); remoteBuilder.addDataIntegers(getPrecision()); getDetailGroup().forEach(element -> remoteBuilder.addDataIntLongPairList(element.serialize())); return remoteBuilder; } @Override public void deserialize(RemoteData remoteData) { setEntityId(remoteData.getDataStrings(0)); setTimeBucket(remoteData.getDataLongs(0)); setValue(remoteData.getDataIntegers(0)); setPrecision(remoteData.getDataIntegers(1)); setDetailGroup(new IntKeyLongValueArray(30)); remoteData.getDataIntLongPairListList().forEach(element -> { getDetailGroup().add(new IntKeyLongValue(element.getKey(), element.getValue())); }); } @Override public AlarmMeta getAlarmMeta() { return new AlarmMeta("service_p75", Scope.Service, entityId); } @Override public Indicator toHour() { ServiceP75Indicator indicator = new ServiceP75Indicator(); indicator.setEntityId(this.getEntityId()); indicator.setValue(this.getValue()); indicator.setPrecision(this.getPrecision()); org.apache.skywalking.oap.server.core.analysis.indicator.IntKeyLongValueArray newValue = new org.apache.skywalking.oap.server.core.analysis.indicator.IntKeyLongValueArray(); newValue.copyFrom(this.getDetailGroup()); indicator.setDetailGroup(newValue); indicator.setTimeBucket(toTimeBucketInHour()); return indicator; } @Override public Indicator toDay() { ServiceP75Indicator indicator = new ServiceP75Indicator(); indicator.setEntityId(this.getEntityId()); indicator.setValue(this.getValue()); indicator.setPrecision(this.getPrecision()); org.apache.skywalking.oap.server.core.analysis.indicator.IntKeyLongValueArray newValue = new org.apache.skywalking.oap.server.core.analysis.indicator.IntKeyLongValueArray(); newValue.copyFrom(this.getDetailGroup()); indicator.setDetailGroup(newValue); indicator.setTimeBucket(toTimeBucketInDay()); return indicator; } @Override public Indicator toMonth() { ServiceP75Indicator indicator = new ServiceP75Indicator(); indicator.setEntityId(this.getEntityId()); indicator.setValue(this.getValue()); indicator.setPrecision(this.getPrecision()); org.apache.skywalking.oap.server.core.analysis.indicator.IntKeyLongValueArray newValue = new org.apache.skywalking.oap.server.core.analysis.indicator.IntKeyLongValueArray(); newValue.copyFrom(this.getDetailGroup()); indicator.setDetailGroup(newValue); indicator.setTimeBucket(toTimeBucketInMonth()); return indicator; } public static class Builder implements StorageBuilder { @Override public Map data2Map(ServiceP75Indicator storageData) { Map map = new HashMap<>(); map.put("entity_id", storageData.getEntityId()); map.put("value", storageData.getValue()); map.put("precision", storageData.getPrecision()); map.put("detail_group", storageData.getDetailGroup()); map.put("time_bucket", storageData.getTimeBucket()); return map; } @Override public ServiceP75Indicator map2Data(Map dbMap) { ServiceP75Indicator indicator = new ServiceP75Indicator(); indicator.setEntityId((String)dbMap.get("entity_id")); indicator.setValue(((Number)dbMap.get("value")).intValue()); indicator.setPrecision(((Number)dbMap.get("precision")).intValue()); indicator.setDetailGroup(new org.apache.skywalking.oap.server.core.analysis.indicator.IntKeyLongValueArray((String)dbMap.get("detail_group"))); indicator.setTimeBucket(((Number)dbMap.get("time_bucket")).longValue()); return indicator; } } }