Unverified Commit c2a425f5 authored by 彭勇升 pengys's avatar 彭勇升 pengys Committed by GitHub
Browse files

Filter non-active service name when UI query. (#1262)

* #1124

Add heart beat time into service name index to filter non-active service name.

* Filter service name by heart beat time when query service name count.

* #1124
1. Add application id to be a query condition of searchService method.
2. Filter service name by given time which calculated by the minute metric TTL setting. ( CurrentTimeStamp - minuteMetricTTL )

* Fixed the auto test failure.

#1124
parent a6d9a605
Loading
Loading
Loading
Loading
+11 −33
Original line number Diff line number Diff line
@@ -19,28 +19,18 @@
package org.apache.skywalking.apm.collector.analysis.alarm.provider;

import org.apache.skywalking.apm.collector.analysis.alarm.define.AnalysisAlarmModule;
import org.apache.skywalking.apm.collector.analysis.alarm.provider.worker.application.ApplicationMetricAlarmGraph;
import org.apache.skywalking.apm.collector.analysis.alarm.provider.worker.application.ApplicationReferenceMetricAlarmGraph;
import org.apache.skywalking.apm.collector.analysis.alarm.provider.worker.instance.InstanceMetricAlarmGraph;
import org.apache.skywalking.apm.collector.analysis.alarm.provider.worker.instance.InstanceReferenceMetricAlarmGraph;
import org.apache.skywalking.apm.collector.analysis.alarm.provider.worker.service.ServiceMetricAlarmGraph;
import org.apache.skywalking.apm.collector.analysis.alarm.provider.worker.service.ServiceReferenceMetricAlarmGraph;
import org.apache.skywalking.apm.collector.analysis.alarm.provider.worker.application.*;
import org.apache.skywalking.apm.collector.analysis.alarm.provider.worker.instance.*;
import org.apache.skywalking.apm.collector.analysis.alarm.provider.worker.service.*;
import org.apache.skywalking.apm.collector.analysis.metric.define.AnalysisMetricModule;
import org.apache.skywalking.apm.collector.analysis.worker.model.base.WorkerCreateListener;
import org.apache.skywalking.apm.collector.analysis.worker.timer.PersistenceTimer;
import org.apache.skywalking.apm.collector.configuration.ConfigurationModule;
import org.apache.skywalking.apm.collector.core.module.ModuleDefine;
import org.apache.skywalking.apm.collector.core.module.ModuleConfig;
import org.apache.skywalking.apm.collector.core.module.ModuleProvider;
import org.apache.skywalking.apm.collector.core.module.*;
import org.apache.skywalking.apm.collector.remote.RemoteModule;
import org.apache.skywalking.apm.collector.remote.service.RemoteDataRegisterService;
import org.apache.skywalking.apm.collector.storage.StorageModule;
import org.apache.skywalking.apm.collector.storage.table.alarm.ApplicationAlarm;
import org.apache.skywalking.apm.collector.storage.table.alarm.ApplicationAlarmList;
import org.apache.skywalking.apm.collector.storage.table.alarm.InstanceAlarm;
import org.apache.skywalking.apm.collector.storage.table.alarm.InstanceAlarmList;
import org.apache.skywalking.apm.collector.storage.table.alarm.ServiceAlarm;
import org.apache.skywalking.apm.collector.storage.table.alarm.ServiceAlarmList;
import org.apache.skywalking.apm.collector.storage.table.alarm.*;

/**
 * @author peng-yongsheng
@@ -72,23 +62,12 @@ public class AnalysisAlarmModuleProvider extends ModuleProvider {
    @Override public void start() {
        WorkerCreateListener workerCreateListener = new WorkerCreateListener();

        ServiceMetricAlarmGraph serviceMetricAlarmGraph = new ServiceMetricAlarmGraph(getManager(), workerCreateListener);
        serviceMetricAlarmGraph.create();

        InstanceMetricAlarmGraph instanceMetricAlarmGraph = new InstanceMetricAlarmGraph(getManager(), workerCreateListener);
        instanceMetricAlarmGraph.create();

        ApplicationMetricAlarmGraph applicationMetricAlarmGraph = new ApplicationMetricAlarmGraph(getManager(), workerCreateListener);
        applicationMetricAlarmGraph.create();

        ServiceReferenceMetricAlarmGraph serviceReferenceMetricAlarmGraph = new ServiceReferenceMetricAlarmGraph(getManager(), workerCreateListener);
        serviceReferenceMetricAlarmGraph.create();

        InstanceReferenceMetricAlarmGraph instanceReferenceMetricAlarmGraph = new InstanceReferenceMetricAlarmGraph(getManager(), workerCreateListener);
        instanceReferenceMetricAlarmGraph.create();

        ApplicationReferenceMetricAlarmGraph applicationReferenceMetricAlarmGraph = new ApplicationReferenceMetricAlarmGraph(getManager(), workerCreateListener);
        applicationReferenceMetricAlarmGraph.create();
        new ServiceMetricAlarmGraph(getManager(), workerCreateListener).create();
        new InstanceMetricAlarmGraph(getManager(), workerCreateListener).create();
        new ApplicationMetricAlarmGraph(getManager(), workerCreateListener).create();
        new ServiceReferenceMetricAlarmGraph(getManager(), workerCreateListener).create();
        new InstanceReferenceMetricAlarmGraph(getManager(), workerCreateListener).create();
        new ApplicationReferenceMetricAlarmGraph(getManager(), workerCreateListener).create();

        registerRemoteData();

@@ -110,6 +89,5 @@ public class AnalysisAlarmModuleProvider extends ModuleProvider {
        remoteDataRegisterService.register(InstanceAlarmList.class, new InstanceAlarmList.InstanceCreator());
        remoteDataRegisterService.register(ServiceAlarm.class, new ServiceAlarm.InstanceCreator());
        remoteDataRegisterService.register(ServiceAlarmList.class, new ServiceAlarmList.InstanceCreator());

    }
}
+6 −20
Original line number Diff line number Diff line
@@ -19,14 +19,8 @@
package org.apache.skywalking.apm.collector.analysis.jvm.provider;

import org.apache.skywalking.apm.collector.analysis.jvm.define.AnalysisJVMModule;
import org.apache.skywalking.apm.collector.analysis.jvm.define.service.ICpuMetricService;
import org.apache.skywalking.apm.collector.analysis.jvm.define.service.IGCMetricService;
import org.apache.skywalking.apm.collector.analysis.jvm.define.service.IMemoryMetricService;
import org.apache.skywalking.apm.collector.analysis.jvm.define.service.IMemoryPoolMetricService;
import org.apache.skywalking.apm.collector.analysis.jvm.provider.service.CpuMetricService;
import org.apache.skywalking.apm.collector.analysis.jvm.provider.service.GCMetricService;
import org.apache.skywalking.apm.collector.analysis.jvm.provider.service.MemoryMetricService;
import org.apache.skywalking.apm.collector.analysis.jvm.provider.service.MemoryPoolMetricService;
import org.apache.skywalking.apm.collector.analysis.jvm.define.service.*;
import org.apache.skywalking.apm.collector.analysis.jvm.provider.service.*;
import org.apache.skywalking.apm.collector.analysis.jvm.provider.worker.cpu.CpuMetricPersistenceGraph;
import org.apache.skywalking.apm.collector.analysis.jvm.provider.worker.gc.GCMetricPersistenceGraph;
import org.apache.skywalking.apm.collector.analysis.jvm.provider.worker.memory.MemoryMetricPersistenceGraph;
@@ -34,7 +28,6 @@ import org.apache.skywalking.apm.collector.analysis.jvm.provider.worker.memorypo
import org.apache.skywalking.apm.collector.analysis.worker.model.base.WorkerCreateListener;
import org.apache.skywalking.apm.collector.analysis.worker.timer.PersistenceTimer;
import org.apache.skywalking.apm.collector.core.module.*;
import org.apache.skywalking.apm.collector.core.module.ModuleDefine;
import org.apache.skywalking.apm.collector.remote.RemoteModule;
import org.apache.skywalking.apm.collector.storage.StorageModule;

@@ -86,16 +79,9 @@ public class AnalysisJVMModuleProvider extends ModuleProvider {
    }

    private void graphCreate(WorkerCreateListener workerCreateListener) {
        CpuMetricPersistenceGraph cpuMetricPersistenceGraph = new CpuMetricPersistenceGraph(getManager(), workerCreateListener);
        cpuMetricPersistenceGraph.create();

        GCMetricPersistenceGraph gcMetricPersistenceGraph = new GCMetricPersistenceGraph(getManager(), workerCreateListener);
        gcMetricPersistenceGraph.create();

        MemoryMetricPersistenceGraph memoryMetricPersistenceGraph = new MemoryMetricPersistenceGraph(getManager(), workerCreateListener);
        memoryMetricPersistenceGraph.create();

        MemoryPoolMetricPersistenceGraph memoryPoolMetricPersistenceGraph = new MemoryPoolMetricPersistenceGraph(getManager(), workerCreateListener);
        memoryPoolMetricPersistenceGraph.create();
        new CpuMetricPersistenceGraph(getManager(), workerCreateListener).create();
        new GCMetricPersistenceGraph(getManager(), workerCreateListener).create();
        new MemoryMetricPersistenceGraph(getManager(), workerCreateListener).create();
        new MemoryPoolMetricPersistenceGraph(getManager(), workerCreateListener).create();
    }
}
+1 −0
Original line number Diff line number Diff line
@@ -38,4 +38,5 @@ public class MetricGraphIdDefine {
    public static final int INSTANCE_MAPPING_GRAPH_ID = 411;

    public static final int INSTANCE_HEART_BEAT_PERSISTENCE_GRAPH_ID = 412;
    public static final int SERVICE_HEART_BEAT_PERSISTENCE_GRAPH_ID = 413;
}
+75 −71
Original line number Diff line number Diff line
@@ -52,84 +52,88 @@ public class MetricWorkerIdDefine {
    public static final int APPLICATION_REFERENCE_MONTH_METRIC_PERSISTENCE_WORKER_ID = 4037;
    public static final int APPLICATION_REFERENCE_MONTH_METRIC_TRANSFORM_NODE_ID = 4038;

    public static final int SERVICE_MINUTE_METRIC_AGGREGATION_WORKER_ID = 4400;
    public static final int SERVICE_MINUTE_METRIC_REMOTE_WORKER_ID = 4401;
    public static final int SERVICE_MINUTE_METRIC_PERSISTENCE_WORKER_ID = 4402;
    public static final int SERVICE_HOUR_METRIC_PERSISTENCE_WORKER_ID = 4403;
    public static final int SERVICE_HOUR_METRIC_TRANSFORM_NODE_ID = 4404;
    public static final int SERVICE_DAY_METRIC_PERSISTENCE_WORKER_ID = 4405;
    public static final int SERVICE_DAY_METRIC_TRANSFORM_NODE_ID = 4406;
    public static final int SERVICE_MONTH_METRIC_PERSISTENCE_WORKER_ID = 4407;
    public static final int SERVICE_MONTH_METRIC_TRANSFORM_NODE_ID = 4408;
    public static final int SERVICE_MINUTE_METRIC_AGGREGATION_WORKER_ID = 4040;
    public static final int SERVICE_MINUTE_METRIC_REMOTE_WORKER_ID = 4041;
    public static final int SERVICE_MINUTE_METRIC_PERSISTENCE_WORKER_ID = 4042;
    public static final int SERVICE_HOUR_METRIC_PERSISTENCE_WORKER_ID = 4043;
    public static final int SERVICE_HOUR_METRIC_TRANSFORM_NODE_ID = 4044;
    public static final int SERVICE_DAY_METRIC_PERSISTENCE_WORKER_ID = 4045;
    public static final int SERVICE_DAY_METRIC_TRANSFORM_NODE_ID = 4046;
    public static final int SERVICE_MONTH_METRIC_PERSISTENCE_WORKER_ID = 4047;
    public static final int SERVICE_MONTH_METRIC_TRANSFORM_NODE_ID = 4048;

    public static final int INSTANCE_MINUTE_METRIC_AGGREGATION_WORKER_ID = 4500;
    public static final int INSTANCE_MINUTE_METRIC_REMOTE_WORKER_ID = 4501;
    public static final int INSTANCE_MINUTE_METRIC_PERSISTENCE_WORKER_ID = 4502;
    public static final int INSTANCE_HOUR_METRIC_PERSISTENCE_WORKER_ID = 4503;
    public static final int INSTANCE_HOUR_METRIC_TRANSFORM_NODE_ID = 4504;
    public static final int INSTANCE_DAY_METRIC_PERSISTENCE_WORKER_ID = 4505;
    public static final int INSTANCE_DAY_METRIC_TRANSFORM_NODE_ID = 4506;
    public static final int INSTANCE_MONTH_METRIC_PERSISTENCE_WORKER_ID = 4507;
    public static final int INSTANCE_MONTH_METRIC_TRANSFORM_NODE_ID = 4508;
    public static final int INSTANCE_MINUTE_METRIC_AGGREGATION_WORKER_ID = 4050;
    public static final int INSTANCE_MINUTE_METRIC_REMOTE_WORKER_ID = 4051;
    public static final int INSTANCE_MINUTE_METRIC_PERSISTENCE_WORKER_ID = 4052;
    public static final int INSTANCE_HOUR_METRIC_PERSISTENCE_WORKER_ID = 4053;
    public static final int INSTANCE_HOUR_METRIC_TRANSFORM_NODE_ID = 4054;
    public static final int INSTANCE_DAY_METRIC_PERSISTENCE_WORKER_ID = 4055;
    public static final int INSTANCE_DAY_METRIC_TRANSFORM_NODE_ID = 4056;
    public static final int INSTANCE_MONTH_METRIC_PERSISTENCE_WORKER_ID = 4057;
    public static final int INSTANCE_MONTH_METRIC_TRANSFORM_NODE_ID = 4058;

    public static final int APPLICATION_MINUTE_METRIC_AGGREGATION_WORKER_ID = 4600;
    public static final int APPLICATION_MINUTE_METRIC_REMOTE_WORKER_ID = 4601;
    public static final int APPLICATION_MINUTE_METRIC_PERSISTENCE_WORKER_ID = 4602;
    public static final int APPLICATION_HOUR_METRIC_PERSISTENCE_WORKER_ID = 4603;
    public static final int APPLICATION_HOUR_METRIC_TRANSFORM_NODE_ID = 4604;
    public static final int APPLICATION_DAY_METRIC_PERSISTENCE_WORKER_ID = 4605;
    public static final int APPLICATION_DAY_METRIC_TRANSFORM_NODE_ID = 4606;
    public static final int APPLICATION_MONTH_METRIC_PERSISTENCE_WORKER_ID = 4607;
    public static final int APPLICATION_MONTH_METRIC_TRANSFORM_NODE_ID = 4608;
    public static final int APPLICATION_MINUTE_METRIC_AGGREGATION_WORKER_ID = 4060;
    public static final int APPLICATION_MINUTE_METRIC_REMOTE_WORKER_ID = 4061;
    public static final int APPLICATION_MINUTE_METRIC_PERSISTENCE_WORKER_ID = 4062;
    public static final int APPLICATION_HOUR_METRIC_PERSISTENCE_WORKER_ID = 4063;
    public static final int APPLICATION_HOUR_METRIC_TRANSFORM_NODE_ID = 4064;
    public static final int APPLICATION_DAY_METRIC_PERSISTENCE_WORKER_ID = 4065;
    public static final int APPLICATION_DAY_METRIC_TRANSFORM_NODE_ID = 4066;
    public static final int APPLICATION_MONTH_METRIC_PERSISTENCE_WORKER_ID = 4067;
    public static final int APPLICATION_MONTH_METRIC_TRANSFORM_NODE_ID = 4068;

    public static final int INSTANCE_MAPPING_MINUTE_AGGREGATION_WORKER_ID = 4700;
    public static final int INSTANCE_MAPPING_MINUTE_REMOTE_WORKER_ID = 4701;
    public static final int INSTANCE_MAPPING_MINUTE_PERSISTENCE_WORKER_ID = 4702;
    public static final int INSTANCE_MAPPING_HOUR_PERSISTENCE_WORKER_ID = 4703;
    public static final int INSTANCE_MAPPING_HOUR_TRANSFORM_NODE_ID = 4704;
    public static final int INSTANCE_MAPPING_DAY_PERSISTENCE_WORKER_ID = 4705;
    public static final int INSTANCE_MAPPING_DAY_TRANSFORM_NODE_ID = 4706;
    public static final int INSTANCE_MAPPING_MONTH_PERSISTENCE_WORKER_ID = 4707;
    public static final int INSTANCE_MAPPING_MONTH_TRANSFORM_NODE_ID = 4708;
    public static final int INSTANCE_MAPPING_MINUTE_AGGREGATION_WORKER_ID = 4070;
    public static final int INSTANCE_MAPPING_MINUTE_REMOTE_WORKER_ID = 4071;
    public static final int INSTANCE_MAPPING_MINUTE_PERSISTENCE_WORKER_ID = 4072;
    public static final int INSTANCE_MAPPING_HOUR_PERSISTENCE_WORKER_ID = 4073;
    public static final int INSTANCE_MAPPING_HOUR_TRANSFORM_NODE_ID = 4074;
    public static final int INSTANCE_MAPPING_DAY_PERSISTENCE_WORKER_ID = 4075;
    public static final int INSTANCE_MAPPING_DAY_TRANSFORM_NODE_ID = 4076;
    public static final int INSTANCE_MAPPING_MONTH_PERSISTENCE_WORKER_ID = 4077;
    public static final int INSTANCE_MAPPING_MONTH_TRANSFORM_NODE_ID = 4078;

    public static final int APPLICATION_MAPPING_MINUTE_AGGREGATION_WORKER_ID = 4800;
    public static final int APPLICATION_MAPPING_MINUTE_REMOTE_WORKER_ID = 4801;
    public static final int APPLICATION_MAPPING_MINUTE_PERSISTENCE_WORKER_ID = 4802;
    public static final int APPLICATION_MAPPING_HOUR_PERSISTENCE_WORKER_ID = 4803;
    public static final int APPLICATION_MAPPING_HOUR_TRANSFORM_NODE_ID = 4804;
    public static final int APPLICATION_MAPPING_DAY_PERSISTENCE_WORKER_ID = 4805;
    public static final int APPLICATION_MAPPING_DAY_TRANSFORM_NODE_ID = 4806;
    public static final int APPLICATION_MAPPING_MONTH_PERSISTENCE_WORKER_ID = 4807;
    public static final int APPLICATION_MAPPING_MONTH_TRANSFORM_NODE_ID = 4808;
    public static final int APPLICATION_MAPPING_MINUTE_AGGREGATION_WORKER_ID = 4080;
    public static final int APPLICATION_MAPPING_MINUTE_REMOTE_WORKER_ID = 4081;
    public static final int APPLICATION_MAPPING_MINUTE_PERSISTENCE_WORKER_ID = 4082;
    public static final int APPLICATION_MAPPING_HOUR_PERSISTENCE_WORKER_ID = 4083;
    public static final int APPLICATION_MAPPING_HOUR_TRANSFORM_NODE_ID = 4084;
    public static final int APPLICATION_MAPPING_DAY_PERSISTENCE_WORKER_ID = 4085;
    public static final int APPLICATION_MAPPING_DAY_TRANSFORM_NODE_ID = 4086;
    public static final int APPLICATION_MAPPING_MONTH_PERSISTENCE_WORKER_ID = 4087;
    public static final int APPLICATION_MAPPING_MONTH_TRANSFORM_NODE_ID = 4088;

    public static final int APPLICATION_COMPONENT_MINUTE_AGGREGATION_WORKER_ID = 4900;
    public static final int APPLICATION_COMPONENT_MINUTE_REMOTE_WORKER_ID = 4901;
    public static final int APPLICATION_COMPONENT_MINUTE_PERSISTENCE_WORKER_ID = 4902;
    public static final int APPLICATION_COMPONENT_HOUR_PERSISTENCE_WORKER_ID = 4903;
    public static final int APPLICATION_COMPONENT_HOUR_TRANSFORM_NODE_ID = 4904;
    public static final int APPLICATION_COMPONENT_DAY_PERSISTENCE_WORKER_ID = 4905;
    public static final int APPLICATION_COMPONENT_DAY_TRANSFORM_NODE_ID = 4906;
    public static final int APPLICATION_COMPONENT_MONTH_PERSISTENCE_WORKER_ID = 4907;
    public static final int APPLICATION_COMPONENT_MONTH_TRANSFORM_NODE_ID = 4908;
    public static final int APPLICATION_COMPONENT_MINUTE_AGGREGATION_WORKER_ID = 4090;
    public static final int APPLICATION_COMPONENT_MINUTE_REMOTE_WORKER_ID = 4091;
    public static final int APPLICATION_COMPONENT_MINUTE_PERSISTENCE_WORKER_ID = 4092;
    public static final int APPLICATION_COMPONENT_HOUR_PERSISTENCE_WORKER_ID = 4093;
    public static final int APPLICATION_COMPONENT_HOUR_TRANSFORM_NODE_ID = 4094;
    public static final int APPLICATION_COMPONENT_DAY_PERSISTENCE_WORKER_ID = 4095;
    public static final int APPLICATION_COMPONENT_DAY_TRANSFORM_NODE_ID = 4096;
    public static final int APPLICATION_COMPONENT_MONTH_PERSISTENCE_WORKER_ID = 4097;
    public static final int APPLICATION_COMPONENT_MONTH_TRANSFORM_NODE_ID = 4098;

    public static final int RESPONSE_TIME_DISTRIBUTION_MINUTE_AGGREGATION_WORKER_ID = 4040;
    public static final int RESPONSE_TIME_DISTRIBUTION_MINUTE_REMOTE_WORKER_ID = 4041;
    public static final int RESPONSE_TIME_DISTRIBUTION_MINUTE_PERSISTENCE_WORKER_ID = 4042;
    public static final int RESPONSE_TIME_DISTRIBUTION_HOUR_PERSISTENCE_WORKER_ID = 4043;
    public static final int RESPONSE_TIME_DISTRIBUTION_HOUR_TRANSFORM_NODE_ID = 4044;
    public static final int RESPONSE_TIME_DISTRIBUTION_DAY_PERSISTENCE_WORKER_ID = 4045;
    public static final int RESPONSE_TIME_DISTRIBUTION_DAY_TRANSFORM_NODE_ID = 4046;
    public static final int RESPONSE_TIME_DISTRIBUTION_MONTH_PERSISTENCE_WORKER_ID = 4047;
    public static final int RESPONSE_TIME_DISTRIBUTION_MONTH_TRANSFORM_NODE_ID = 4048;
    public static final int RESPONSE_TIME_DISTRIBUTION_MINUTE_AGGREGATION_WORKER_ID = 4100;
    public static final int RESPONSE_TIME_DISTRIBUTION_MINUTE_REMOTE_WORKER_ID = 4101;
    public static final int RESPONSE_TIME_DISTRIBUTION_MINUTE_PERSISTENCE_WORKER_ID = 4102;
    public static final int RESPONSE_TIME_DISTRIBUTION_HOUR_PERSISTENCE_WORKER_ID = 4103;
    public static final int RESPONSE_TIME_DISTRIBUTION_HOUR_TRANSFORM_NODE_ID = 4104;
    public static final int RESPONSE_TIME_DISTRIBUTION_DAY_PERSISTENCE_WORKER_ID = 4105;
    public static final int RESPONSE_TIME_DISTRIBUTION_DAY_TRANSFORM_NODE_ID = 4106;
    public static final int RESPONSE_TIME_DISTRIBUTION_MONTH_PERSISTENCE_WORKER_ID = 4107;
    public static final int RESPONSE_TIME_DISTRIBUTION_MONTH_TRANSFORM_NODE_ID = 4108;

    public static final int GLOBAL_TRACE_PERSISTENCE_WORKER_ID = 427;
    public static final int SEGMENT_DURATION_PERSISTENCE_WORKER_ID = 428;
    public static final int GLOBAL_TRACE_PERSISTENCE_WORKER_ID = 4110;
    public static final int SEGMENT_DURATION_PERSISTENCE_WORKER_ID = 4120;

    public static final int INSTANCE_REFERENCE_GRAPH_BRIDGE_WORKER_ID = 429;
    public static final int APPLICATION_REFERENCE_GRAPH_BRIDGE_WORKER_ID = 430;
    public static final int SERVICE_METRIC_GRAPH_BRIDGE_WORKER_ID = 431;
    public static final int INSTANCE_METRIC_GRAPH_BRIDGE_WORKER_ID = 432;
    public static final int APPLICATION_METRIC_GRAPH_BRIDGE_WORKER_ID = 433;
    public static final int INSTANCE_REFERENCE_GRAPH_BRIDGE_WORKER_ID = 4130;
    public static final int APPLICATION_REFERENCE_GRAPH_BRIDGE_WORKER_ID = 4140;
    public static final int SERVICE_METRIC_GRAPH_BRIDGE_WORKER_ID = 4150;
    public static final int INSTANCE_METRIC_GRAPH_BRIDGE_WORKER_ID = 4160;
    public static final int APPLICATION_METRIC_GRAPH_BRIDGE_WORKER_ID = 4170;

    public static final int INST_HEART_BEAT_PERSISTENCE_WORKER_ID = 400;
    public static final int INST_HEART_BEAT_PERSISTENCE_WORKER_ID = 4180;

    public static final int SERVICE_NAME_HEART_BEAT_AGGREGATION_WORKER_ID = 4190;
    public static final int SERVICE_NAME_HEART_BEAT_REMOTE_WORKER_ID = 4191;
    public static final int SERVICE_NAME_HEART_BEAT_PERSISTENCE_WORKER_ID = 4192;
}
+30 −65

File changed.

Preview size limit exceeded, changes collapsed.

Loading