Advertisement
Guest User

netflow

a guest
May 11th, 2016
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. input {
  2. tcp {
  3. port => 2222
  4. codec => netflow
  5. type => "netflow"
  6. }
  7. udp {
  8. port => 2222
  9. codec => netflow
  10. type => "netflow"
  11. }
  12. }
  13.  
  14. output {
  15. stdout {
  16. codec => rubydebug
  17. }
  18.  
  19. elasticsearch {
  20. hosts => ["localhost:9200"]
  21. index => "logstash_netflow9-%{+YYYY.MM.dd}"
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement