I'm trying to explore the security recipe for suspicious login activity in my local machine
https://github.com/elastic/examples/blob/master/Machine%20Learning/Security%20Analytics%20Recipes/suspicious_login_activity/configs/filebeat/filebeat.yml
When trying to index the auth.log, nothing appears in the create index pattern of kibana.
Here's my filebeat.yml
filebeat.modules:
- module: system
syslog:
enabled: false
auth:
enabled: true
var.paths: ["/data/auth.log"]
name: test
output.elasticsearch:
hosts: ["http://elastic-url:9200"]
username: "elastic"
password: "secret"
setup.kibana:
host: "http://kibana-url:5601"
username: "elastic"
password: "secret"
logging.level: debug
logging.selectors: ["publish"]
setup.dashboards.enabled: true
Am I missing something?