Statistics Management¶
The Simple Management Protocol (SMP) Statistics Management group.
GroupDataRequest
¶
Bases: ReadRequest
Read the statistics group data.
Source code in smp/statistics_management.py
name: str
instance-attribute
¶
GroupDataResponse
¶
ListOfGroupsRequest
¶
Bases: ReadRequest
List the available statistics groups.
Source code in smp/statistics_management.py
ListOfGroupsResponse
¶
Bases: ReadResponse
List of available statistics groups.
Source code in smp/statistics_management.py
stat_list: Tuple[str, ...]
instance-attribute
¶
STAT_MGMT_ERR
¶
Bases: IntEnum
Return codes for the statistics management group.
Source code in smp/statistics_management.py
OK = 0
class-attribute
instance-attribute
¶
No error, this is implied if there is no ret value in the response.
UNKNOWN = 1
class-attribute
instance-attribute
¶
Unknown error occurred.
ERR_INVALID_GROUP = 2
class-attribute
instance-attribute
¶
The provided statistic group name was not found.
ERR_INVALID_STAT_NAME = 3
class-attribute
instance-attribute
¶
The provided statistic name was not found.
ERR_INVALID_STAT_SIZE = 4
class-attribute
instance-attribute
¶
The size of the statistic cannot be handled.
ERR_WALK_ABORTED = 5
class-attribute
instance-attribute
¶
Walk through of statistics was aborted.
StatisticsManagementErrorV1
¶
StatisticsManagementErrorV2
¶
Bases: ErrorV2[STAT_MGMT_ERR]
Error response to a statistics management command.