I have a test server and i have a central server. I need to load the syslog data from test server to central server. Configured elasticsearch,logstash,kibana in central server,configured filebeat in test server,but why data is not loading into kibana

I have a test server and i have a central server. I need to load the syslog data from test server to central server. Configured elasticsearch,logstash,kibana in central server,configured filebeat in test server,but why data is not loading into kibana.
This is my logstash conf file
input {
tcp {
host => "139.84.144.118"
port => 5044 # Default syslog port for UDP
type => "ad_audit.log"
}

or for TCP:

tcp {
port => 5044 # Default syslog port for TCP
type => "syslog"
}
}
filter {
grok {
match => { "message" => "%{SYSLOGTIMESTAMP} %{SYSLOGHOST} %{WORD:syslog_program}[%{POSINT:syslog_pid}]: %{GREEDYDATA:syslog_message}" }
}
}

output {
elasticsearch {
hosts => ["http://149.28.242.54:9200"]
index => "syslog-%{+YYYY.MM.dd}"
}
}