mirror of
https://github.com/telekom-security/tpotce.git
synced 2026-02-10 20:44:00 +00:00
Fixes #1866, thank you @regulartim for reporting
This commit is contained in:
parent
fb9a9b09fd
commit
13bf21bb82
2 changed files with 10 additions and 0 deletions
5
docker/elk/logstash/dist/http_output.conf
vendored
5
docker/elk/logstash/dist/http_output.conf
vendored
|
|
@ -598,6 +598,11 @@ filter {
|
||||||
|
|
||||||
# Ipphoney
|
# Ipphoney
|
||||||
if [type] == "Ipphoney" {
|
if [type] == "Ipphoney" {
|
||||||
|
mutate {
|
||||||
|
gsub => [
|
||||||
|
"timestamp", "\+00:00Z$", "+00:00"
|
||||||
|
]
|
||||||
|
}
|
||||||
date {
|
date {
|
||||||
match => [ "timestamp", "ISO8601" ]
|
match => [ "timestamp", "ISO8601" ]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
5
docker/elk/logstash/dist/logstash.conf
vendored
5
docker/elk/logstash/dist/logstash.conf
vendored
|
|
@ -598,6 +598,11 @@ filter {
|
||||||
|
|
||||||
# Ipphoney
|
# Ipphoney
|
||||||
if [type] == "Ipphoney" {
|
if [type] == "Ipphoney" {
|
||||||
|
mutate {
|
||||||
|
gsub => [
|
||||||
|
"timestamp", "\+00:00Z$", "+00:00"
|
||||||
|
]
|
||||||
|
}
|
||||||
date {
|
date {
|
||||||
match => [ "timestamp", "ISO8601" ]
|
match => [ "timestamp", "ISO8601" ]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue