mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-19 08:53:55 +08:00
version: dragonpilot v0.9.4 release date: 2023-07-05T18:59:41 dp-dev(priv) master commit: 7b0489feab40283a422d2201ef95a9cb8c06f6cd
11 lines
380 B
C
11 lines
380 B
C
#pragma once
|
|
|
|
#define STATLOG_GAUGE "g"
|
|
#define STATLOG_SAMPLE "sa"
|
|
|
|
void statlog_log(const char* metric_type, const char* metric, int value);
|
|
void statlog_log(const char* metric_type, const char* metric, float value);
|
|
|
|
#define statlog_gauge(metric, value) statlog_log(STATLOG_GAUGE, metric, value)
|
|
#define statlog_sample(metric, value) statlog_log(STATLOG_SAMPLE, metric, value)
|