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

V0043StatsMsgRpcType

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 V0043Uint64NoValStruct

Example

from slurmrest_python.models.v0043_stats_msg_rpc_type import V0043StatsMsgRpcType

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

# convert the object into a dict
v0043_stats_msg_rpc_type_dict = v0043_stats_msg_rpc_type_instance.to_dict()
# create an instance of V0043StatsMsgRpcType from a dict
v0043_stats_msg_rpc_type_from_dict = V0043StatsMsgRpcType.from_dict(v0043_stats_msg_rpc_type_dict)

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