infra/passwords/promtail/config.yml

31 lines
798 B
YAML

server:
http_listen_port: 9080
grpc_listen_port: 0
positions:
filename: /tmp/positions.yaml
clients:
# Use the Tailscale IP of VM1 here
- url: http://100.80.179.128:3100/loki/api/v1/push
scrape_configs:
- job_name: system
static_configs:
- targets:
- localhost
labels:
job: varlogs
host: cloud-passwords # Update this to vm3, vm4, etc.
__path__: /var/log/*log
- job_name: docker
docker_sd_configs:
- host: unix:///var/run/docker.sock
relabel_configs:
- source_labels: ['__meta_docker_container_name']
regex: '/(.*)'
target_label: 'container'
- source_labels: ['__meta_docker_container_name']
target_label: 'host'
replacement: 'cloud-passwords' # Update this to vm3, vm4, etc.