| 82 | |
| 83 | private: |
| 84 | static std::string statsHelp() |
| 85 | { |
| 86 | return HELP( |
| 87 | TLDR( |
| 88 | "Shows local system metrics."), |
| 89 | DESCRIPTION( |
| 90 | "> cpus_total Total number of available CPUs", |
| 91 | "> load_1min Average system load for last" |
| 92 | " minute in uptime(1) style", |
| 93 | "> load_5min Average system load for last" |
| 94 | " 5 minutes in uptime(1) style", |
| 95 | "> load_15min Average system load for last" |
| 96 | " 15 minutes in uptime(1) style", |
| 97 | "> memory_total_bytes Total system memory in bytes", |
| 98 | "> memory_free_bytes Free system memory in bytes")); |
| 99 | } |
| 100 | |
| 101 | // Gauge handlers. |
| 102 | Future<double> _load_1min() |
nothing calls this directly
no test coverage detected