Commit ab695532 authored by JooHan Hong's avatar JooHan Hong

logstash, grok disks_modify

parent b29a52db
Pipeline #5286 passed with stages
in 46 seconds
...@@ -148,13 +148,13 @@ filter { ...@@ -148,13 +148,13 @@ filter {
} }
grok { grok {
match => ["message", "Error updating SMART data: Error sending ATA command CHECK"] add_tag => [ "HDD_SMART_CHECK_ERROR" ]
add_tag => "HDD_SMART_CHECK_ERROR" match => { "message" => "Error updating SMART data: Error sending ATA command CHECK" }
} }
grok { grok {
match => ["message", "Buffer I/O error"] add_tag => [ "DISK_ERROR" ]
add_tag => "DISK_ERROR" match => { "message" => "Buffer I/O error" }
} }
mutate { mutate {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment