Is my Data being received by Elasticsearch?

These are the only configurations that have been made for the logstash.conf, logstash.yml, and elasticsearch.yml.


Logstash.conf:

input {
tcp {
port => 5044
codec => "line"
type => "WindowsEventLog"
}
syslog {
type => 'syslog'
port => 5544
}
}

filter {
if [type] == 'syslog' {
syslog_pri { }
date {
match => [ "syslog_timestamp", "MMM d HH:mm:ss", "MMM dd HH:mm:ss" ]
}

}
}
output {
elasticsearch {
hosts => ["127.0.0.1:9200"]
sniffing => true
manage_template => false
index => "logstash-%{+YYYY.MM.dd}"
document_type => "%{[@metadata][type]}"
}
}


logstash.yml file:

path.data: /var/lib/logstash
path.config: /etc/logstash/conf.d
path.logs: /var/log/logstash


elasticsearch.yml file:

node.name: WFELK01
path.data: /home/data
path.logs: /var/log/elasticsearch
network.host: 127.0.0.1
http.port: 9200