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/08 14:33:45 UTC

[skywalking-data-collect-protocol] branch master updated: Add field for browser perf service (#11)

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 7ccf1cf  Add field for browser perf service (#11)
7ccf1cf is described below

commit 7ccf1cf6eb8001f61a76e2c8d200629a4807fc53
Author: zhang-wei <pk...@outlook.com>
AuthorDate: Wed Jan 8 22:33:36 2020 +0800

    Add field for browser perf service (#11)
    
    * pagePageId & time field
    
    * del comments
---
 browser/BrowserPerf.proto | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/browser/BrowserPerf.proto b/browser/BrowserPerf.proto
index 7b94693..ff57297 100644
--- a/browser/BrowserPerf.proto
+++ b/browser/BrowserPerf.proto
@@ -33,10 +33,14 @@ message BrowserPerfData {
     int32 serviceId = 1;
     // Service version in browser is the Instance concept in the backend.
     int32 serviceVersionId = 2;
+    // Data time
+    int64 time = 3;
+    // Page path in browser is the endpoint concept in the backend
     // Page path in the browser, mostly it is URI, without parameter
-    string pagePath = 3;
-    repeated BrowserErrorLog logs = 4;
-    PerfDetail perfDetail = 5;
+    string pagePath = 4;
+    int32 pagePathId = 5;
+    repeated BrowserErrorLog logs = 6;
+    PerfDetail perfDetail = 7;
 }
 
 message BrowserErrorLog {
@@ -47,6 +51,8 @@ message BrowserErrorLog {
     int32 col = 5;
     string stack = 6;
     string errorUrl = 7;
+    // Error log time
+    int64 time = 8;
 }
 
 message PerfDetail {