fritzbox-prometheus-exporter

command module
v0.0.0-...-ac933e4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 9, 2023 License: Apache-2.0 Imports: 18 Imported by: 0

README

Fritz!Box Upnp statistics exporter for prometheus

This exporter exports some variables from an AVM Fritzbox to prometheus.

This exporter is tested with a Fritzbox 7590 software version 07.12, 07.20 and 07.21.

The goal of the fork is:

  • allow passing of username / password using evironment variable
  • use https instead of http for communitcation with fritz.box
  • move config of metrics to be exported to config file rather then code
  • add config for additional metrics to collect (especially from TR-064 API)
  • create a grafana dashboard consuming the additional metrics
  • collect metrics from lua APIs not available in UPNP APIs

Other changes:

  • replaced digest authentication code with own implementation
  • improved error messages
  • New: test mode prints details about all SOAP Actions and their parameters
  • New: collect option to directly test collection of results
  • New: additional metrics to collect details about connected hosts and DECT devices
  • New: support to use results like hostname or MAC address as labels to metrics
  • New: support for metrics from lua APIs (e.g. CPU temperature, utilization, ...)

Building

go get github.com/ck99io/fritzbox_exporter/
cd $GOPATH/src/github.com/ck99io/fritzbox_exporter
go install

Running

In the configuration of the Fritzbox the option "Statusinformationen über UPnP übertragen" in the dialog "Heimnetz > Heimnetzübersicht > Netzwerkeinstellungen" has to be enabled.

Using docker

First you have to build the container: docker build --tag fritzbox-prometheus-exporter:latest .

Then start the container:

$ docker run -e 'USERNAME=your_fritzbox_username' \
    -e 'PASSWORD=your_fritzbox_password' \
    -e 'GATEWAY_URL="http://192.168.0.1:49000"' \
    -e 'LISTEN_ADDRESS="0.0.0.0:9042"' \
    fritzbox-prometheus-exporter:latest
Using docker-compose

Set your environment variables within the docker-compose.yml file.

Then start up the container using docker-compose up -d.

Using the binary

Usage:

$GOPATH/bin/fritzbox_exporter -h
Usage of ./fritzbox_exporter:
  -gateway-url string
    The URL of the FRITZ!Box (default "http://fritz.box:49000")
  -listen-address string
    The address to listen on for HTTP requests. (default "127.0.0.1:9042")
  -metrics-file string
    The JSON file with the metric definitions. (default "metrics.json")
  -password string
    The password for the FRITZ!Box UPnP service
  -test
    print all available SOAP calls and their results (if call possible) to stdout
  -testLua
    read luaTest.json file make all contained calls and dump results
  -collect
    collect metrics once print to stdout and exit
  -json-out string
    store metrics also to JSON file when running test   
  -username string
    The user for the FRITZ!Box UPnP service

The password (needed for metrics from TR-064 API) can be passed over environment variables to test in shell:
read -rs PASSWORD && export PASSWORD && ./fritzbox_exporter -username <user> -test; unset PASSWORD

Exported metrics

start exporter and run curl -s http://127.0.0.1:9042/metrics

Output of -test

The exporter prints all available Variables to stdout when called with the -test option. These values are determined by parsing all services from http://fritz.box:49000/igddesc.xml and http://fritzbox:49000/tr64desc.xml (for TR64 username and password is needed!!!)

Customizing metrics

The metrics to collect are no longer hard coded, but have been moved to the metrics.json file, so just adjust to your needs. For a list of all the available metrics just execute the exporter with -test (username and password are needed for the TR-064 API!)

For a list of all available metrics, see the dumps below (the format is the same as in the metrics.json file, so it can be used to easily add further metrics to retrieve):

Grafana Dashboard

The dashboard is now also published on Grafana.

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
Package lua_client implementes client for fritzbox lua UI API
Package lua_client implementes client for fritzbox lua UI API
Package fritzbox_upnp Query UPNP variables from Fritz!Box devices.
Package fritzbox_upnp Query UPNP variables from Fritz!Box devices.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL