Hi @AL3Z , @yuanliu's solution should work but I think your field name is "labels" not "Labels". Field names are case sensitive. Please try below; | fillnull labels value=manage
... View more
evt_resolve_ad_obj = 0 will stop SID resolution. You will not able to see usernames in the logs. Please test only use_old_eventlog_api = true
... View more
Hi @Pjyoti, You can use streamstats to count successful downloads by resetting on fail. https://docs.splunk.com/Documentation/Splunk/9.0.3/SearchReference/Streamstats#The_reset_on_change_argument Please try below sample; index=ty_ss
| streamstats count as success_count by http_response reset_after=(http_response=500)
... View more
Hi @taldavita, Splunk does not resolve system variables on server.conf other than $HOSTNAME. That is why you should think of a script to get $HOST_EXTERNAL value and update server.conf.
... View more
Hi @chimbudp, This is just a notice. UF changes the indexer connection every 30 seconds as a default. It selects the next indexer randomly. This log shows that the next selected indexer is the same as the current one, which is why changed with another one which is on the last in the list.
... View more
Hi @cooprco, Please try accessing setup page from Manage Apps page and click Save. Using this method should set the app as configured. You should be able to access dashboards.
... View more
Hi @dionrivera, Splunk Universal Frowarder resolves SID to username for WinEventLog:Security logs by querying the nearest DC. If your DCs are busy, this resolution takes more time and causes delays. If you check the logs they should be coming but are delayed. If this is the case you can try adding below parameter to use old event log API for resolution. [WinEventLog://Security]
use_old_eventlog_api = true
... View more
Hİ @jeremyhagand61, It seems pass4SymmKey is set on your deployment server. Please try adding pass4SymmKey like below server.conf setting on your deployment clients. server.conf
[deployment]
pass4SymmKey = yourpasssymkey
... View more
Hi @Namanthakur, Please confirm your input configuration has pan:log as sourcetype. And be sure Palo Alto Networks Add-on for Splunk is installed where your syslog first hits, if you are using Heavy Forwarder you should install add-on on Heavy Forwarder. That add-on will overwrite sourcetype by looking events contents THREAT, SYSTEM etc.
... View more
Hi @Raymond2T, If your subsearches does not return to many events you can use append like below. Please try below; index=A memberID = 1234567 |eval ID = memberID | head 1
| append [search index=B ID= 1234567 | head 1 ]
| append [search index=C membernum=1234567|eval ID =membernum | head 1]
... View more
Hi @Raymond2T, Are these sub searches totally different? If you can share your searches (anonymized) we can find another way to achieve your goal.
... View more
Hi @SplunkDash, These are drivers provided by IBM, you should be able to download them using IBM id. And yes they will work with Splunk DB Connect.
... View more
Hi @SplunkDash, You can download the supported driver file and copy or move the db2jcc4.jar file to the $SPLUNK_HOME/etc/apps/splunk_app_db_connect/drivers directory, reload the driver under Settings>Drivers. https://docs.splunk.com/Documentation/DBX/3.7.0/DeployDBX/Installdatabasedrivers#IBM_DB2
... View more
Hi @FPERVIL, You can create two csv lookup files like below; legit_hosts.csv (field name is dst_host)
dst_host
google.com
webex.com
*.zoom.us
legit_ips.csv (field name is dst_ip)
dst_ip
1.2.3.4 And use below query; index=* sourcetype=websense* (http_method="POST" OR http_method="PUT" OR http_method="CONNECT") bytes_out>50000000 NOT [| inputlookup legit_hosts.csv ] NOT [|inputlookup legit_ips.csv ] If you need to add/remove legit hostnames or IP addresses you can just update related lookup files.
... View more
Hi @super_edition, Actually because of timechart ... by openshift_cluster you should see different time series for each openshift_cluster. Also there is no sum function. Could you please check and confirm if you used the search as it is? Including by openshift_cluster?
... View more
Hi @ilhwan, You hit 10000 rows limit that @gcusello mentioned if you are using lookups as a subsearch with inputlookup command. This is subsearch results limit. Please use lookup command for searching inside lookup, lookup command has no limit.
... View more