Skip to content

Instantly share code, notes, and snippets.

@nzvtrk
Forked from pauloconnor/gist:4707710
Created March 31, 2025 00:20
Show Gist options
  • Save nzvtrk/75a607ce345570420d1a745382f268fb to your computer and use it in GitHub Desktop.
Save nzvtrk/75a607ce345570420d1a745382f268fb to your computer and use it in GitHub Desktop.
Logstash Mutate Filter for stripping Linux color codes from log files
# Get rid of color codes
mutate {
gsub => ["message", "\x1B\[([0-9]{1,2}(;[0-9]{1,2})?)?[m|K]", ""]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment