Add more data gathering
This commit is contained in:
parent
88b6fd2436
commit
fb985c991f
48
main.py
48
main.py
|
@ -54,6 +54,54 @@ def metrics():
|
|||
'type': 'gauge',
|
||||
'value': float(latest_data['humidity']),
|
||||
},
|
||||
{
|
||||
'key': 'sensor_weather_outdoor_uv',
|
||||
'labels': {
|
||||
'location': location,
|
||||
},
|
||||
'type': 'gauge',
|
||||
'value': float(latest_data['uv']),
|
||||
},
|
||||
{
|
||||
'key': 'sensor_weather_outdoor_cloud_percent',
|
||||
'labels': {
|
||||
'location': location,
|
||||
},
|
||||
'type': 'gauge',
|
||||
'value': float(latest_data['cloud']),
|
||||
},
|
||||
{
|
||||
'key': 'sensor_weather_outdoor_precip',
|
||||
'labels': {
|
||||
'location': location,
|
||||
},
|
||||
'type': 'gauge',
|
||||
'value': float(latest_data['precip_mm']),
|
||||
},
|
||||
{
|
||||
'key': 'sensor_weather_outdoor_wind_speed',
|
||||
'labels': {
|
||||
'location': location,
|
||||
},
|
||||
'type': 'gauge',
|
||||
'value': float(latest_data['wind_kph']),
|
||||
},
|
||||
{
|
||||
'key': 'sensor_weather_outdoor_wind_direction',
|
||||
'labels': {
|
||||
'location': location,
|
||||
},
|
||||
'type': 'gauge',
|
||||
'value': float(latest_data['wind_degree']),
|
||||
},
|
||||
{
|
||||
'key': 'sensor_weather_outdoor_temp_feel_c',
|
||||
'labels': {
|
||||
'location': location,
|
||||
},
|
||||
'type': 'gauge',
|
||||
'value': float(latest_data['feelslike_c']),
|
||||
},
|
||||
]
|
||||
|
||||
ret_strs = list()
|
||||
|
|
Loading…
Reference in a new issue