1
0
mirror of https://github.com/prometheus/node_exporter.git synced 2026-02-06 00:45:19 +01:00
Files
node_exporter/collector/kernel_hung_linux.go
Markus Boehme 53186b30e3 Fix kernel_hung metric description
Fix the description of the kernel_hung metric to actually describe the
number of hung tasks, not the number of interrupts serviced.

Signed-off-by: Markus Boehme <markus.boehme@mailbox.org>
2025-12-29 13:20:27 +01:00

64 lines
1.6 KiB
Go

// Copyright 2018 The Prometheus Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//go:build !noprocesses
package collector
import (
"fmt"
"log/slog"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/procfs"
)
type kernelHungCollector struct {
fs procfs.FS
logger *slog.Logger
}
func init() {
registerCollector("kernel_hung", defaultDisabled, NewKernelHungCollector)
}
func NewKernelHungCollector(logger *slog.Logger) (Collector, error) {
fs, err := procfs.NewFS(*procPath)
if err != nil {
return nil, fmt.Errorf("failed to open procfs: %w", err)
}
return &kernelHungCollector{
fs: fs,
logger: logger,
}, nil
}
var (
taskDetectCount = prometheus.NewDesc(
prometheus.BuildFQName(namespace, "kernel_hung", "task_detect_count"),
"Total number of tasks that have been detected as hung since the system booted.",
nil, nil,
)
)
func (c *kernelHungCollector) Update(ch chan<- prometheus.Metric) error {
kernelHung, err := c.fs.KernelHung()
if err != nil {
return err
}
ch <- prometheus.MustNewConstMetric(taskDetectCount, prometheus.CounterValue, float64(*kernelHung.HungTaskDetectCount))
return nil
}