Add host/port to top config

This commit is contained in:
Max 2024-03-26 09:59:24 +01:00
parent ac90840d29
commit 0318197963

View File

@ -12,6 +12,9 @@ site_id = 4143190
inverter = '7B0E5700-E0' inverter = '7B0E5700-E0'
listen = 'localhost'
port = 9150
endpoint = "https://monitoringapi.solaredge.com/" endpoint = "https://monitoringapi.solaredge.com/"
query_delta = datetime.timedelta(minutes=20) query_delta = datetime.timedelta(minutes=20)
@ -172,7 +175,7 @@ def metrics():
return format_metrics(collect()) return format_metrics(collect())
def main(): def main():
bottle.run(host='localhost', port=9150) bottle.run(host=listen, port=port)
if __name__ == '__main__': if __name__ == '__main__':