@@ -45,7 +45,7 @@ func NewSystemCollector(beatInfo *BeatInfo, stats *Stats) prometheus.Collector {
45
45
{
46
46
desc : prometheus .NewDesc (
47
47
prometheus .BuildFQName (beatInfo .Beat , "system" , "load" ),
48
- "system load 1m " ,
48
+ "system load" ,
49
49
nil , prometheus.Labels {"period" : "1" },
50
50
),
51
51
eval : func (stats * Stats ) float64 { return stats .System .Load .M1 },
@@ -54,7 +54,7 @@ func NewSystemCollector(beatInfo *BeatInfo, stats *Stats) prometheus.Collector {
54
54
{
55
55
desc : prometheus .NewDesc (
56
56
prometheus .BuildFQName (beatInfo .Beat , "system" , "load" ),
57
- "system load 5m " ,
57
+ "system load" ,
58
58
nil , prometheus.Labels {"period" : "5" },
59
59
),
60
60
eval : func (stats * Stats ) float64 { return stats .System .Load .M5 },
@@ -63,7 +63,7 @@ func NewSystemCollector(beatInfo *BeatInfo, stats *Stats) prometheus.Collector {
63
63
{
64
64
desc : prometheus .NewDesc (
65
65
prometheus .BuildFQName (beatInfo .Beat , "system" , "load" ),
66
- "system load 15m " ,
66
+ "system load" ,
67
67
nil , prometheus.Labels {"period" : "15" },
68
68
),
69
69
eval : func (stats * Stats ) float64 { return stats .System .Load .M15 },
@@ -72,7 +72,7 @@ func NewSystemCollector(beatInfo *BeatInfo, stats *Stats) prometheus.Collector {
72
72
{
73
73
desc : prometheus .NewDesc (
74
74
prometheus .BuildFQName (beatInfo .Beat , "system_load" , "norm" ),
75
- "system load 1m " ,
75
+ "system load" ,
76
76
nil , prometheus.Labels {"period" : "1" },
77
77
),
78
78
eval : func (stats * Stats ) float64 { return stats .System .Load .Norm .M1 },
@@ -81,7 +81,7 @@ func NewSystemCollector(beatInfo *BeatInfo, stats *Stats) prometheus.Collector {
81
81
{
82
82
desc : prometheus .NewDesc (
83
83
prometheus .BuildFQName (beatInfo .Beat , "system_load" , "norm" ),
84
- "system load 5m " ,
84
+ "system load" ,
85
85
nil , prometheus.Labels {"period" : "5" },
86
86
),
87
87
eval : func (stats * Stats ) float64 { return stats .System .Load .Norm .M5 },
@@ -90,7 +90,7 @@ func NewSystemCollector(beatInfo *BeatInfo, stats *Stats) prometheus.Collector {
90
90
{
91
91
desc : prometheus .NewDesc (
92
92
prometheus .BuildFQName (beatInfo .Beat , "system_load" , "norm" ),
93
- "system load 15m " ,
93
+ "system load" ,
94
94
nil , prometheus.Labels {"period" : "15" },
95
95
),
96
96
eval : func (stats * Stats ) float64 { return stats .System .Load .Norm .M15 },
0 commit comments