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

wusheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-goapi.git


The following commit(s) were added to refs/heads/main by this push:
     new 0661327  Sync query protocol (#28)
0661327 is described below

commit 0661327d31e3510be357f99bd325ee73eba97e50
Author: mrproliu <[email protected]>
AuthorDate: Tue Mar 22 11:33:50 2022 +0800

    Sync query protocol (#28)
---
 dependencies.sh |  2 +-
 query/schema.go | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dependencies.sh b/dependencies.sh
index 3077a24..25e7544 100644
--- a/dependencies.sh
+++ b/dependencies.sh
@@ -18,7 +18,7 @@
 # under the License.
 
 export COLLECT_PROTOCOL_SHA=b7548df896330bd4cd0ae42d95df9b9cc511f139
-export QUERY_PROTOCOL_SHA=7ef57642d94c7a3bcf1c12d78dd32addd524cd33
+export QUERY_PROTOCOL_SHA=673439780259838a55a5c1490029eda84556eeee
 export ENVOY_SERVICE_PROTOCOL_SHA=533b32f1b390a3a88ec2008d0561e07c926d879a
 export XDS_SERVICE_PROTOCOL_SHA=25de7278fc844d392d607214f36dbedf50f167ee
 export PROTOC_VALIDATE_SHA=v0.6.1
diff --git a/query/schema.go b/query/schema.go
index e4c07bc..b7951aa 100644
--- a/query/schema.go
+++ b/query/schema.go
@@ -131,11 +131,11 @@ type EBPFProfilingProcessFinder struct {
 }
 
 type EBPFProfilingSchedule struct {
-       ScheduleID string `json:"scheduleId"`
-       TaskID     string `json:"taskId"`
-       ProcessID  string `json:"processId"`
-       StartTime  int64  `json:"startTime"`
-       EndTime    int64  `json:"endTime"`
+       ScheduleID string   `json:"scheduleId"`
+       TaskID     string   `json:"taskId"`
+       Process    *Process `json:"process"`
+       StartTime  int64    `json:"startTime"`
+       EndTime    int64    `json:"endTime"`
 }
 
 type EBPFProfilingStackElement struct {

Reply via email to