Contents for lecture 4-3
This commit is contained in:
parent
bccadab596
commit
2a6e9ba195
22
4-3-logql-metric-queries/docker-compose.yml
Normal file
22
4-3-logql-metric-queries/docker-compose.yml
Normal file
@ -0,0 +1,22 @@
|
||||
version: "3.9"
|
||||
|
||||
services:
|
||||
grafana:
|
||||
image: "grafana/grafana:8.4.2"
|
||||
ports:
|
||||
- "3000:3000"
|
||||
volumes:
|
||||
- ./provisioning:/etc/grafana/provisioning
|
||||
|
||||
loki:
|
||||
image: "grafana/loki:2.4.2"
|
||||
ports:
|
||||
- "3100:3100"
|
||||
|
||||
flog:
|
||||
image: "mingrammer/flog:0.4.3"
|
||||
command: flog -f json -t stdout -w -l
|
||||
logging:
|
||||
driver: "loki"
|
||||
options:
|
||||
loki-url: http://localhost:3100/loki/api/v1/push
|
@ -0,0 +1,8 @@
|
||||
apiVersion: 1
|
||||
|
||||
datasources:
|
||||
- name: Loki
|
||||
type: loki
|
||||
url: http://loki:3100
|
||||
isDefault: true
|
||||
editable: true
|
Loading…
Reference in New Issue
Block a user