diff --git a/srcpkgs/node_exporter/files/node_exporter/run b/srcpkgs/node_exporter/files/node_exporter/run index 8f78e02beb8..3ec9cffccb2 100755 --- a/srcpkgs/node_exporter/files/node_exporter/run +++ b/srcpkgs/node_exporter/files/node_exporter/run @@ -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} diff --git a/srcpkgs/node_exporter/template b/srcpkgs/node_exporter/template index 42ae2b1f413..d51251c6e00 100644 --- a/srcpkgs/node_exporter/template +++ b/srcpkgs/node_exporter/template @@ -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 " +maintainer="Toyam Cox " 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.