node_exporter
node_exporter copied to clipboard
Exporter for machine metrics
* Remove deprecated collectors. * Remove deprecated flags. * Flip rapl label feature flag to true.
I've been struggling with porting a monitoring check from Nagios to Prometheus. What it does is raise a flag if there's a shutdown scheduled on a server. It does this...
Add a metric for the scheduled shutdown time from systemd.
go version: 1.14 platform: linux/amd64 panic log: log detail 42725 fatal enror: unexpected signal during runtime execution 42726 [signal SIGSEGV: segmentationvialation code=0x8e addr-ex0 pc=8xs5cac23dd6d4] 42728 gonoutine 135 [running]: 42729 runtime.thrcA(0xS5cac2a787ef,...
resolve #3309 erofs should be considered as squashfs in default exporter behavior
When mounting nfs with nconnect, mountstats will show multiple transports. Currently the mountstats exporter fails to create metrics from this information due to repeated entries. Fix this by adding transport...
erofs should be considered as squashfs and should be include in this default list https://github.com/prometheus/node_exporter/blob/38d32a397720dfdaf547429ea1b40ab8cfa57e85/collector/filesystem_linux.go#L36
Opened in place of: https://github.com/prometheus/node_exporter/pull/3047 Fixes: https://github.com/prometheus/node_exporter/issues/3005 Adds: ``` # HELP node_filesystem_errors Number of filesystem errors encountered. # TYPE node_filesystem_errors counter node_filesystem_errors{device="/dev/vda2",device_error="",fstype="ext4",mountpoint="/boot"} 0 # HELP node_filesystem_warnings Number of filesystem warnings...