Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion utils/prometheus-node-exporter-lua/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=prometheus-node-exporter-lua
PKG_VERSION:=2025.11.22
PKG_RELEASE:=1
PKG_RELEASE:=2

PKG_MAINTAINER:=Etienne CHAMPETIER <[email protected]>
PKG_LICENSE:=Apache-2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ local function scrape()
for sensor_path in fs.glob(hwmon_path .. "/temp*_input") do
local sensor = string.gsub(fs.basename(sensor_path), "_input$", "")
local temp = get_contents(sensor_path) / 1000
metric_temp_celsius({chip=chip, sensor=sensor}, temp)
metric_temp_celsius({chip=chip, sensor=sensor, chip_name=chip_name}, temp)
end

-- Produce node_hwmon_pwm
Expand Down
Loading