From 160e3187dc93265ed635ad68e12c483c8ab4f7be Mon Sep 17 00:00:00 2001 From: Google APIs Date: Tue, 14 Apr 2020 19:10:51 -0700 Subject: [PATCH] Increase the required minimum difference between start time of the next interval and the end time of the previous one from the one microsecond to one millisecond. This will enable some resource savings for in-memory storage. PiperOrigin-RevId: 306560315 --- google/monitoring/v3/common.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google/monitoring/v3/common.proto b/google/monitoring/v3/common.proto index 638ef4a6..f1b38c23 100644 --- a/google/monitoring/v3/common.proto +++ b/google/monitoring/v3/common.proto @@ -64,7 +64,7 @@ message TypedValue { // than the end time. // // * In all cases, the start time of the next interval must be -// at least a microsecond after the end time of the previous interval. +// at least a millisecond after the end time of the previous interval. // Because the interval is closed, if the start time of a new interval // is the same as the end time of the previous interval, data written // at the new start time could overwrite data written at the previous