@@ -1,3 +1,3 @@
-- Telemetry endpoint: 8000
-- Metrics: 8001
-- Prometheus: 9090
+- Telemetry endpoint: 8388
+- Metrics: 3389
+- Prometheus: 8080
@@ -67,4 +67,4 @@ def hello_world():
if __name__ == 'main':
print("Starting prometheus server")
- start_http_server(8001)
+ start_http_server(3389)
@@ -26,4 +26,4 @@ global:
# scheme defaults to 'http'.
static_configs:
- - targets: ['localhost:9090', 'localhost:8001']
+ - targets: ['localhost:9090', 'localhost:3389']
#!/bin/bash
export FLASK_APP=main.py
-flask run --port 8000 --host=0.0.0.0
+flask run --port 8388 --host=0.0.0.0