Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Delete top level using bracket style properly
In previous version, following configuration does not work properly: ``` <source> @type dummy dummy [ {"foo.bar": "test1234", "message": "Hello"} ] tag dummy </source> <filter dummy> @type record_transformer remove_keys "$['foo.bar']" </filter> <match dummy> @type stdout </match> ``` This shows like following: ``` 2018-11-27 15:19:18 +0900 [info]: #0 fluentd worker is now running worker=0 2018-11-27 15:19:19.008586045 +0900 dummy: {"foo.bar":"test1234","message":"Hello"} 2018-11-27 15:19:20.009721132 +0900 dummy: {"foo.bar":"test1234","message":"Hello"} 2018-11-27 15:19:21.010784035 +0900 dummy: {"foo.bar":"test1234","message":"Hello"} ``` In this version, it works well. See also #2109 Signed-off-by: Kenji Okimoto <[email protected]>
- Loading branch information