mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-27 15:37:02 +00:00
improve comment and error
This commit is contained in:
@@ -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
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user