Skip to content

Commit 94c3e13

Browse files
committed
Fixing errors
-Loki was missing due to commit conflict -Prometheus yaml file had a wrong key
1 parent 9c68292 commit 94c3e13

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

compose.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,15 @@ services:
9595
- loki
9696
restart: unless-stopped
9797

98+
loki:
99+
image: grafana/loki:2.9.0
100+
ports:
101+
- "3100:3100"
102+
volumes:
103+
- ./loki/loki-config.yaml:/etc/loki/loki-config.yaml:ro
104+
command: -config.file=/etc/loki/loki-config.yaml
105+
restart: unless-stopped
106+
98107
volumes:
99108
db_data:
100109
prometheus_data:
File renamed without changes.

prometheus/prometheus.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ scrape_configs:
1313
- targets: ['server:8080']
1414

1515
- job_name: 'llm-service'
16-
metric_relabel_configs: '/api/metrics'
16+
metrics_path: '/api/metrics'
1717
static_configs:
1818
- targets: ['localhost:5000']

0 commit comments

Comments
 (0)