I was having a similar issue but none of the dropdowns were showing up. I'm an admin on my server and we have an enterprise license, but I needed to inherit the "mltk_admin" role on the admin role so thank you for pointing me in the right direction.
... View more
Worked for me as well. Splunk 7.3.2 and DB connect version 3.2.0.
Changed that one line:
if isinstance(command, str):
if isinstance(command, basestring):
They need to fix this...
... View more
The area to change the max file size upload is located below:
https://:/en-US/manager/SplunkEnterpriseSecuritySuite/data/inputs/threat_intelligence_manager
... View more
It doesn't look like there is currently a work around. According to the regex in the error, you can only have digits, letters, ".", "-", "_", and "/". This sound to me like its not using regex to find the log group name.
... View more
Can you type out your Timestamp format. It's VERY hard to read.
My guess is that there line break in that field you're trying to extract from.
I also don't see an AM or PM so you shouldn't be using %p at all.
Should be: %m/%d/%Y %k:%M
... View more
Polling should take relatively low resources.
You're poling interval will need to be determined based on how long you can wait before gathering data for investigations.
If the UF's are polling every hour and you need to be able to start gathering data in 30 seconds, then you need to set the polling interval to 30 seconds.
... View more
I want to know if its possible in props.conf to create one stanza for multiple sourcetypes that doesn't use regex.
I want all of my linux logs to check the hostname vs a lookup table that has a plethora of data in it. I need it to check multiple sourcetypes and I don't want to have to copy and paste the stanza over and over.
It seems like it should be simple:
[sourcetype1|sourcetype2|sourcetype3]
LOOKUP-test = lookup_test host OUTPUT ip
... View more