NNG_STAT_TYPE(3) | NNG Reference Manual | NNG_STAT_TYPE(3) |
nng_stat_type - get statistic type
#include <nng/nng.h> typedef struct nng_stat nng_stat; enum { NNG_STAT_SCOPE, NNG_STAT_LEVEL, NNG_STAT_COUNTER, NNG_STAT_STRING, NNG_STAT_BOOLEAN, NNG_STAT_ID }; int nng_stat_type(nng_stat *stat);
The nng_stat_type() function returns the type of the statistic stat.
The returned type will be one of the following values:
NNG_STAT_SCOPE
NNG_STAT_LEVEL
NNG_STAT_COUNTER
NNG_STAT_STRING
NNG_STAT_BOOLEAN
NNG_STAT_ID: The statistic is a numeric ID. These are generally immutable values that represent an identity that might be used with another interface.
For NNG_STAT_COUNTER and
NNG_STAT_LEVEL statistics, the
nng_stat_unit() function will provide more detail
about the units measured by the static.
The statistic type for stat.
None.
libnng(3), nng_stats_get(3), nng_stat_string(3), nng_stat_unit(3), nng_stat_value(3), nng_stat(5), nng(7)
2025-01-05 |