mirror of
https://github.com/apricote/Listory.git
synced 2026-02-07 02:07:03 +00:00
feat(observability): add local grafana+prom stack for metrics insights
This commit is contained in:
parent
6b1640b753
commit
d0a9b0a07c
8 changed files with 295 additions and 0 deletions
17
observability/prometheus/prometheus.yml
Normal file
17
observability/prometheus/prometheus.yml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
global:
|
||||
scrape_interval: 15s
|
||||
|
||||
# A scrape configuration containing exactly one endpoint to scrape.
|
||||
scrape_configs:
|
||||
- job_name: "listory"
|
||||
metrics_path: "/metrics"
|
||||
static_configs:
|
||||
- targets: ["api:9464"]
|
||||
|
||||
- job_name: "prometheus"
|
||||
static_configs:
|
||||
- targets: ["localhost:9090"]
|
||||
|
||||
- job_name: "tempo"
|
||||
static_configs:
|
||||
- targets: ["tempo:3100"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue