forked from JointCloud/pcm-coordinator
49 lines
1.1 KiB
Protocol Buffer
49 lines
1.1 KiB
Protocol Buffer
syntax = "proto3";
|
|
package slurm;
|
|
|
|
option go_package = "/slurmpb";
|
|
import "idl/static.proto";
|
|
|
|
message DiagReq{
|
|
SlurmVersion slurmVersion = 1;
|
|
}
|
|
|
|
message DiagResp{
|
|
StatsInfoResponseMsg statsInfoResponseMsg = 1;
|
|
}
|
|
|
|
message StatsInfoResponseMsg {
|
|
uint32 parts_packed =1;
|
|
int64 req_time=2;
|
|
int64 req_time_start=3;
|
|
uint32 server_thread_count=4;
|
|
uint32 agent_queue_size=5;
|
|
|
|
uint32 schedule_cycle_max=6;
|
|
uint32 schedule_cycle_last=7;
|
|
uint32 schedule_cycle_sum=8;
|
|
uint32 schedule_cycle_counter=9;
|
|
uint32 schedule_cycle_depth=10;
|
|
uint32 schedule_queue_len=11;
|
|
|
|
uint32 jobs_submitted=12;
|
|
uint32 jobs_started=13;
|
|
uint32 jobs_completed=14;
|
|
uint32 jobs_canceled=15;
|
|
uint32 jobs_failed=16;
|
|
|
|
uint32 bf_backfilled_jobs=17;
|
|
uint32 bf_last_backfilled_jobs=18;
|
|
uint32 bf_cycle_counter=19;
|
|
uint32 bf_cycle_sum=20;
|
|
uint32 bf_cycle_last=21;
|
|
uint32 bf_cycle_max=22;
|
|
uint32 bf_last_depth=23;
|
|
uint32 bf_last_depth_try=24;
|
|
uint32 bf_depth_sum=25;
|
|
uint32 bf_depth_try_sum=26;
|
|
uint32 bf_queue_len=27;
|
|
uint32 bf_queue_len_sum=28;
|
|
int64 bf_when_last_cycle=29;
|
|
uint32 bf_active=30;
|
|
} |