Make the exporter listen on IPv6.

This commit is contained in:
Joachim Desroches 2022-09-15 15:28:33 +02:00
parent dd8323939e
commit 81c9288e96
Signed by untrusted user who does not match committer: jdesroches
GPG Key ID: 6778C9C29C02D691
1 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ import sys
USER = "odoo"
HTTP_HOST = "::"
HTTP_PORT = 9402
INTERVAL = 10
@ -26,7 +27,7 @@ if __name__ == '__main__':
"Remaining days before Odoo license expiration")
# Serve metrics over HTTP
start_http_server(HTTP_PORT)
start_http_server(host=HTTP_HOST, port=HTTP_PORT)
# Open connection
with psycopg2.connect(database=DBNAME, user=USER) as conn: