Skip to content

Commit

Permalink
adding the filebeat template.
Browse files Browse the repository at this point in the history
  • Loading branch information
lvangink committed Sep 15, 2023
1 parent ce56497 commit ba4d2c9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions roles/telemetry/templates/filebeat.yml.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
## This filebeat template is not used in the current playbook.
## The current playbook uses the filebeat template in the mdd-base
## Telemetry directory. To pass this file, you need to change the
## The install_elastic.yml in the tasks folder.
filebeat.config.modules:
enabled: true
path: ${path.config}/modules.d/*.yml

filebeat.modules:
- module: netflow
log:
enabled: true
var.netflow_host: "0.0.0.0"
var.netflow_port: 2055

setup.kibana:
host: "http://kibana:5601"
username: "elastic"
password: "changeme"
dashboards:
enabled: true

output.elasticsearch:
hosts: ["https://es01:9200"]
username: "elastic"
password: "changeme"
ssl.enabled: true
ssl.certificate_authorities: "certs/ca/ca.crt"

0 comments on commit ba4d2c9

Please sign in to comment.