Goofing around with a POC Go -> Logstash setup

This commit is contained in:
2013-07-07 19:48:39 -04:00
parent fa0de5c394
commit 7673a09604
5 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
input {
tcp {
message_format => "json"
port => 55784
type => "fried"
}
}
output {
stdout {
debug => true
debug_format => "json"
}
}