https://github.com/dcoles/prometheus-exporters
Various Prometheus exporters I've written for personal use.
https://github.com/dcoles/prometheus-exporters
Last synced: about 2 months ago
JSON representation
Various Prometheus exporters I've written for personal use.
- Host: GitHub
- URL: https://github.com/dcoles/prometheus-exporters
- Owner: dcoles
- License: mit
- Created: 2018-11-23T16:30:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-08-15T19:10:12.000Z (almost 6 years ago)
- Last Synced: 2025-12-27T02:54:03.452Z (6 months ago)
- Language: Python
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Prometheus Exporters
## Nest
Export metrics from Nest devices (e.g. Nest Thermostat)
### ⚠️ Important
This exporter uses the old ["Works with Nest" API](https://developers.nest.com/)
which has [now been sunset by Google](https://blog.google/products/google-nest/works-with-nest).
You can still use this exporter, but only if you have a pre-existing developer token.
## OpenWeather
Export metrics from [OpenWeather](https://openweathermap.org/).
Requires an [`appid`](https://openweathermap.org/appid) to be able to fetch metrics using the
[One Call API](https://openweathermap.org/api/one-call-api)
### Config
```json5
{
// OpenWeather config (required)
"openweather": {
// OpenWeather appid (required)
"appid": "xxx",
// Locations to monitor (mapping of location name to lat/long)
"locations": {
"Melbourne, VIC": {
"lat": -37.813611, "long": 144.963056
}
}
}
}
```
## Hue
Export metrics from [Philips Hue](https://www.philips-hue.com/).
### Config
```json5
{
"nest": {
// IP address of Hue hub
"ipaddress": "192.168.1.10",
// API username
"username": "xxx"
}
}
```