mirror of
https://github.com/novatiq/packages.git
synced 2026-04-29 23:18:42 +01:00
prometheus-node-exporter-lua: add openwrt exporter
adds openwrt specific information about the device.
include DISTRIB_{ID, RELEASE, REVISION}, board_name and model
Example output:
# TYPE node_openwrt_info gauge
node_openwrt_info{revision="55a0636",model="QEMU Standard PC (i440FX + PIIX, 1996)",id="LiMe",board_name="qemu-standard-pc-i440fx-piix-1996",release="snapshot"} 1
node_scrape_collector_duration_seconds{collector="openwrt"} 3.814697265625e-05
node_scrape_collector_success{collector="openwrt"} 1
Signed-off-by: Paul Spooren <spooren@informatik.uni-leipzig.de>
This commit is contained in:
@@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=prometheus-node-exporter-lua
|
||||
PKG_VERSION:=2017.12.08
|
||||
PKG_RELEASE:=3
|
||||
PKG_RELEASE:=4
|
||||
|
||||
PKG_MAINTAINER:=Christian Simon <simon@swine.de>
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
@@ -76,6 +76,11 @@ define Package/prometheus-node-exporter-lua-textfile
|
||||
DEPENDS:=prometheus-node-exporter-lua +luci-lib-nixio
|
||||
endef
|
||||
|
||||
define Package/prometheus-node-exporter-lua-openwrt
|
||||
$(call Package/prometheus-node-exporter-lua/Default)
|
||||
TITLE+= (openwrt collector)
|
||||
endef
|
||||
|
||||
Build/Compile=
|
||||
|
||||
define Package/prometheus-node-exporter-lua/install
|
||||
@@ -130,6 +135,11 @@ define Package/prometheus-node-exporter-lua-textfile/install
|
||||
$(INSTALL_BIN) ./files/usr/lib/lua/prometheus-collectors/textfile.lua $(1)/usr/lib/lua/prometheus-collectors/
|
||||
endef
|
||||
|
||||
define Package/prometheus-node-exporter-lua-openwrt/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib/lua/prometheus-collectors
|
||||
$(INSTALL_BIN) ./files/usr/lib/lua/prometheus-collectors/openwrt.lua $(1)/usr/lib/lua/prometheus-collectors/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,prometheus-node-exporter-lua))
|
||||
$(eval $(call BuildPackage,prometheus-node-exporter-lua-nat_traffic))
|
||||
$(eval $(call BuildPackage,prometheus-node-exporter-lua-netstat))
|
||||
@@ -138,3 +148,4 @@ $(eval $(call BuildPackage,prometheus-node-exporter-lua-wifi_stations))
|
||||
$(eval $(call BuildPackage,prometheus-node-exporter-lua-bmx6))
|
||||
$(eval $(call BuildPackage,prometheus-node-exporter-lua-bmx7))
|
||||
$(eval $(call BuildPackage,prometheus-node-exporter-lua-textfile))
|
||||
$(eval $(call BuildPackage,prometheus-node-exporter-lua-openwrt))
|
||||
|
||||
Reference in New Issue
Block a user