/* * 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.servicerelation; 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_relation_server_call_sla", builder = ServiceRelationServerCallSlaIndicator.Builder.class) public class ServiceRelationServerCallSlaIndicator extends PercentIndicator 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; ServiceRelationServerCallSlaIndicator indicator = (ServiceRelationServerCallSlaIndicator)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.setDataStrings(0, getEntityId()); remoteBuilder.setDataLongs(0, getTotal()); remoteBuilder.setDataLongs(1, getMatch()); remoteBuilder.setDataLongs(2, getTimeBucket()); remoteBuilder.setDataIntegers(0, getPercentage()); return remoteBuilder; } @Override public void deserialize(RemoteData remoteData) { setEntityId(remoteData.getDataStrings(0)); setTotal(remoteData.getDataLongs(0)); setMatch(remoteData.getDataLongs(1)); setTimeBucket(remoteData.getDataLongs(2)); setPercentage(remoteData.getDataIntegers(0)); } @Override public AlarmMeta getAlarmMeta() { return new AlarmMeta("service_relation_server_call_sla", Scope.ServiceRelation, entityId); } @Override public Indicator toHour() { ServiceRelationServerCallSlaIndicator indicator = new ServiceRelationServerCallSlaIndicator(); indicator.setEntityId(this.getEntityId()); indicator.setTotal(this.getTotal()); indicator.setPercentage(this.getPercentage()); indicator.setMatch(this.getMatch()); indicator.setTimeBucket(toTimeBucketInHour()); return indicator; } @Override public Indicator toDay() { ServiceRelationServerCallSlaIndicator indicator = new ServiceRelationServerCallSlaIndicator(); indicator.setEntityId(this.getEntityId()); indicator.setTotal(this.getTotal()); indicator.setPercentage(this.getPercentage()); indicator.setMatch(this.getMatch()); indicator.setTimeBucket(toTimeBucketInDay()); return indicator; } @Override public Indicator toMonth() { ServiceRelationServerCallSlaIndicator indicator = new ServiceRelationServerCallSlaIndicator(); indicator.setEntityId(this.getEntityId()); indicator.setTotal(this.getTotal()); indicator.setPercentage(this.getPercentage()); indicator.setMatch(this.getMatch()); indicator.setTimeBucket(toTimeBucketInMonth()); return indicator; } public static class Builder implements StorageBuilder { @Override public Map data2Map(ServiceRelationServerCallSlaIndicator storageData) { Map map = new HashMap<>(); map.put("entity_id", storageData.getEntityId()); map.put("total", storageData.getTotal()); map.put("percentage", storageData.getPercentage()); map.put("match", storageData.getMatch()); map.put("time_bucket", storageData.getTimeBucket()); return map; } @Override public ServiceRelationServerCallSlaIndicator map2Data(Map dbMap) { ServiceRelationServerCallSlaIndicator indicator = new ServiceRelationServerCallSlaIndicator(); indicator.setEntityId((String)dbMap.get("entity_id")); indicator.setTotal(((Number)dbMap.get("total")).longValue()); indicator.setPercentage(((Number)dbMap.get("percentage")).intValue()); indicator.setMatch(((Number)dbMap.get("match")).longValue()); indicator.setTimeBucket(((Number)dbMap.get("time_bucket")).longValue()); return indicator; } } }