Thiago Padilha
Thiago Padilha
I've sent a cmetrics pull request to https://github.com/calyptia/cmetrics/pull/127, just ran a test parsing your attached example and confirmed it works.
Fixed o latest cmetrics https://github.com/calyptia/cmetrics/pull/138/files
@lukasmrtvy 1.9.8 doesn't have this, please try on next release
> It's up to @edsiper, I personally think that the footprint of the PR without the luajit2 addition would be much more manageable, especially since I think that at the...
@edsiper The changes are well documented at https://github.com/openresty/luajit2 and are mainly new added APIs and some internal changes related to string hashing. Doesn't seem anything in openresty's version is backwards...
@sumitd2 have you tested building fluent-bit on PPC64LE without filter_lua enabled? If fluent-bit compiles, then you should be able to enable filter_lua by simply disabling the JIT at build time...
> @tarruda I used **cmake -DFLB_WASM=Off -DFLB_LUAJIT=Off -DLUAJIT_DISABLE_JIT=On -DFLB_TESTS_RUNTIME=On -DFLB_TESTS_INTERNAL=On ..** It compiled fine and the filter_lua test was enabled, though it failed. Have removed luajit2 from the PR. Let...
@sumitd2 try applying this patch to fluent-bit: ```diff diff --git a/build/.empty b/build/.empty deleted file mode 100644 index e69de29bb..000000000 diff --git a/cmake/luajit.cmake b/cmake/luajit.cmake index 29ccd0d3d..8a6a313f8 100644 --- a/cmake/luajit.cmake +++ b/cmake/luajit.cmake @@...
@sumitd2 I assumed disabling JIT would be enough to make LuaJIT compile on any arch supported by the C compiler, not sure what can be done in this case then
This can be easily accomplished with a Lua filter: ```lua local buffer = { stdout = { text = {} }, stderr = { text = {} } } function...