Added instanceId for services.
This commit is contained in:
parent
fb5585e5c4
commit
9da7968a4d
|
|
@ -12,6 +12,8 @@ service AggregatedMetricsService {
|
|||
|
||||
message AggregatedMetrics {
|
||||
repeated Metric metrics = 1;
|
||||
int32 applicationId = 2;
|
||||
int32 applicationInstanceId = 3;
|
||||
}
|
||||
|
||||
// In aggregated metric, every operation metric is aggregated in 1 seconds.
|
||||
|
|
|
|||
|
|
@ -14,7 +14,8 @@ message ApplicationMetaInfo {
|
|||
}
|
||||
|
||||
message ApplicationRegiseredInfo {
|
||||
int32 applicationId = 2;
|
||||
int32 applicationId = 1;
|
||||
int32 applicationInstanceId = 2;
|
||||
}
|
||||
|
||||
//register service for ServiceName, Network address
|
||||
|
|
|
|||
|
|
@ -15,7 +15,8 @@ message TraceSegmentObject {
|
|||
repeated TraceSegmentReference refs = 2;
|
||||
repeated SpanObject spans = 3;
|
||||
int32 applicationId = 4;
|
||||
repeated string globalTraceIds = 5;
|
||||
int32 applicationInstanceId = 5;
|
||||
repeated string globalTraceIds = 6;
|
||||
}
|
||||
|
||||
message TraceSegmentReference {
|
||||
|
|
|
|||
Loading…
Reference in New Issue