Hi,
Our text search bar filter works for all panels but one. However, it does load new data initially when booting the dashboard. According to the user which uses this dashboard, it stopped working after one of our Splunk admins added the _time field in the table (I don't feel this is the case). Below is the search query for the panel NOT working with our search bar filter:
sourcetype=cerberus-ftp host=SERVER_NAME (src_ip="" OR user="" OR (file="" AND file_action="")) *
| transaction connection_id
| mvexpand file
| mvexpand file_action
| rex field=file_action mode=sed "s/stored/Uploaded/g"
| rex field=file_action mode=sed "s/sent/Downloaded/g"
| rex field=file_action mode=sed "s/deleted/Deleted/g"
| search file_action=Uploaded
| table _time, file, file_action
| dedup file
Below are the three dashboard panel search queries which ARE working with our search bar filter:
host=SERVER_NAME sourcetype="SOURCE" EventCode!=500 *PRD
| table _time, SourceName, EventCode, file
| eval SourceName = mvindex(SourceName,0)
| lookup workday_sftp_sql_eventcodes EventCode OUTPUT Action
| fields _time, SourceName, file, Action
| sort -_time
| table file
| dedup file
sourcetype=cerberus-ftp host=SERVER_NAME(src_ip="" OR user="" OR (file="" AND file_action="")) *PRD
| transaction connection_id
| mvexpand file
| mvexpand file_action
| rex field=file_action mode=sed "s/stored/Uploaded/g"
| rex field=file_action mode=sed "s/sent/Downloaded/g"
| rex field=file_action mode=sed "s/deleted/Deleted/g"
| table _time, connection_id, user, src_ip, file, file_action
host=SERVER_NAME sourcetype="SOURCE" EventCode!=500 *PRD
| table _time, SourceName, EventCode, file
| eval SourceName = mvindex(SourceName,0)
| lookup workday_sftp_sql_eventcodes EventCode OUTPUT Action
| fields _time, SourceName, file, Action
| sort -_time
Any help with this is greatly appreciated!
Fraser
... View more