12 lines
155 B
Plaintext
12 lines
155 B
Plaintext
filter {
|
|
if [service_name] == "logstash" {
|
|
json {
|
|
source => "message"
|
|
}
|
|
|
|
date {
|
|
match => [ "timeMillis", "UNIX_MS" ]
|
|
}
|
|
}
|
|
}
|