improve comment and error

This commit is contained in:
houseme
2025-05-16 17:00:56 +08:00
parent 60635aeb65
commit 6659b77f9a
29 changed files with 228 additions and 235 deletions
+9 -9
View File
@@ -1,12 +1,12 @@
/// CPU system-related metric descriptors
use crate::metrics::{new_gauge_md, subsystems, MetricDescriptor, MetricName};
/// CPU 系统相关指标描述符
lazy_static::lazy_static! {
pub static ref SYS_CPU_AVG_IDLE_MD: MetricDescriptor =
new_gauge_md(
MetricName::SysCPUAvgIdle,
"Average CPU idle time",
&[], // 无标签
&[],
subsystems::SYSTEM_CPU
);
@@ -14,7 +14,7 @@ lazy_static::lazy_static! {
new_gauge_md(
MetricName::SysCPUAvgIOWait,
"Average CPU IOWait time",
&[], // 无标签
&[],
subsystems::SYSTEM_CPU
);
@@ -22,7 +22,7 @@ lazy_static::lazy_static! {
new_gauge_md(
MetricName::SysCPULoad,
"CPU load average 1min",
&[], // 无标签
&[],
subsystems::SYSTEM_CPU
);
@@ -30,7 +30,7 @@ lazy_static::lazy_static! {
new_gauge_md(
MetricName::SysCPULoadPerc,
"CPU load average 1min (percentage)",
&[], // 无标签
&[],
subsystems::SYSTEM_CPU
);
@@ -38,7 +38,7 @@ lazy_static::lazy_static! {
new_gauge_md(
MetricName::SysCPUNice,
"CPU nice time",
&[], // 无标签
&[],
subsystems::SYSTEM_CPU
);
@@ -46,7 +46,7 @@ lazy_static::lazy_static! {
new_gauge_md(
MetricName::SysCPUSteal,
"CPU steal time",
&[], // 无标签
&[],
subsystems::SYSTEM_CPU
);
@@ -54,7 +54,7 @@ lazy_static::lazy_static! {
new_gauge_md(
MetricName::SysCPUSystem,
"CPU system time",
&[], // 无标签
&[],
subsystems::SYSTEM_CPU
);
@@ -62,7 +62,7 @@ lazy_static::lazy_static! {
new_gauge_md(
MetricName::SysCPUUser,
"CPU user time",
&[], // 无标签
&[],
subsystems::SYSTEM_CPU
);
}