View | Details | Raw Unified | Return to bug 223236 | Differences between
and this patch

Collapse All | Expand All

(-)b/sysutils/node_exporter/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	node_exporter
4
PORTNAME=	node_exporter
5
PORTVERSION=	0.14.0
5
PORTVERSION=	0.15.0
6
DISTVERSIONPREFIX=v
6
DISTVERSIONPREFIX=v
7
CATEGORIES=	sysutils
7
CATEGORIES=	sysutils
8
8
(-)b/sysutils/node_exporter/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1490096188
1
TIMESTAMP = 1508926478
2
SHA256 (prometheus-node_exporter-v0.14.0_GH0.tar.gz) = 312d7e1c07d6a7548f2f116b983da87f7b3a7630f9332eb41c306fd71b2e6ec1
2
SHA256 (prometheus-node_exporter-v0.15.0_GH0.tar.gz) = 87a057081e2034f85e997f9e1343aaf45e1b6ad9fa51411caf97a03fe1c46ccb
3
SIZE (prometheus-node_exporter-v0.14.0_GH0.tar.gz) = 1086402
3
SIZE (prometheus-node_exporter-v0.15.0_GH0.tar.gz) = 1324698
(-)b/sysutils/node_exporter/files/node_exporter.in (-2 / +2 lines)
Lines 39-46 pidfile=/var/run/node_exporter.pid Link Here
39
command="/usr/sbin/daemon"
39
command="/usr/sbin/daemon"
40
procname="%%PREFIX%%/bin/node_exporter"
40
procname="%%PREFIX%%/bin/node_exporter"
41
command_args="-p ${pidfile} /usr/bin/env ${procname} \
41
command_args="-p ${pidfile} /usr/bin/env ${procname} \
42
    -web.listen-address=${node_exporter_listen_address} \
42
    --web.listen-address=${node_exporter_listen_address} \
43
    -collector.textfile.directory=${node_exporter_textfile_dir} \
43
    --collector.textfile.directory=${node_exporter_textfile_dir} \
44
    ${node_exporter_args}"
44
    ${node_exporter_args}"
45
45
46
start_precmd=node_exporter_startprecmd
46
start_precmd=node_exporter_startprecmd
(-)b/sysutils/node_exporter/pkg-message (+6 lines)
Added Link Here
1
If upgrading from a version of node_exporter <0.15.0 you'll need to update any
2
custom command line flags that you may have set as it now requires a
3
double-dash (--flag) instead of a single dash (-flag).
4
The collector flags in 0.15.0 have now been replaced with individual boolean
5
flags and the -collector.procfs` and -collector.sysfs` flags have been renamed
6
to --path.procfs and --path.sysfs respectively.

Return to bug 223236