diff options
Diffstat (limited to 'roles/loki/templates/promtail.yml.j2')
-rw-r--r-- | roles/loki/templates/promtail.yml.j2 | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/roles/loki/templates/promtail.yml.j2 b/roles/loki/templates/promtail.yml.j2 new file mode 100644 index 0000000..16c580e --- /dev/null +++ b/roles/loki/templates/promtail.yml.j2 @@ -0,0 +1,23 @@ +server: + http_listen_port: 9080 + grpc_listen_port: 0 + +positions: + filename: /var/promtail/positions.yaml + +clients: + - url: http://localhost:3100/loki/api/v1/push + +scrape_configs: + - job_name: system + static_configs: + - targets: + - localhost + labels: + job: var_logs + __path__: /var/log/*log + - targets: + - localhost + labels: + job: www_logs + __path__: /var/www/logs/*log |