You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2020/03/31 06:58:51 UTC

[skywalking-data-collect-protocol] branch master updated: Fix the profile protocol.

This is an automated email from the ASF dual-hosted git repository.

wusheng 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 4a466a1  Fix the profile protocol.
4a466a1 is described below

commit 4a466a177614405dff952243d369643ad80f40fc
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Tue Mar 31 14:58:16 2020 +0800

    Fix the profile protocol.
---
 profile/Profile.proto | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/profile/Profile.proto b/profile/Profile.proto
index 3da1b41..eb6bd96 100644
--- a/profile/Profile.proto
+++ b/profile/Profile.proto
@@ -42,8 +42,8 @@ service ProfileTask {
 
 message ProfileTaskCommandQuery {
     // current sniffer information
-    int32 serviceId = 1;
-    int32 instanceId = 2;
+    string service = 1;
+    string serviceInstance = 2;
 
     // last command timestamp
     int64 lastCommandTime = 3;
@@ -71,8 +71,8 @@ message ThreadStack {
 // profile task finished report
 message ProfileTaskFinishReport {
     // current sniffer information
-    int32 serviceId = 1;
-    int32 instanceId = 2;
+    string service = 1;
+    string serviceInstance = 2;
 
     // profile task
     string taskId = 3;