Last active
March 31, 2025 00:21
-
-
Save pauloconnor/4707710 to your computer and use it in GitHub Desktop.
Logstash Mutate Filter for stripping Linux color codes from log files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Get rid of color codes | |
mutate { | |
gsub => ["message", "\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]", ""] | |
} |
Thanks!
really usefull thanks
Thanks
Also removed @ from @message for compatibility with newer logstash versions. Otherwise, works perfectly. Thanks!
This also strips text in between
EDIT: turns out to be my bad. :) This works fine!
I've been looking for this for hours, thanks!
Thanks!
As mentioned in previous comments, I had to remove the @
to get it working on Logstash 6.4.2.
How does this work though ?
How does this work though ?
Well it literally removes ANSI color codes from the message
field with gsub.
works like a charm.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FYI to get this to work I needed to pull out the
@
but thanks!