Hello! I have a problem with dashboard reports where the verbose mode shows the latest data, while the fast/smart which is somehow the default, shows like 10 minutes old data. I tried a couple of settings and even change my query, but nothing helped. If I restart the splunk, then the data is ok for a couple of minutes, then it will start to show delayed the data. Does anyone can advise what needs to be changed in order to run always in verbose mode? index=MYINDEX
| lookup code_lookup code OUTPUTNEW t_name
| eval code=IF(ISNULL(t_name),code,t_name)
| lookup v_lookup v OUTPUTNEW v_name
| eval v=IF(ISNULL(v_name),v,v_name)
| eval CMinutes = ceil(duration / 60)
| rex field=d_num mode=sed "s/(\d{4,})[0-9#]{4}$/\1####/g"
| rename date as Date-mmddyy, time as Time, tag::cond_code as "CType", c_num as "C Number", d_num as "D Number", duration as "Seconds", CMinutes as "Minutes", code_used as Trunk, vdn as VDN
| table Date-mmddyy, Time, "CType", "Seconds", "CMinutes", "CNumber", "DNumber", T, V
| fields Date-mmddyy, Time, "CType", "Seconds", "CMinutes", "CNumber", "DNumber", T, V
| head 100
| sort -Time Thank you!
... View more