This is an automated email from the ASF dual-hosted git repository.
kezhenxu94 pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/skywalking-data-collect-protocol.git
The following commit(s) were added to refs/heads/master by this push:
new eebd016 Change return type to v2
eebd016 is described below
commit eebd016e32b0808416923acf04dcd31d9eb86c09
Author: kezhenxu94 <[email protected]>
AuthorDate: Fri Jan 17 18:33:52 2020 +0800
Change return type to v2
---
profile/Profile.proto | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/profile/Profile.proto b/profile/Profile.proto
index 59f33d3..621f58e 100644
--- a/profile/Profile.proto
+++ b/profile/Profile.proto
@@ -24,7 +24,6 @@ option csharp_namespace = "SkyWalking.NetworkProtocol";
import "common/common.proto";
import "common/trace-common.proto";
-import "language-agent/Downstream.proto";
service ProfileTask {
@@ -33,11 +32,11 @@ service ProfileTask {
}
// collect dumped thread snapshot
- rpc collectSnapshot (stream ThreadSnapshot) returns (Downstream) {
+ rpc collectSnapshot (stream ThreadSnapshot) returns (Commands) {
}
// report profiling task finished
- rpc reportTaskFinish (ProfileTaskFinishReport) returns (Downstream) {
+ rpc reportTaskFinish (ProfileTaskFinishReport) returns (Commands) {
}
}
@@ -47,7 +46,7 @@ message ProfileTaskCommandQuery {
int32 serviceId = 1;
int32 instanceId = 2;
- // last commmand timestamp
+ // last command timestamp
int64 lastCommandTime = 3;
}