mirror of
https://github.com/luzifer-ansible/journalbeat.git
synced 2024-11-08 13:50:07 +00:00
23 lines
602 B
YAML
23 lines
602 B
YAML
---
|
|
|
|
# Initial config retrieved through:
|
|
# $ curl -sL "https://github.com/mheese/journalbeat/raw/master/etc/journalbeat.yml" | grep -Ev "^(\s*#.*|)$"
|
|
#
|
|
# Modifications:
|
|
# - Disable index template as there is no useful template right now
|
|
#
|
|
# For full configuration options see example configuration at
|
|
# https://github.com/mheese/journalbeat/blob/master/etc/journalbeat.yml
|
|
|
|
journalbeat_config:
|
|
journalbeat:
|
|
name: journalbeat
|
|
output.elasticsearch:
|
|
hosts: ["localhost:9200"]
|
|
template.enabled: false # modified
|
|
logging.to_files: true
|
|
logging.files:
|
|
|
|
journalbeat_version: 5.6.0
|
|
|
|
...
|