From 0a0f2112852b471318aec4a331e1411dad2ffef3 Mon Sep 17 00:00:00 2001 From: Googler Date: Mon, 23 Apr 2018 09:39:10 -0700 Subject: This change adds timestamps (call start and end time) to the remote grpc log. PiperOrigin-RevId: 193937177 --- src/main/protobuf/remote_execution_log.proto | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/main/protobuf/remote_execution_log.proto') diff --git a/src/main/protobuf/remote_execution_log.proto b/src/main/protobuf/remote_execution_log.proto index 1e4fa9f404..32d76946e8 100644 --- a/src/main/protobuf/remote_execution_log.proto +++ b/src/main/protobuf/remote_execution_log.proto @@ -16,6 +16,7 @@ syntax = "proto3"; package remote_logging; +import "google/protobuf/timestamp.proto"; import "google/bytestream/bytestream.proto"; import "google/devtools/remoteexecution/v1test/remote_execution.proto"; import "google/longrunning/operations.proto"; @@ -39,6 +40,12 @@ message LogEntry { // Method specific details for this call. RpcCallDetails details = 4; + + // Time the call started. + google.protobuf.Timestamp start_time = 5; + + // Time the call closed. + google.protobuf.Timestamp end_time = 6; } // Details for a call to -- cgit v1.2.3