struct xpum_metrics_raw_data_t
Overview
Struct to store raw statistics data, not aggregated yet. More…
#include <xpum_structs.h> struct xpum_metrics_raw_data_t { // fields xpum_device_id_t deviceId; bool isTileData; int32_t tileId; uint64_t timestamp; xpum_stats_type_t metricsType; uint64_t value; };
Detailed Documentation
Struct to store raw statistics data, not aggregated yet.
Fields
xpum_device_id_t deviceId
Device id.
bool isTileData
If this statistics data is tile level.
int32_t tileId
The tile id, only valid if isTileData is true.
uint64_t timestamp
The timestamp this value is telemetried.
xpum_stats_type_t metricsType
Metric type.
uint64_t value
The instant value of the metricsType at the timestamp.