configs.py aktualisiert

interval for pulling stats from api default set to 60 minutes
This commit is contained in:
Manuel Kamper 2023-12-21 16:33:07 +00:00
parent c8d6dcd3e9
commit c49928bae7
1 changed files with 14 additions and 13 deletions

View File

@ -1,14 +1,15 @@
configs = {
'country': 'AT',
'ntp_host': 'pool.ntp.org',
'gmt_offset': 1,
'auto_summertime': True,
'disable_wifi_powersavingmode': True,
'api_port': 80,
'hostname': 'powermeter',
'log_housekeeping_days': 7,
'api_client_ip': '',
'db_api': 'http://your-power-api-host/powerapi/index.php',
'db_api_interval_minutes': 5,
'ticks_per_kWh': 1000
configs = {
'country': 'AT',
'ntp_host': 'pool.ntp.org',
'gmt_offset': 1,
'auto_summertime': True,
'disable_wifi_powersavingmode': True,
'api_port': 80,
'hostname': 'powermeter',
'log_housekeeping_days': 7,
'api_client_ip': '',
'db_api': 'http://your-power-api-host/powerapi/index.php',
'db_api_interval_minutes': 5,
'db_api_pull_interval_minutes': 60,
'ticks_per_kWh': 1000
}