fix(parsers.grok): Use UTC as the default timezone (#13526)
This commit is contained in:
parent
590e4e5bc7
commit
657eca5cf0
|
|
@ -585,7 +585,7 @@ func (p *Parser) Init() error {
|
||||||
}
|
}
|
||||||
|
|
||||||
if p.Timezone == "" {
|
if p.Timezone == "" {
|
||||||
p.Timezone = "Canada/Eastern"
|
p.Timezone = "UTC"
|
||||||
}
|
}
|
||||||
|
|
||||||
return p.Compile()
|
return p.Compile()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue