Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 863 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 863 Bytes

Raspberry Pi DHT22 Prometheus Exporter build-badge pypi-badge

Exports DHT22 temperature and humidity readings in a format readable by Prometheus.

Installation

pip install rpi-dht-22-exporter

Running

rpi-dht22-exporter --pin-number <gpio pin number>

This will serve metrics at http://0.0.0.0:9894/metrics.

You can make Prometheus scrape these with this scrape config:

scrape_configs:
  - job_name: 'dht22@<the IP of your Raspberry Pi>'
    static_configs:
      - targets: ['<the IP of your Raspberry Pi>:9894']
        labels:
          location: 'bedroom'