mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-19 06:34:00 +08:00
version: dragonpilot v0.8.16 beta for EON/C2 date: 2022-08-11T09:38:43 dp-dev(priv2) master commit: c6cd233f23f60e7a6055d42850bc593c0e69082e
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)
|