node_exporter: update to 0.15.0.
This commit is contained in:
parent
7691c88f79
commit
9a3b874ac8
|
@ -4,9 +4,7 @@
|
|||
[ -f ./conf ] && . ./conf
|
||||
|
||||
: ${USER:=_node_exporter}
|
||||
: ${RUNIT_COLLECTOR:='-collector.runit.servicedir /var/service'}
|
||||
[ -n "$LISTEN_ADDR" ] && LISTEN_ADDR="-web.listen-address ${LISTEN_ADDR}"
|
||||
# The below must match upstream's default enabled collectors, and because we can, we add 'runit'
|
||||
: ${ENABLED_MODS:='conntrack,diskstats,entropy,edac,filefd,filesystem,hwmon,infiniband,loadavg,mdadm,meminfo,netdev,netstat,sockstat,stat,textfile,time,uname,vmstat,wifi,zfs,runit'}
|
||||
: ${RUNIT_COLLECTOR:='--collector.runit --collector.runit.servicedir /var/service'}
|
||||
[ -n "$LISTEN_ADDR" ] && LISTEN_ADDR="--web.listen-address ${LISTEN_ADDR}"
|
||||
|
||||
exec chpst -u $USER node_exporter -collectors.enabled ${ENABLED_MODS} ${RUNIT_COLLECTOR} ${LISTEN_ADDR} ${ARGS}
|
||||
exec chpst -u $USER node_exporter -collectors.enabled ${RUNIT_COLLECTOR} ${LISTEN_ADDR} ${ARGS}
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
# Template file for 'node_exporter'
|
||||
# ON UPDATE: Be sure to update the default list of collectors in the sv run
|
||||
# file. There is no easy way at 0.14.0 to go from the -h output
|
||||
# of node_exporter to taking the default list and appending runit.
|
||||
pkgname=node_exporter
|
||||
version=0.14.0
|
||||
version=0.15.0
|
||||
revision=1
|
||||
build_style=go
|
||||
go_import_path="github.com/prometheus/node_exporter"
|
||||
|
@ -12,11 +9,11 @@ go_ldflags="-X ${go_import_path}/version.Version=${version}
|
|||
-X ${go_import_path}/version.Branch=${version}
|
||||
-X ${go_import_path}/version.BuildUser=VoidLinux"
|
||||
short_desc="Exporter for machine metrics"
|
||||
maintainer="Toyam Cox <Vaelatern@gmail.com>"
|
||||
maintainer="Toyam Cox <Vaelatern@voidlinux.eu>"
|
||||
license="Apache-2.0"
|
||||
homepage="https://prometheus.io/"
|
||||
distfiles="https://github.com/prometheus/node_exporter/archive/v${version}.tar.gz"
|
||||
checksum=312d7e1c07d6a7548f2f116b983da87f7b3a7630f9332eb41c306fd71b2e6ec1
|
||||
checksum=87a057081e2034f85e997f9e1343aaf45e1b6ad9fa51411caf97a03fe1c46ccb
|
||||
|
||||
system_accounts="_node_exporter"
|
||||
|
||||
|
@ -26,3 +23,9 @@ post_install() {
|
|||
vsconf example.rules
|
||||
vsv node_exporter
|
||||
}
|
||||
|
||||
# REMARKS:
|
||||
# The following remark is now obsolete:
|
||||
# ON UPDATE: Be sure to update the default list of collectors in the sv run
|
||||
# file. There is no easy way at 0.14.0 to go from the -h output
|
||||
# of node_exporter to taking the default list and appending runit.
|
||||
|
|
Loading…
Reference in New Issue