Merge pull request #9739 from champtar/master
prometheus-node-exporter-lua: add target & system to OpenWrt collector
This commit is contained in:
commit
3a80fa9cb8
2 changed files with 16 additions and 16 deletions
|
@ -4,7 +4,7 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=prometheus-node-exporter-lua
|
||||
PKG_VERSION:=2019.04.12
|
||||
PKG_VERSION:=2019.08.14
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_MAINTAINER:=Etienne CHAMPETIER <champetier.etienne@gmail.com>
|
||||
|
@ -79,7 +79,7 @@ endef
|
|||
define Package/prometheus-node-exporter-lua-openwrt
|
||||
$(call Package/prometheus-node-exporter-lua/Default)
|
||||
TITLE+= (openwrt collector)
|
||||
DEPENDS:=prometheus-node-exporter-lua
|
||||
DEPENDS:=prometheus-node-exporter-lua +libubus-lua
|
||||
endef
|
||||
|
||||
define Package/prometheus-node-exporter-lua-ltq-dsl
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
local ubus = require "ubus"
|
||||
local u = ubus.connect()
|
||||
local b = u:call("system", "board", {})
|
||||
|
||||
local labels = {
|
||||
id = "",
|
||||
release = "",
|
||||
revision = "",
|
||||
model = string.sub(get_contents("/tmp/sysinfo/model"), 1, -2),
|
||||
board_name = string.sub(get_contents("/tmp/sysinfo/board_name"), 1, -2)
|
||||
board_name = b.board_name,
|
||||
id = b.release.distribution,
|
||||
model = b.model,
|
||||
release = b.release.version,
|
||||
revision = b.release.revision,
|
||||
system = b.system,
|
||||
target = b.release.target
|
||||
}
|
||||
|
||||
for k, v in string.gmatch(get_contents("/etc/openwrt_release"), "(DISTRIB_%w+)='(.-)'\n") do
|
||||
if k == "DISTRIB_ID" then
|
||||
labels["id"] = v
|
||||
elseif k == "DISTRIB_RELEASE" then
|
||||
labels["release"] = v
|
||||
elseif k == "DISTRIB_REVISION" then
|
||||
labels["revision"] = v
|
||||
end
|
||||
end
|
||||
b = nil
|
||||
u = nil
|
||||
ubus = nil
|
||||
|
||||
local function scrape()
|
||||
metric("node_openwrt_info", "gauge", labels, 1)
|
||||
|
|
Loading…
Reference in a new issue