Logstash not printing stdout

Here is my logstash.conf

and here is the logstash log file in /var/log/logstash

issue is , application logs are not printing in logstash STDOUT. ... I dont see any error also.

I am using logstash 7.4 in AWS EC2 (Linux 2)

What is the issue here ?

Did you retried with a new name for your log ?

why do I do with a new name of log ? application log is fixed and final.

To exclude a problem with sincedb

I still dont understand what exactly you want to change.

Could you please be explicit ?

I have this input
input {
file {
path => "/home/ec2-user/xxxxx/testservice.log"
start_position => "beginning"
sincedb_path => "/dev/null"
}
}

Try this :

input {
file {
path => "/home/ec2-user/xxxxx/testservice2.log"
start_position => "beginning"
sincedb_path => "/dev/null"
}
}

checking..

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.