Skip to content

Instantly share code, notes, and snippets.

View nzvtrk's full-sized avatar
💭
fine

Artur K nzvtrk

💭
fine
View GitHub Profile
@nzvtrk
nzvtrk / gist:75a607ce345570420d1a745382f268fb
Created March 31, 2025 00:20 — forked from pauloconnor/gist:4707710
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]", ""]
}