Contents for lecture 4-2
This commit is contained in:
parent
faf85d7951
commit
bccadab596
22
4-2-logql-log-pipeline/docker-compose.yml
Normal file
22
4-2-logql-log-pipeline/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
|
8
4-2-logql-log-pipeline/provisioning/datasources/loki.yml
Normal file
8
4-2-logql-log-pipeline/provisioning/datasources/loki.yml
Normal file
@ -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