diff --git a/main.py b/main.py index e83059e..bfd42a4 100644 --- a/main.py +++ b/main.py @@ -86,6 +86,14 @@ def metrics(): 'type': 'gauge', 'value': float(latest_data['wind_kph']), }, + { + 'key': 'sensor_weather_outdoor_wind_gust', + 'labels': { + 'location': location, + }, + 'type': 'gauge', + 'value': float(latest_data['gust_kph']), + }, { 'key': 'sensor_weather_outdoor_wind_direction', 'labels': { @@ -102,6 +110,14 @@ def metrics(): 'type': 'gauge', 'value': float(latest_data['feelslike_c']), }, + { + 'key': 'sensor_weather_outdoor_pressure', + 'labels': { + 'location': location, + }, + 'type': 'gauge', + 'value': float(latest_data['pressure_mb']), + }, ] ret_strs = list()