hi im new here
just install logstash as shipper toward Logz.io
ive install the sflow input plugin but i dont see logstash listening in any port.
i have filebeat installed on this agent as well for syslog collecting.
appreciate any help
thanks
netstat -unlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
udp 0 0 127.0.0.53:53 0.0.0.0:* 957/systemd-resolve
udp 0 0 172.16.0.31:68 0.0.0.0:* 937/systemd-network
udp6 0 0 :::9000 :::* 2851/filebeat
netstat -tnlp
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN 957/systemd-resolve
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 2444/sshd
tcp6 0 0 :::22 :::* LISTEN 2444/sshd
this is my logstash.yml
" input {
sflow {
}
}
filter {
...
...
mutate {
add_field => { "token" => "token" }
}
}
output {
lumberjack {
hosts => ["listener"]
port => 5006
ssl_certificate => "/usr/share/logstash/keys/TrustExternalCARoot.crt"
codec => "json_lines"
}
} "