ports 514 and 5544
Posted: Thu Dec 18, 2014 3:02 pm
i need to set up NLS to pull logs from ports 5544 and 514.
I followed the instructions here:
and here is my input config file
where am I going wrong?
I followed the instructions here:
Code: Select all
http://support.nagios.com/forum/viewtopic.php?f=38&t=30042&p=116795&hilit=514#p116795Code: Select all
#
# Logstash Configuration File
# Dynamically created by Nagios Log Server
#
# DO NOT EDIT THIS FILE. IT WILL BE OVERWRITTEN.
#
# Created Thu, 18 Dec 2014 14:58:54 -0500
#
#
# Global inputs
#
input {
syslog {
type => 'syslog'
port => 5544
}
tcp {
type => 'eventlog'
port => 3515
codec => json {
charset => 'CP1252'
}
}
tcp {
type => 'import_raw'
tags => 'import_raw'
port => 2056
}
tcp {
type => 'import_json'
tags => 'import_json'
port => 2057
codec => json
}
syslog {
type => 'syslog'
port => 514
}
}
#
# Local inputs
#