| Left: | ||
| Right: |
| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # http://docs.fluentd.org/articles/config-file#error-label | |
| 2 <label @ERROR> | |
| 3 <match **> | |
| 4 @type file | |
| 5 append true | |
| 6 compress gzip | |
| 7 flush_at_shutdown | |
| 8 path /var/log/<%= @agent %>/error | |
| 9 time_slice_format %Y%m%d | |
| 10 utc | |
| 11 </match> | |
| 12 </label> | |
| 13 | |
| 14 # http://docs.fluentd.org/articles/config-file#match-order | |
| 15 <match **> | |
| 16 @type file | |
| 17 append true | |
| 18 compress gzip | |
| 19 flush_at_shutdown | |
| 20 path /var/log/<%= @agent %>/unmatched | |
| 21 time_slice_format %Y%m%d | |
| 22 utc | |
| 23 </match> | |
| OLD | NEW |