You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2021/02/05 06:46:12 UTC

[skywalking-query-protocol] 01/01: Update event.graphqls

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch kezhenxu94-patch-1
in repository https://gitbox.apache.org/repos/asf/skywalking-query-protocol.git

commit 68184db7bc4b6ab347bf234fb3178fddfcd849a0
Author: Zhenxu Ke <ke...@apache.org>
AuthorDate: Fri Feb 5 14:46:03 2021 +0800

    Update event.graphqls
---
 event.graphqls | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/event.graphqls b/event.graphqls
index 3f6def7..5db400b 100644
--- a/event.graphqls
+++ b/event.graphqls
@@ -24,8 +24,10 @@ type Event {
     message: String
     parameters: [KeyValue!]
     # The start time (in milliseconds) of the event, measured between the current time and midnight, January 1, 1970 UTC.
+    # This field may be 0 if the user didn't report it or the `start` event is lost due to network issues.
     startTime: Long!
-    # The end time (in milliseconds) of the event, measured between the current time and midnight, January 1, 1970 UTC. Empty if the event have not finished yet.
+    # The end time (in milliseconds) of the event, measured between the current time and midnight, January 1, 1970 UTC. Empty or 0 if the event have not finished yet.
+    # This field may be 0 if the user didn't report it or the `end` event is lost due to network issues.
     endTime: Long
 }