Hello ,
So i installed winlogbeat as a service and it is running fine, when i check in Kibana i get that error:
No matching indices found: No indices match pattern "winlogbeat-*"
-Logsash was configured to receive data from Filebeat and Winlogbeat.
-Winlogbeat output is configured to Logstash and i commented the elastic output.
-Logstash was configured to recieve data from port 5044.
Here is the winlogbeat configuration:
#-------------------------- Elasticsearch output ------------------------------
#output.elasticsearch:
# Array of hosts to connect to.
#hosts: ["localhost:9200"]
#----------------------------- Logstash output --------------------------------
output.logstash:
# The Logstash hosts
hosts: ["localhost:5044"]
Here is the Logstash configuration:
input {
beats {
port => 5044
}
}
Please note that i'm using a grok filter that is working fine with parsing data received from filebeat.
Any help will be apperciated.