Hi All, I am stuck with 'Waiting for Input' error for one of the panels that I created in Splunk Dashboard. However, the search runs fine in Search app. Reading through other similar questions, it seems related to tokens. Tried rectifying it but no good. Following are the search and XML: Search: | inputlookup xxxxxxx.csv | stats dc(title) as number_of_rule, values(title) as rules by category | map [| inputlookup yyyyyyyy.csv | eval Date=strftime(_time, \"%m/%d/%Y\") | eval month=strftime(_time, \"%m\") | eval current_month=strftime(now(),\"%m\") | where month=current_month-1 | search index=$$category$$ | stats sum(GB) as GB by index | eval GB=round(GB,3) | eval index=\"$$category$$\", number_of_rule=\"$$number_of_rule$$\" | table index, number_of_rule, GB ] XML: { "type": "ds.search", "options": { "query": "| inputlookup xxxxxxx.csv\r\n| stats dc(title) as number_of_rule, values(title) as rules by category\r\n| map [| inputlookup yyyyyyyyy.csv\r\n| eval Date=strftime(_time, \\\"%m/%d/%Y\\\")\r\n| eval month=strftime(_time, \\\"%m\\\")\r\n| eval current_month=strftime(now(),\\\"%m\\\")\r\n| where month=current_month-1\r\n| search index=$$category$$\r\n| stats sum(GB) as GB by index\r\n| eval GB=round(GB,3)\r\n| eval index=\\\"$$category$$\\\", number_of_rule=\\\"$$number_of_rule$$\\\" | table index, number_of_rule, GB\r\n]" }, "name": "Search_8" } Thanks in advance!
... View more