Command hdhomerun_exporter
implements a Prometheus exporter for SiliconDust
HDHomeRun devices. MIT Licensed.
The hdhomerun_exporter
's Prometheus scrape configuration (prometheus.yml
) is
configured in a similar way to the official Prometheus
blackbox_exporter
.
The targets
list under static_configs
should specify the addresses of any
HDHomeRun devices which should be monitored by the exporter. The address of
the hdhomerun_exporter
itself must be specified in relabel_configs
as well.
scrape_configs:
- job_name: 'hdhomerun'
static_configs:
- targets:
- '192.168.1.10' # hdhomerun device.
relabel_configs:
- source_labels: [__address__]
target_label: __param_target
- source_labels: [__param_target]
target_label: instance
- target_label: __address__
replacement: '127.0.0.1:9137' # hdhomerun_exporter.