Metadata-Version: 2.1
Name: rpi-dht22-exporter
Version: 2.0.0
Summary: UNKNOWN
Home-page: https://github.com/urbas/rpi-dht22-exporter
Author: Matej Urbas
Author-email: matej.urbas@gmail.com
License: MIT license
Description: # Raspberry Pi DHT22 Prometheus Exporter
        
        Exports DHT22 temperature and humidity readings in a format readable by Prometheus.
        
        ## Installation
        
        ```bash
        pip install rpi-dht-22-exporter
        ```
        
        ## Running
        ```bash
        rpi-dht22-exporter --pin <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:
        ```yaml
        scrape_configs:
          - job_name: 'dht22@<the IP of your Raspberry Pi>'
            static_configs:
              - targets: ['<the IP of your Raspberry Pi>:9894']
                labels:
                  location: 'bedroom'
        ```
        
        # 2.0.0
        
        - Introduced the `rpi-dht22-exporter` CLI tool.
        
        # 1.0.0
        
        - Initial release.
        
Keywords: rpi-dht22-exporter,dht22,prometheus,exporter
Platform: UNKNOWN
Description-Content-Type: text/markdown
