Skip to content

Commit

Permalink
Fix the incorrect key of the es parser plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
LQBing committed Nov 3, 2021
1 parent dcdfa8a commit 5ffdf2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (re *Regex) Params(_ plugins.SecretLoader) (*params.KVs, error) {
kvs.Insert("Time_Format", re.TimeFormat)
}
if re.TimeKeep != nil {
kvs.Insert("Time_Format", fmt.Sprint(*re.TimeKeep))
kvs.Insert("Time_Keep", fmt.Sprint(*re.TimeKeep))
}
if re.Types != "" {
kvs.Insert("Types", re.Types)
Expand Down

0 comments on commit 5ffdf2f

Please sign in to comment.