Hi Guys! I m new in ELK.
have managed to get the Stack up and send my syslogs from my API Manager.
I would like to be able to transform a Syslog field into JSON. The "message" field.
This is my logstash.conf
input {
tcp {
port => 5000
type => syslog
}
udp {
port => 5000
type => syslog
}
}filter {
if [type] == "syslog" {
grok {
match => { "message" => "%{SYSLOGTIMESTAMP:syslog_timestamp} %{SYSLOGHOST:syslog_hostname} %{DATA:syslog_program}(?:[%{POSINT:syslog_pid}])?: %{GREEDYDATA:syslog_message}" }
add_field => [ "received_at", "%{@timestamp}" ]
add_field => [ "received_from", "%{host}" ]
}
date {
match => [ "syslog_timestamp", "MMM d HH:mm:ss", "MMM dd HH:mm:ss" ]
}
}
}output {
elasticsearch {
hosts => "elasticsearch:9200"
user => elastic
password => yourstrongpasswordhere
}
stdout { codec => rubydebug }
}
Hire mi log on ELK.
I understand that I am not the first to inquire about this issue. Where can I start reading, to solve it?
Thanks a lot.