mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-20 05:28:01 +00:00
23 lines
760 B
C++
23 lines
760 B
C++
#ifndef _TCP_PROXY_METRICS_H_
|
|
#define _TCP_PROXY_METRICS_H_
|
|
|
|
#include "../node/Metrics.hpp"
|
|
|
|
namespace ZeroTier {
|
|
namespace Metrics {
|
|
// extern prometheus::simpleapi::gauge_metric_t tcp_connections;
|
|
|
|
// extern prometheus::simpleapi::counter_metric_t udp_open_failed;
|
|
|
|
// extern prometheus::simpleapi::counter_metric_t tcp_opened;
|
|
// extern prometheus::simpleapi::counter_metric_t tcp_closed;
|
|
|
|
// extern prometheus::simpleapi::counter_metric_t tcp_bytes_in;
|
|
// extern prometheus::simpleapi::counter_metric_t tcp_bytes_out;
|
|
|
|
// extern prometheus::simpleapi::counter_metric_t udp_bytes_in;
|
|
// extern prometheus::simpleapi::counter_metric_t udp_bytes_out;
|
|
}
|
|
}
|
|
|
|
#endif // _TCP_PROXY_METRICS_H_
|