fluent.conf.j2 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # This file is the fluentd configuration entrypoint. Edit with care.
  2. @include configs.d/openshift/system.conf
  3. # In each section below, pre- and post- includes don't include anything initially;
  4. # they exist to enable future additions to openshift conf as needed.
  5. ## sources
  6. {% if deploy_type in ['hosted', 'secure-aggregator'] %}
  7. ## ordered so that syslog always runs last...
  8. @include configs.d/openshift/input-pre-*.conf
  9. @include configs.d/dynamic/input-docker-*.conf
  10. @include configs.d/dynamic/input-syslog-*.conf
  11. @include configs.d/openshift/input-post-*.conf
  12. ##
  13. {% else %}
  14. <source>
  15. @type secure_forward
  16. @label @INGRESS
  17. self_hostname ${HOSTNAME}
  18. bind 0.0.0.0
  19. port {{openshift_logging_fluentd_aggregating_port}}
  20. shared_key {{openshift_logging_fluentd_shared_key}}
  21. secure {{openshift_logging_fluentd_aggregating_secure}}
  22. enable_strict_verification {{openshift_logging_fluentd_aggregating_strict}}
  23. ca_cert_path {{openshift_logging_fluentd_aggregating_cert_path}}
  24. ca_private_key_path {{openshift_logging_fluentd_aggregating_key_path}}
  25. ca_private_key_passphrase {{openshift_logging_fluentd_aggregating_passphrase}}
  26. <client>
  27. host {{openshift_logging_fluentd_aggregating_host}}
  28. </client>
  29. </source>
  30. {% endif %}
  31. <label @INGRESS>
  32. {% if deploy_type in ['hosted', 'secure-host'] %}
  33. ## filters
  34. @include configs.d/openshift/filter-pre-*.conf
  35. @include configs.d/openshift/filter-retag-journal.conf
  36. @include configs.d/openshift/filter-k8s-meta.conf
  37. @include configs.d/openshift/filter-kibana-transform.conf
  38. @include configs.d/openshift/filter-k8s-flatten-hash.conf
  39. @include configs.d/openshift/filter-k8s-record-transform.conf
  40. @include configs.d/openshift/filter-syslog-record-transform.conf
  41. @include configs.d/openshift/filter-viaq-data-model.conf
  42. @include configs.d/openshift/filter-post-*.conf
  43. ##
  44. </label>
  45. <label @OUTPUT>
  46. ## matches
  47. @include configs.d/openshift/output-pre-*.conf
  48. @include configs.d/openshift/output-operations.conf
  49. @include configs.d/openshift/output-applications.conf
  50. # no post - applications.conf matches everything left
  51. ##
  52. {% else %}
  53. <match **>
  54. @type secure_forward
  55. self_hostname ${HOSTNAME}
  56. shared_key {{openshift_logging_fluentd_shared_key}}
  57. secure {{openshift_logging_fluentd_aggregating_secure}}
  58. enable_strict_verification {{openshift_logging_fluentd_aggregating_strict}}
  59. ca_cert_path {{openshift_logging_fluentd_aggregating_cert_path}}
  60. ca_private_key_path {{openshift_logging_fluentd_aggregating_key_path}}
  61. ca_private_key_passphrase {{openshift_logging_fluentd_aggregating_passphrase}}
  62. <server>
  63. host {{openshift_logging_fluentd_aggregating_host}}
  64. port {{openshift_logging_fluentd_aggregating_port}}
  65. </server>
  66. </match>
  67. {% endif %}
  68. </label>