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/02/16 06:18:41 UTC

[skywalking-data-collect-protocol] branch master updated: Move firstReportedError field to BrowserErrorLog (#20)

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 8ef271c  Move firstReportedError field to BrowserErrorLog (#20)
8ef271c is described below

commit 8ef271c90a7a87bbd6a6f5f0d376ea1817fe5d73
Author: zhang-wei <pk...@outlook.com>
AuthorDate: Sun Feb 16 14:18:34 2020 +0800

    Move firstReportedError field to BrowserErrorLog (#20)
---
 browser/BrowserPerf.proto | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/browser/BrowserPerf.proto b/browser/BrowserPerf.proto
index a29e293..c75e11d 100644
--- a/browser/BrowserPerf.proto
+++ b/browser/BrowserPerf.proto
@@ -45,17 +45,15 @@ message BrowserPerfData {
     // Page path in the browser, mostly it is URI, without parameter
     string pagePath = 4;
     int32 pagePathId = 5;
-    // Then the PV with error is only calculated when firstReportedError is true.
-    bool firstReportedError = 6;
     // Unit of all time related field should be `ms`.
-    int32 redirectTime = 7;
-    int32 dnsTime = 8;
-    int32 reqTime = 9;
+    int32 redirectTime = 6;
+    int32 dnsTime = 7;
+    int32 reqTime = 8;
     // analysis dom tree time
-    int32 domAnalysisTime = 10;
-    int32 domReadyTime = 11;
+    int32 domAnalysisTime = 9;
+    int32 domReadyTime = 10;
     // page blank time
-    int32 blankTime = 12;
+    int32 blankTime = 11;
 }
 
 message BrowserErrorLog {
@@ -77,6 +75,8 @@ message BrowserErrorLog {
     int32 col = 11;
     string stack = 12;
     string errorUrl = 13;
+    // Then the PV with error is only calculated when firstReportedError is true.
+    bool firstReportedError = 14;
 }
 
 enum ErrorCategory {