diff options
author | julianedwards <julian.edwards@mongodb.com> | 2021-08-19 15:02:28 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-08-19 15:37:48 +0000 |
commit | 4febdf30b44ddebf5d238721015e5d59db663086 (patch) | |
tree | beafdd34fc9ed66636946f85a30531457a3ac6ab /buildscripts/resmokelib/core | |
parent | cb908c8437e2a8b189d37f44a48061364397829d (diff) | |
download | mongo-4febdf30b44ddebf5d238721015e5d59db663086.tar.gz |
SERVER-54315: Enable jasper resmoke for a single daily build
Diffstat (limited to 'buildscripts/resmokelib/core')
-rw-r--r-- | buildscripts/resmokelib/core/jasper.proto | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/buildscripts/resmokelib/core/jasper.proto b/buildscripts/resmokelib/core/jasper.proto index 85a064755fb..179101cdd6f 100644 --- a/buildscripts/resmokelib/core/jasper.proto +++ b/buildscripts/resmokelib/core/jasper.proto @@ -12,11 +12,10 @@ message LoggerConfig { DefaultLoggerOptions default = 1; FileLoggerOptions file = 2; InheritedLoggerOptions inherited = 3; - SumoLogicLoggerOptions sumo = 4; - InMemoryLoggerOptions in_memory = 5; - SplunkLoggerOptions splunk = 6; - BuildloggerV2Options buildloggerv2 = 7; - BuildloggerV3Options buildloggerv3 = 8; + InMemoryLoggerOptions in_memory = 4; + SplunkLoggerOptions splunk = 5; + BuildloggerV2Options buildloggerv2 = 6; + BuildloggerV3Options buildloggerv3 = 7; RawLoggerConfig raw = 9; } } @@ -60,11 +59,6 @@ message InheritedLoggerOptions { BaseOptions base = 1; } -message SumoLogicLoggerOptions { - string sumo_endpoint = 1; - BaseOptions base = 2; -} - message InMemoryLoggerOptions { int64 in_memory_cap = 1; BaseOptions base = 2; @@ -403,10 +397,9 @@ message LoggingCacheInstance { google.protobuf.Timestamp accessed = 4; } -message LoggingCacheSize { +message LoggingCacheLenResponse { OperationOutcome outcome = 1 ; - string id = 2; - int64 size = 3; + int64 len = 2; } enum LoggingPayloadFormat { @@ -467,7 +460,7 @@ service JasperProcessManager { rpc LoggingCacheRemove(LoggingCacheArgs) returns (OperationOutcome); rpc LoggingCacheCloseAndRemove(LoggingCacheArgs) returns (OperationOutcome); rpc LoggingCacheClear(google.protobuf.Empty) returns (OperationOutcome); - rpc LoggingCacheLen(google.protobuf.Empty) returns (LoggingCacheSize); + rpc LoggingCacheLen(google.protobuf.Empty) returns (LoggingCacheLenResponse); rpc LoggingCachePrune(google.protobuf.Timestamp) returns (OperationOutcome); // Remote specific functions |