refactor(savedsearches): move action.lookup to outputlookup
enables on-demand lookup update override_if_empty=false prevents lookup from being overwritten with empty result
This commit is contained in:
parent
716f9a521f
commit
521012f9cd
|
@ -1,70 +1,63 @@
|
|||
[malware-filter Update botnet_ip.csv]
|
||||
action.lookup = 1
|
||||
action.lookup.filename = botnet_ip.csv
|
||||
cron_schedule = */15 * * * *
|
||||
description = Update lookup every 15 minutes from 00:00
|
||||
# https://docs.splunk.com/Documentation/Splunk/9.1.1/SearchReference/Collect#Events_without_timestamps
|
||||
# https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Collect#Events_without_timestamps
|
||||
dispatch.earliest_time = 0
|
||||
enableSched = 0
|
||||
schedule_window = 5
|
||||
search = | getbotnetip
|
||||
search = | getbotnetip\
|
||||
| outputlookup override_if_empty=false botnet_ip.csv
|
||||
|
||||
[malware-filter Update botnet-filter-splunk.csv]
|
||||
action.lookup = 1
|
||||
action.lookup.filename = botnet-filter-splunk.csv
|
||||
cron_schedule = 0 */12 * * *
|
||||
description = Update lookup every 12 hours from 00:00
|
||||
dispatch.earliest_time = 0
|
||||
enableSched = 0
|
||||
schedule_window = 60
|
||||
search = | getbotnetfilter
|
||||
search = | getbotnetfilter\
|
||||
| outputlookup override_if_empty=false botnet-filter-splunk.csv
|
||||
|
||||
[malware-filter Update opendbl_ip.csv]
|
||||
action.lookup = 1
|
||||
action.lookup.filename = opendbl_ip.csv
|
||||
cron_schedule = */15 * * * *
|
||||
description = Update lookup every 15 minutes from 00:00
|
||||
dispatch.earliest_time = 0
|
||||
enableSched = 0
|
||||
schedule_window = 5
|
||||
search = | getopendbl
|
||||
search = | getopendbl\
|
||||
| outputlookup override_if_empty=false opendbl_ip.csv
|
||||
|
||||
[malware-filter Update phishing-filter-splunk.csv]
|
||||
action.lookup = 1
|
||||
action.lookup.filename = phishing-filter-splunk.csv
|
||||
cron_schedule = 0 */12 * * *
|
||||
description = Update lookup every 12 hours from 00:00
|
||||
dispatch.earliest_time = 0
|
||||
enableSched = 0
|
||||
schedule_window = 60
|
||||
search = | getphishingfilter
|
||||
search = | getphishingfilter\
|
||||
| outputlookup override_if_empty=false phishing-filter-splunk.csv
|
||||
|
||||
[malware-filter Update pup-filter-splunk.csv]
|
||||
action.lookup = 1
|
||||
action.lookup.filename = pup-filter-splunk.csv
|
||||
cron_schedule = 0 */12 * * *
|
||||
description = Update lookup every 12 hours from 00:00
|
||||
dispatch.earliest_time = 0
|
||||
enableSched = 0
|
||||
schedule_window = 60
|
||||
search = | getpupfilter
|
||||
search = | getpupfilter\
|
||||
| outputlookup override_if_empty=false pup-filter-splunk.csv
|
||||
|
||||
[malware-filter Update urlhaus-filter-splunk-online.csv]
|
||||
action.lookup = 1
|
||||
action.lookup.filename = urlhaus-filter-splunk-online.csv
|
||||
cron_schedule = 0 */12 * * *
|
||||
description = Update lookup every 12 hours from 00:00
|
||||
dispatch.earliest_time = 0
|
||||
enableSched = 0
|
||||
schedule_window = 60
|
||||
search = | geturlhausfilter
|
||||
search = | geturlhausfilter\
|
||||
| outputlookup override_if_empty=false urlhaus-filter-splunk-online.csv
|
||||
|
||||
[malware-filter Update vn-badsite-filter-splunk.csv]
|
||||
action.lookup = 1
|
||||
action.lookup.filename = vn-badsite-filter-splunk.csv
|
||||
cron_schedule = 0 */12 * * *
|
||||
description = Update lookup every 12 hours from 00:00
|
||||
dispatch.earliest_time = 0
|
||||
enableSched = 0
|
||||
schedule_window = 60
|
||||
search = | getvnbadsitefilter
|
||||
search = | getvnbadsitefilter\
|
||||
| outputlookup override_if_empty=false vn-badsite-filter-splunk.csv
|
||||
|
|
Loading…
Reference in New Issue