File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -632,6 +632,7 @@ message SubmitJobResultsRequest {
632632 SystemProperties system_properties = 10 ; // System properties
633633 repeated HikariPoolMetrics hikari_pool_metrics = 11 ; // Hikari pool metrics
634634 ConfigDetails config_details = 12 ; // Config details
635+ EventStreamStats event_stream_stats = 13 ; // Event stream statistics
635636 message OperatingSystem {
636637 string name = 1 ; // OS name (e.g., "Linux", "Windows")
637638 string version = 2 ; // OS version
@@ -826,6 +827,14 @@ message SubmitJobResultsRequest {
826827 string certificate_name = 2 ; // Certificate name from the config file
827828 string certificate_description = 3 ; // Certificate description from the config file
828829 }
830+ message EventStreamStats {
831+ string stream_name = 1 ; // Name of the event stream
832+ string status = 2 ; // Status of the event stream (e.g., "running", "stopped")
833+ int32 max_jobs = 3 ; // Maximum number of jobs that can be processed simultaneously
834+ int32 running_jobs = 4 ; // Number of currently running jobs
835+ int64 completed_jobs = 5 ; // Total number of completed jobs
836+ int32 queued_jobs = 6 ; // Number of jobs currently queued
837+ }
829838 }
830839
831840 /**
You can’t perform that action at this time.
0 commit comments