Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <source>
  2. type tail
  3. path in.log // hogehoge:fugafugaで入力すると
  4. pos_file in.pos
  5. tag in
  6. format ltsv
  7. </source>
  8.  
  9. <match in>
  10. type copy
  11. // type deep_copy // こっちだと再現しない
  12. <store>
  13. type stdout // {"hogehoge":"fugafuga"}
  14. </store>
  15. <store>
  16. type add
  17. add_tag_prefix debug
  18. <pair>
  19. hoge moge
  20. hogehoge mogemoge
  21. </pair>
  22. </store>
  23. <store>
  24. type stdout // {"hogehoge":"mogemoge","hoge":"moge"}
  25. </store>
  26. </match>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement