https://github.com/makefu/weather2stats
push different weather data into graphite
https://github.com/makefu/weather2stats
Last synced: 9 months ago
JSON representation
push different weather data into graphite
- Host: GitHub
- URL: https://github.com/makefu/weather2stats
- Owner: makefu
- License: other
- Created: 2016-01-21T22:13:25.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-05-28T21:44:11.000Z (about 9 years ago)
- Last Synced: 2025-09-19T23:25:53.883Z (9 months ago)
- Language: Python
- Size: 28.3 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Usage
# Plugins
Plugins implement the following api:
* variable `ids` - list to the standard identifiers used for stuttgart
* function `get_data` - takes the list of ids and returns a list of entries and cfg dict
## `get_data()`
returns a list of data points for each id:
```
[
{
"_id": "",
"_name": "",
"_source": "",
"_ts": "",
"field1": ,
... ,
"fieldX":
}
...
]
```
`_name`,`_id` and `_source`, `_ts` have a special meaning,
the rest are essentially key value pairs of the measurements.
# Dev Mode
```sh
nix-shell
```