fix(parsers.grok): Use UTC as the default timezone (#13526)

This commit is contained in:
Joshua Powers 2023-06-30 11:20:48 -06:00 committed by GitHub
parent 590e4e5bc7
commit 657eca5cf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ func (p *Parser) Init() error {
}
if p.Timezone == "" {
p.Timezone = "Canada/Eastern"
p.Timezone = "UTC"
}
return p.Compile()