forked from exo-explore/exo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprometheus.yml
More file actions
36 lines (30 loc) · 867 Bytes
/
prometheus.yml
File metadata and controls
36 lines (30 loc) · 867 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Prometheus configuration for exo-rkllama monitoring
# Usage: prometheus --config.file=prometheus.yml
global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
# Exo inference server metrics
- job_name: 'exo'
static_configs:
- targets: ['localhost:52415']
metrics_path: /metrics
scrape_interval: 10s
scrape_timeout: 5s
# Optional: RKLLAMA server health (if it exposes metrics)
# - job_name: 'rkllama'
# static_configs:
# - targets: ['localhost:8080']
# metrics_path: /metrics
# Optional: Node exporter for system metrics
# - job_name: 'node'
# static_configs:
# - targets: ['localhost:9100']
# Optional: Alerting rules
# rule_files:
# - 'alerts.yml'
# Optional: Alertmanager configuration
# alerting:
# alertmanagers:
# - static_configs:
# - targets: ['localhost:9093']