mirror of
https://github.com/prometheus/node_exporter.git
synced 2024-11-23 20:36:21 +01:00
collect flag_info and bug_info only for one core (#2156)
Signed-off-by: binjip978 <binjip978@gmail.com>
This commit is contained in:
parent
2b490d645e
commit
5de46c6bac
@ -77,12 +77,12 @@ func NewCPUCollector(logger log.Logger) (Collector, error) {
|
|||||||
),
|
),
|
||||||
cpuFlagsInfo: prometheus.NewDesc(
|
cpuFlagsInfo: prometheus.NewDesc(
|
||||||
prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "flag_info"),
|
prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "flag_info"),
|
||||||
"The `flags` field of CPU information from /proc/cpuinfo.",
|
"The `flags` field of CPU information from /proc/cpuinfo taken from the first core.",
|
||||||
[]string{"flag"}, nil,
|
[]string{"flag"}, nil,
|
||||||
),
|
),
|
||||||
cpuBugsInfo: prometheus.NewDesc(
|
cpuBugsInfo: prometheus.NewDesc(
|
||||||
prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "bug_info"),
|
prometheus.BuildFQName(namespace, cpuCollectorSubsystem, "bug_info"),
|
||||||
"The `bugs` field of CPU information from /proc/cpuinfo.",
|
"The `bugs` field of CPU information from /proc/cpuinfo taken from the first core.",
|
||||||
[]string{"bug"}, nil,
|
[]string{"bug"}, nil,
|
||||||
),
|
),
|
||||||
cpuGuest: prometheus.NewDesc(
|
cpuGuest: prometheus.NewDesc(
|
||||||
@ -167,7 +167,10 @@ func (c *cpuCollector) updateInfo(ch chan<- prometheus.Metric) error {
|
|||||||
cpu.Microcode,
|
cpu.Microcode,
|
||||||
cpu.Stepping,
|
cpu.Stepping,
|
||||||
cpu.CacheSize)
|
cpu.CacheSize)
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(info) != 0 {
|
||||||
|
cpu := info[0]
|
||||||
if err := updateFieldInfo(cpu.Flags, c.cpuFlagsIncludeRegexp, c.cpuFlagsInfo, ch); err != nil {
|
if err := updateFieldInfo(cpu.Flags, c.cpuFlagsIncludeRegexp, c.cpuFlagsInfo, ch); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@ -175,6 +178,7 @@ func (c *cpuCollector) updateInfo(ch chan<- prometheus.Metric) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -247,7 +247,7 @@ node_cooling_device_cur_state{name="0",type="Processor"} 0
|
|||||||
# HELP node_cooling_device_max_state Maximum throttle state of the cooling device
|
# HELP node_cooling_device_max_state Maximum throttle state of the cooling device
|
||||||
# TYPE node_cooling_device_max_state gauge
|
# TYPE node_cooling_device_max_state gauge
|
||||||
node_cooling_device_max_state{name="0",type="Processor"} 3
|
node_cooling_device_max_state{name="0",type="Processor"} 3
|
||||||
# HELP node_cpu_bug_info The `bugs` field of CPU information from /proc/cpuinfo.
|
# HELP node_cpu_bug_info The `bugs` field of CPU information from /proc/cpuinfo taken from the first core.
|
||||||
# TYPE node_cpu_bug_info gauge
|
# TYPE node_cpu_bug_info gauge
|
||||||
node_cpu_bug_info{bug="cpu_meltdown"} 1
|
node_cpu_bug_info{bug="cpu_meltdown"} 1
|
||||||
node_cpu_bug_info{bug="mds"} 1
|
node_cpu_bug_info{bug="mds"} 1
|
||||||
@ -259,7 +259,7 @@ node_cpu_core_throttles_total{core="0",package="0"} 5
|
|||||||
node_cpu_core_throttles_total{core="0",package="1"} 0
|
node_cpu_core_throttles_total{core="0",package="1"} 0
|
||||||
node_cpu_core_throttles_total{core="1",package="0"} 0
|
node_cpu_core_throttles_total{core="1",package="0"} 0
|
||||||
node_cpu_core_throttles_total{core="1",package="1"} 9
|
node_cpu_core_throttles_total{core="1",package="1"} 9
|
||||||
# HELP node_cpu_flag_info The `flags` field of CPU information from /proc/cpuinfo.
|
# HELP node_cpu_flag_info The `flags` field of CPU information from /proc/cpuinfo taken from the first core.
|
||||||
# TYPE node_cpu_flag_info gauge
|
# TYPE node_cpu_flag_info gauge
|
||||||
node_cpu_flag_info{flag="aes"} 1
|
node_cpu_flag_info{flag="aes"} 1
|
||||||
node_cpu_flag_info{flag="avx"} 1
|
node_cpu_flag_info{flag="avx"} 1
|
||||||
|
Loading…
Reference in New Issue
Block a user