Skip to content

Instantly share code, notes, and snippets.

View pauloconnor's full-sized avatar

Paul O'Connor pauloconnor

View GitHub Profile
node.rb:2: syntax error, unexpected '<'
<% @header = ''
^
node.rb:2: syntax error, unexpected '=', expecting $end
<% @header = ''
^
@pauloconnor
pauloconnor / gist:4707710
Last active December 1, 2022 09:33
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]", ""]
}