mirror of
https://repository.entgra.net/community/entgra-elk.git
synced 2025-09-16 23:32:20 +00:00
20 lines
453 B
YAML
20 lines
453 B
YAML
filebeat.inputs:
|
|
- type: log
|
|
enabled: true
|
|
tags: ["SwitchGearLogs"]
|
|
paths:
|
|
- /usr/share/filebeat/elk/switchgear.log
|
|
exclude_files: [".gz$"]
|
|
exclude_lines: ["^.*TRACE.*$"]
|
|
|
|
output.logstash:
|
|
hosts: ["${LOGSTASH_HOST}:${LOGSTASH_PORT}"]
|
|
|
|
processors:
|
|
- add_docker_metadata:
|
|
host: "unix:///host_docker/docker.sock"
|
|
- add_fields:
|
|
target: ""
|
|
fields:
|
|
node.name: "${HOST_PRIVATE_IP}" #custom node name
|