Zephyr Project API 4.4.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches
stat_mgmt.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018-2021 mcumgr authors
3 * Copyright (c) 2023 Nordic Semiconductor ASA
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
13
14#ifndef H_STAT_MGMT_
15#define H_STAT_MGMT_
16
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
32#define STAT_MGMT_ID_SHOW 0
33#define STAT_MGMT_ID_LIST 1
35
58
64 const char *name;
65
68};
69
70#ifdef __cplusplus
71}
72#endif
73
77
78#endif /* H_STAT_MGMT_ */
stat_mgmt_err_code_t
Command result codes for statistics management group.
Definition stat_mgmt.h:39
@ STAT_MGMT_ERR_INVALID_GROUP
The provided statistic group name was not found.
Definition stat_mgmt.h:47
@ STAT_MGMT_ERR_INVALID_STAT_NAME
The provided statistic name was not found.
Definition stat_mgmt.h:50
@ STAT_MGMT_ERR_WALK_ABORTED
Walk through of statistics was aborted.
Definition stat_mgmt.h:56
@ STAT_MGMT_ERR_OK
No error, this is implied if there is no ret value in the response.
Definition stat_mgmt.h:41
@ STAT_MGMT_ERR_UNKNOWN
Unknown error occurred.
Definition stat_mgmt.h:44
@ STAT_MGMT_ERR_INVALID_STAT_SIZE
The size of the statistic cannot be handled.
Definition stat_mgmt.h:53
__UINT64_TYPE__ uint64_t
Definition stdint.h:91
Represents a single value in a statistics group.
Definition stat_mgmt.h:62
const char * name
Name of the statistic.
Definition stat_mgmt.h:64
uint64_t value
Value of the statistic.
Definition stat_mgmt.h:67