Files
quorum-test-network/logstash/pipeline/20_logstash.conf
2026-02-09 21:51:48 -08:00

12 lines
155 B
Plaintext

filter {
if [service_name] == "logstash" {
json {
source => "message"
}
date {
match => [ "timeMillis", "UNIX_MS" ]
}
}
}