mirror of
https://github.com/AlexMacocian/ServerManagementUtils.git
synced 2026-07-15 15:19:58 +00:00
18 lines
304 B
Plaintext
18 lines
304 B
Plaintext
filter {
|
|
if [type] == "power" {
|
|
dissect {
|
|
mapping => {
|
|
"message" => "%{timestamp} %{system.power.value}"
|
|
}
|
|
}
|
|
|
|
date {
|
|
match => ["timestamp", "ISO8601"]
|
|
target => "@timestamp"
|
|
}
|
|
|
|
mutate {
|
|
convert => { "system.power.value" => "float" }
|
|
}
|
|
}
|
|
} |