Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.53 KB

File metadata and controls

37 lines (28 loc) · 1.53 KB

V0044StatsMsgRpcType

Properties

Name Type Description Notes
type_id int Message type as integer
message_type str Message type as string (Slurm RPC message type)
count int Number of RPCs received
queued int Number of RPCs queued
dropped int Number of RPCs dropped
cycle_last int Number of RPCs processed within the last RPC queue cycle
cycle_max int Maximum number of RPCs processed within a RPC queue cycle since start
total_time int Total time spent processing RPC in seconds
average_time V0044Uint64NoValStruct

Example

from slurmrest_python.models.v0044_stats_msg_rpc_type import V0044StatsMsgRpcType

# TODO update the JSON string below
json = "{}"
# create an instance of V0044StatsMsgRpcType from a JSON string
v0044_stats_msg_rpc_type_instance = V0044StatsMsgRpcType.from_json(json)
# print the JSON string representation of the object
print(V0044StatsMsgRpcType.to_json())

# convert the object into a dict
v0044_stats_msg_rpc_type_dict = v0044_stats_msg_rpc_type_instance.to_dict()
# create an instance of V0044StatsMsgRpcType from a dict
v0044_stats_msg_rpc_type_from_dict = V0044StatsMsgRpcType.from_dict(v0044_stats_msg_rpc_type_dict)

[Back to Model list] [Back to API list] [Back to README]