Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. filter {
  2. if [type] == "dstat" {
  3. csv {
  4. columns => [ "rxbytes", "txbytes", "epochtime" ]
  5. convert => {
  6. "rxbytes" => "integer"
  7. "txbytes" => "integer"
  8. }
  9. }
  10. date {
  11. match => [ "epochtime", "UNIX" ]
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement