kubernetes.conf.j2 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <source>
  2. type tail
  3. path /var/lib/docker/containers/*/*-json.log
  4. pos_file /var/log/td-agent/tmp/fluentd-docker.pos
  5. time_format %Y-%m-%dT%H:%M:%S
  6. tag docker.*
  7. format json
  8. read_from_head true
  9. </source>
  10. <match docker.var.lib.docker.containers.*.*.log>
  11. type kubernetes
  12. container_id ${tag_parts[5]}
  13. tag docker.${name}
  14. </match>
  15. <match kubernetes>
  16. type copy
  17. <store>
  18. type forward
  19. send_timeout 60s
  20. recover_wait 10s
  21. heartbeat_interval 1s
  22. phi_threshold 16
  23. hard_timeout 60s
  24. log_level trace
  25. require_ack_response true
  26. heartbeat_type tcp
  27. <server>
  28. name {{groups['oo_first_master'][0]}}
  29. host {{hostvars[groups['oo_first_master'][0]].openshift.common.hostname}}
  30. port 24224
  31. weight 60
  32. </server>
  33. <secondary>
  34. type file
  35. path /var/log/td-agent/forward-failed
  36. </secondary>
  37. </store>
  38. <store>
  39. type file
  40. path /var/log/td-agent/containers.log
  41. time_slice_format %Y%m%d
  42. time_slice_wait 10m
  43. time_format %Y%m%dT%H%M%S%z
  44. compress gzip
  45. utc
  46. </store>
  47. </match>