mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
7e60afb6fc
This commit allows to ingest logs with journald format. https://www.freedesktop.org/software/systemd/man/latest/systemd-journal-remote.service.html related issue: https://github.com/VictoriaMetrics/VictoriaMetrics/issues/4618
18 lines
453 B
YAML
18 lines
453 B
YAML
include:
|
|
- ../compose-base.yml
|
|
services:
|
|
nginx:
|
|
image: nginx:1.27
|
|
volumes:
|
|
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
depends_on: [fluentbit]
|
|
ports:
|
|
- "8080:80"
|
|
fluentbit:
|
|
image: cr.fluentbit.io/fluent/fluent-bit:3.1.7
|
|
volumes:
|
|
- /var/lib/docker/containers:/var/lib/docker/containers:ro
|
|
- ${PWD}/fluent-bit.conf:/fluent-bit/etc/fluent-bit.conf
|
|
depends_on: [victorialogs]
|
|
ports:
|
|
- "5140:5140"
|