Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. input {
  2. file {
  3. type => "service"
  4. path => [ "/data/logs/accounts*.log" ]
  5. tags => [ "service-accounts" ]
  6. }
  7.  
  8. file {
  9. type => "service"
  10. path => [ "/data/logs/payment-instruments*.log" ]
  11. tags => [ "service-payment-instruments" ]
  12. }
  13.  
  14. file {
  15. type => "proxy"
  16. path => [ "/data/logs/access.log", "/data/logs/error.log" ]
  17. }
  18. }
  19.  
  20. output {
  21. stdout {
  22. codec => rubydebug
  23. }
  24.  
  25. elasticsearch {
  26. embedded => true
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement