/dm200stats

Statistics collection daemon for Netgear DM200 modem

Primary LanguageGo

dm200stats

Simple daemon that polls a Netgear DM200 modem for basic connection information and provides an HTTP export suitable for collection by Prometheus.

Usage

$ go build github.com/dparrish/dm200stats
$ ./dm200stats -user <username> -pass <password> -port 8080 10.0.0.1

Statistics will be exported by HTTP on the supplied -port.

Docker Use

$ docker run -d -P --name dm200stats \
		-e DM200_USER=admin \
		-e DM200_PASS=admin \
		-e DM200_IP=10.0.0.1 \
		dparrish/dm200stats