Skip to content

Commit

Permalink
default to tunnel lookup enabled for now
Browse files Browse the repository at this point in the history
  • Loading branch information
jertel committed Feb 12, 2024
1 parent c5bf963 commit 2f0154f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/modules/elastic/elastic.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (elastic *Elastic) Init(cfg module.ModuleConfig) error {
intervals := module.GetIntDefault(cfg, "intervals", DEFAULT_INTERVALS)
maxLogLength := module.GetIntDefault(cfg, "maxLogLength", DEFAULT_MAX_LOG_LENGTH)
casesEnabled := module.GetBoolDefault(cfg, "casesEnabled", true)
lookupTunnelParent := module.GetBoolDefault(cfg, "lookupTunnelParent", false)
lookupTunnelParent := module.GetBoolDefault(cfg, "lookupTunnelParent", true)
err := elastic.store.Init(host, remoteHosts, username, password, verifyCert, timeShiftMs, defaultDurationMs,
esSearchOffsetMs, timeoutMs, cacheMs, index, asyncThreshold, intervals, maxLogLength, lookupTunnelParent)
if err == nil && elastic.server != nil {
Expand Down

0 comments on commit 2f0154f

Please sign in to comment.