We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3913c70 commit a832c44Copy full SHA for a832c44
protos/config.proto
@@ -84,6 +84,22 @@ message GetClusterInfoRequest {
84
message GetClusterInfoResponse {
85
string cluster_name = 1;
86
repeated PartitionInfo partitions = 2;
87
+ // 3-17 Newly added parameters may not be returned
88
+ uint32 node_count = 3;
89
+ uint32 running_node_count = 4;
90
+ uint32 idle_node_count = 5;
91
+ uint32 not_available_node_count = 6;
92
+ uint32 cpu_core_count =7;
93
+ uint32 running_cpu_count = 8;
94
+ uint32 idle_cpu_count = 9;
95
+ uint32 not_available_cpu_count = 10;
96
+ uint32 gpu_core_count = 11;
97
+ uint32 running_gpu_count = 12;
98
+ uint32 idle_gpu_count = 13;
99
+ uint32 not_available_gpu_count = 14;
100
+ uint32 job_count = 15;
101
+ uint32 running_job_count = 16;
102
+ uint32 pending_job_count = 17;
103
}
104
105
message NodeInfo {
0 commit comments