diff --git a/README.md b/README.md index 830d435..7ce982f 100644 --- a/README.md +++ b/README.md @@ -46,14 +46,14 @@ include '::fluentd' } } ``` -**results in:** +**creates:** ``` /etc/td-agent/conf.d/10-source-test.conf - type tail - format json - path /var/log/test-application/*.json - tag application.test + type tail + format json + path /var/log/test-application/*.json + tag application.test ``` #### Filter @@ -69,14 +69,14 @@ include '::fluentd' } } ``` -**results in:** +**creates:** ``` /etc/td-agent/conf.d/20-filter-test.conf - type record_transformer - - hostname ${hostname} - + type record_transformer + + hostname ${hostname} + ``` #### Match @@ -97,19 +97,19 @@ include '::fluentd' } } ``` -**results in:** +**creates:** ``` /etc/td-agent/conf.d/30-match-test.conf - flush_interval 30s - type secure_forward - secure yes - shared_key my_shared_key - self_hostname instance.test.com - ca_cert_path /path/to/ca.cert - - host test.server.com - + flush_interval 30s + type secure_forward + secure yes + shared_key my_shared_key + self_hostname instance.test.com + ca_cert_path /path/to/ca.cert + + host test.server.com + ```