fluent.conf.j2 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. ## matches
  45. @include configs.d/openshift/output-pre-*.conf
  46. @include configs.d/openshift/output-operations.conf
  47. @include configs.d/openshift/output-applications.conf
  48. # no post - applications.conf matches everything left
  49. ##
  50. {% else %}
  51. <match **>
  52. @type secure_forward
  53. self_hostname ${HOSTNAME}
  54. shared_key {{openshift_logging_fluentd_shared_key}}
  55. secure {{openshift_logging_fluentd_aggregating_secure}}
  56. enable_strict_verification {{openshift_logging_fluentd_aggregating_strict}}
  57. ca_cert_path {{openshift_logging_fluentd_aggregating_cert_path}}
  58. ca_private_key_path {{openshift_logging_fluentd_aggregating_key_path}}
  59. ca_private_key_passphrase {{openshift_logging_fluentd_aggregating_passphrase}}
  60. <server>
  61. host {{openshift_logging_fluentd_aggregating_host}}
  62. port {{openshift_logging_fluentd_aggregating_port}}
  63. </server>
  64. </match>
  65. {% endif %}
  66. </label>