You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mutate{ gsub => ["message", "//", ""] }
This will fail upon config check with the following error. The given configuration is invalid. Reason: Expected one of #, {, ,, ] at line 10, column 32 (byte 159) after filter{ mutate{ gsub => ["message", "\\", "
Workaround is mutate{ gsub => ["message", "[//]{1}", ""] }
The text was updated successfully, but these errors were encountered:
mutate{ gsub => ["message", "//", ""] }
This will fail upon config check with the following error.
The given configuration is invalid. Reason: Expected one of #, {, ,, ] at line 10, column 32 (byte 159) after filter{ mutate{ gsub => ["message", "\\", "
Workaround is
mutate{ gsub => ["message", "[//]{1}", ""] }
The text was updated successfully, but these errors were encountered: