Remove useless gprc service.

This commit is contained in:
wusheng 2017-06-28 15:30:52 +08:00
parent 1633d1e316
commit b7c09d56f9
1 changed files with 0 additions and 26 deletions

View File

@ -1,26 +0,0 @@
syntax = "proto3";
option java_multiple_files = true;
option java_package = "org.skywalking.apm.network.trace.proto";
import "Downstream.proto";
service AggregatedMetricsService {
rpc collect (AggregatedMetrics) returns (Downstream) {
}
}
message AggregatedMetrics {
repeated Metric metrics = 1;
int32 applicationId = 2;
int32 applicationInstanceId = 3;
}
// In aggregated metric, every operation metric is aggregated in 1 seconds.
message Metric {
int32 operationNameId = 1 ;
int32 timeWindow = 2;
int32 count = 3;
int32 latency = 4; // ms
repeated int32 topN = 5;
}