Takahiro Yamashita
Takahiro Yamashita
This patch is to support MessagePack timestamp extension type. See also https://github.com/fluent/fluent-bit/issues/8641. https://github.com/msgpack/msgpack/blob/master/spec.md#timestamp-extension-type - Use flb_time API to support Msgpack timestamp extension type for flb_log_decoder - Add test code Note:...
This patch is to support config_map for out_lib. ---- Enter `[N/A]` in the box, if an item is not applicable to your change. **Testing** Before we can approve your change;...
This patch is to add pthread_mutex_t to prevent following data race. ``` ================== WARNING: ThreadSanitizer: data race (pid=4506) Read of size 8 at 0x7b9400000010 by thread T1: #0 memcpy ../../../../src/libsanitizer/sanitizer_common/sanitizer_common_interceptors.inc:827...
[#6728 ](https://github.com/fluent/fluent-bit/issues/6728#issuecomment-1404924259) This patch is to fix data races to add two mutex. - flb_ml_stream - flb_ml_stream_group Please reviewing check if fixing issue and can cause dead lock. ---- Enter...
This patch is to - unescape: support '\0' - in_tcp: allow '\0' as a separator I added `strstr_sep` since `strstr(buf, '\0')` always returns buf. `strstr_sep` is to seek '\0' in...
Fixes #8154 This patch is to parse int value as a time value. Example: input: ```json { "msg":"blah" , "time":1699558262 } ``` output: ``` [[1699558262.000000000, {}], {"msg"=>"blah", "container_id"=>"test"}] ``` ----...