Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mdlayher/hdhomerun_exporter
Command hdhomerun_exporter implements a Prometheus exporter for SiliconDust HDHomeRun devices. MIT Licensed.
https://github.com/mdlayher/hdhomerun_exporter
Last synced: 6 days ago
JSON representation
Command hdhomerun_exporter implements a Prometheus exporter for SiliconDust HDHomeRun devices. MIT Licensed.
- Host: GitHub
- URL: https://github.com/mdlayher/hdhomerun_exporter
- Owner: mdlayher
- License: mit
- Created: 2017-09-13T17:40:06.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-14T15:08:06.000Z (over 5 years ago)
- Last Synced: 2024-10-31T04:50:41.693Z (13 days ago)
- Language: Go
- Size: 249 KB
- Stars: 16
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
hdhomerun_exporter [![Build Status](https://travis-ci.org/mdlayher/hdhomerun_exporter.svg?branch=master)](https://travis-ci.org/mdlayher/hdhomerun_exporter) [![GoDoc](https://godoc.org/github.com/mdlayher/hdhomerun_exporter?status.svg)](https://godoc.org/github.com/mdlayher/hdhomerun_exporter) [![Go Report Card](https://goreportcard.com/badge/github.com/mdlayher/hdhomerun_exporter)](https://goreportcard.com/report/github.com/mdlayher/hdhomerun_exporter)
==================Command `hdhomerun_exporter` implements a Prometheus exporter for SiliconDust
HDHomeRun devices. MIT Licensed.Configuration
-------------The `hdhomerun_exporter`'s Prometheus scrape configuration (`prometheus.yml`) is
configured in a similar way to the official Prometheus
[`blackbox_exporter`](https://github.com/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.```yaml
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.
```