45 lines
971 B
YAML
45 lines
971 B
YAML
server:
|
|
http_listen_port: 9080
|
|
grpc_listen_port: 0
|
|
|
|
positions:
|
|
filename: /tmp/positions.yaml
|
|
|
|
clients:
|
|
- url: http://loki:3100/loki/api/v1/push
|
|
|
|
scrape_configs:
|
|
- job_name: docker
|
|
docker_sd_configs:
|
|
- host: unix:///var/run/docker.sock
|
|
refresh_interval: 5s
|
|
filters:
|
|
- name: name
|
|
values: [flog]
|
|
relabel_configs:
|
|
- source_labels: ['__meta_docker_container_name']
|
|
regex: '/(.*)'
|
|
target_label: 'container'
|
|
|
|
# local machine logs
|
|
#
|
|
#- job_name: local
|
|
# static_configs:
|
|
# - targets:
|
|
# - localhost
|
|
# labels:
|
|
# job: varlogs
|
|
# __path__: /var/log/*log
|
|
|
|
# syslog target
|
|
|
|
#- job_name: syslog
|
|
# syslog:
|
|
# listen_address: 0.0.0.0:1514 # make sure you also expose this port on the container
|
|
# idle_timeout: 60s
|
|
# label_structured_data: yes
|
|
# labels:
|
|
# job: "syslog"
|
|
# relabel_configs:
|
|
# - source_labels: ['__syslog_message_hostname']
|
|
# target_label: 'host' |