16672: Adds 'container' type event to the logs viewer.
authorLucas Di Pentima <lucas.dipentima@curii.com>
Mon, 21 Mar 2022 14:11:56 +0000 (11:11 -0300)
committerLucas Di Pentima <lucas.dipentima@curii.com>
Fri, 25 Mar 2022 20:59:23 +0000 (17:59 -0300)
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas.dipentima@curii.com>

src/models/log.ts
src/store/process-logs-panel/process-logs-panel-actions.ts

index 3397993bae4c74f2b3e7d89c825618e27fa38a22..20060f88b640f4b2f1d720b0babcee290e65a5af 100644 (file)
@@ -16,6 +16,7 @@ export enum LogEventType {
     ARV_MOUNT = 'arv-mount',
     STDOUT = 'stdout',
     STDERR = 'stderr',
+    CONTAINER = 'container',
 }
 
 export interface LogResource extends Resource, ResourceWithProperties {
index a14437aa81fe3db488a6575cdcab3c418fd1c1d5..b0ddd7ee11f70dea0c122bb5afb2b4681976ee28 100644 (file)
@@ -122,4 +122,5 @@ const PROCESS_PANEL_LOG_EVENT_TYPES = [
     LogEventType.NODE_INFO,
     LogEventType.STDERR,
     LogEventType.STDOUT,
+    LogEventType.CONTAINER,
 ];