mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 09:29:38 +02:00
init
This commit is contained in:
parent
c386f68743
commit
b6536eca38
100 changed files with 17680 additions and 377 deletions
36
ts/deploy/prometheus/prometheus.yml
Normal file
36
ts/deploy/prometheus/prometheus.yml
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
global:
|
||||
scrape_interval: 15s
|
||||
evaluation_interval: 15s
|
||||
|
||||
external_labels:
|
||||
monitor: "trustgraph-ts"
|
||||
|
||||
scrape_configs:
|
||||
# Prometheus self-monitoring
|
||||
- job_name: "prometheus"
|
||||
scrape_interval: 15s
|
||||
static_configs:
|
||||
- targets:
|
||||
- "prometheus:9090"
|
||||
|
||||
# NATS monitoring
|
||||
- job_name: "nats"
|
||||
scrape_interval: 15s
|
||||
metrics_path: "/varz"
|
||||
static_configs:
|
||||
- targets:
|
||||
- "nats:8222"
|
||||
|
||||
# OpenTelemetry Collector (exposes Prometheus metrics from OTLP pipeline)
|
||||
- job_name: "otel-collector"
|
||||
scrape_interval: 15s
|
||||
static_configs:
|
||||
- targets:
|
||||
- "otel-collector:8889"
|
||||
|
||||
# TrustGraph gateway (enabled when gateway container is running)
|
||||
- job_name: "gateway"
|
||||
scrape_interval: 5s
|
||||
static_configs:
|
||||
- targets:
|
||||
- "gateway:8000"
|
||||
Loading…
Add table
Add a link
Reference in a new issue