summaryrefslogtreecommitdiff
path: root/monitoring
diff options
context:
space:
mode:
authorTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-01 16:09:06 +0900
committerTheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com>2026-04-01 16:09:06 +0900
commitec792a3d379c911165038d8da5b339df6ca3fccd (patch)
tree324361089617b18110265efd10d174bbb0990b9f /monitoring
parente1bf24b2a639ba21361ae408ee6c1eebe37801aa (diff)
feat(shared): add health checks and Prometheus metrics
Diffstat (limited to 'monitoring')
-rw-r--r--monitoring/prometheus.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/monitoring/prometheus.yml b/monitoring/prometheus.yml
new file mode 100644
index 0000000..f6d5485
--- /dev/null
+++ b/monitoring/prometheus.yml
@@ -0,0 +1,10 @@
+global:
+ scrape_interval: 15s
+scrape_configs:
+ - job_name: "trading-services"
+ static_configs:
+ - targets:
+ - "data-collector:8080"
+ - "strategy-engine:8081"
+ - "order-executor:8082"
+ - "portfolio-manager:8083"