Skip to content

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
class GroupDataRequest(smpmsg.ReadRequest):
    """Read the statistics group data."""

    _GROUP_ID = smphdr.GroupId.STATISTICS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.StatisticsManagement.GROUP_DATA

    name: str

name: str instance-attribute

GroupDataResponse

Bases: ReadResponse

Statistics group data response.

Source code in smp/statistics_management.py
class GroupDataResponse(smpmsg.ReadResponse):
    """Statistics group data response."""

    _GROUP_ID = smphdr.GroupId.STATISTICS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.StatisticsManagement.GROUP_DATA

    name: str
    fields: Dict[str, int]

name: str instance-attribute

fields: Dict[str, int] instance-attribute

ListOfGroupsRequest

Bases: ReadRequest

List the available statistics groups.

Source code in smp/statistics_management.py
class ListOfGroupsRequest(smpmsg.ReadRequest):
    """List the available statistics groups."""

    _GROUP_ID = smphdr.GroupId.STATISTICS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.StatisticsManagement.LIST_OF_GROUPS

ListOfGroupsResponse

Bases: ReadResponse

List of available statistics groups.

Source code in smp/statistics_management.py
class ListOfGroupsResponse(smpmsg.ReadResponse):
    """List of available statistics groups."""

    _GROUP_ID = smphdr.GroupId.STATISTICS_MANAGEMENT
    _COMMAND_ID = smphdr.CommandId.StatisticsManagement.LIST_OF_GROUPS

    stat_list: Tuple[str, ...]

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
@unique
class STAT_MGMT_ERR(IntEnum):
    """Return codes for the statistics management group."""

    OK = 0
    """No error, this is implied if there is no ret value in the response."""

    UNKNOWN = 1
    """Unknown error occurred."""

    ERR_INVALID_GROUP = 2
    """The provided statistic group name was not found."""

    ERR_INVALID_STAT_NAME = 3
    """The provided statistic name was not found."""

    ERR_INVALID_STAT_SIZE = 4
    """The size of the statistic cannot be handled."""

    ERR_WALK_ABORTED = 5
    """Walk through of statistics was aborted."""

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

Bases: ErrorV1

Error response to a statistics management command.

Source code in smp/statistics_management.py
class StatisticsManagementErrorV1(smperr.ErrorV1):
    """Error response to a statistics management command."""

    _GROUP_ID = smphdr.GroupId.STATISTICS_MANAGEMENT

StatisticsManagementErrorV2

Bases: ErrorV2[STAT_MGMT_ERR]

Error response to a statistics management command.

Source code in smp/statistics_management.py
class StatisticsManagementErrorV2(smperr.ErrorV2[STAT_MGMT_ERR]):
    """Error response to a statistics management command."""

    _GROUP_ID = smphdr.GroupId.STATISTICS_MANAGEMENT