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/01/13 06:08:52 UTC

[skywalking-data-collect-protocol] branch master updated: add uniqueId (#14)

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 159c900  add uniqueId (#14)
159c900 is described below

commit 159c900984cf0276add4e84c3e407607f8239dbe
Author: zhang-wei <pk...@outlook.com>
AuthorDate: Mon Jan 13 14:08:47 2020 +0800

    add uniqueId (#14)
---
 browser/BrowserPerf.proto | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/browser/BrowserPerf.proto b/browser/BrowserPerf.proto
index ff57297..b2729f2 100644
--- a/browser/BrowserPerf.proto
+++ b/browser/BrowserPerf.proto
@@ -30,17 +30,19 @@ service BrowserPerfService {
 }
 
 message BrowserPerfData {
-    int32 serviceId = 1;
+    // UUID
+    string uniqueId = 1;
+    int32 serviceId = 2;
     // Service version in browser is the Instance concept in the backend.
-    int32 serviceVersionId = 2;
+    int32 serviceVersionId = 3;
     // Data time
-    int64 time = 3;
+    int64 time = 4;
     // Page path in browser is the endpoint concept in the backend
     // Page path in the browser, mostly it is URI, without parameter
-    string pagePath = 4;
-    int32 pagePathId = 5;
-    repeated BrowserErrorLog logs = 6;
-    PerfDetail perfDetail = 7;
+    string pagePath = 5;
+    int32 pagePathId = 6;
+    repeated BrowserErrorLog logs = 7;
+    PerfDetail perfDetail = 8;
 }
 
 message BrowserErrorLog {