From 8ef271c90a7a87bbd6a6f5f0d376ea1817fe5d73 Mon Sep 17 00:00:00 2001 From: zhang-wei Date: Sun, 16 Feb 2020 14:18:34 +0800 Subject: [PATCH] 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 { -- GitLab