Hello!
As the title states, my dashboard fails to load a panel that performs a search. If I click "Open in search" I see the expected results.
Any idea why?
If I click "open in search" the following is in the search bar:
host=108827 sourcetype=psirt_details matchConfidence="Vulnerable" | eval my_date=strftime(_time,"%B") | dedup my_date psirtColdId deviceId | search | chart count(psirtColdId) over "Description" by my_date usenull=F
<form>
<label>PSIRTS per month by PSIRT description</label>
<search id="parent">
<query>host=$cust$ sourcetype=psirt_details matchConfidence="Vulnerable" | eval my_date=strftime(_time,"%B") | dedup my_date psirtColdId deviceId</query>
</search>
<fieldset submitButton="true" autoRun="true">
<input type="dropdown" token="cust">
<label>Customer</label>
<fieldForLabel>cpyName</fieldForLabel>
<fieldForValue>cpyKey</fieldForValue>
<search>
<query>sourcetype=companies managerUserId=name | dedup cpyKey | fields cpyKey, clusterName, cpyName, npUrl, managerUserId</query>
</search>
</input>
</fieldset>
<row>
<panel>
<title>Top customer PSIRT exposure, as of last 24 hours</title>
<table>
<search>
<query>sourcetype=psirt_details matchConfidence="Vulnerable" cpyKey=$cust$ | top "Description" psirtColdId</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
<sampleRatio>1</sampleRatio>
</search>
<option name="count">20</option>
<option name="dataOverlayMode">none</option>
<option name="drilldown">cell</option>
<option name="percentagesRow">false</option>
<option name="rowNumbers">false</option>
<option name="totalsRow">false</option>
<option name="wrap">true</option>
</table>
</panel>
</row>
<row>
<panel>
<table>
<title>Number of devices impacted by selected PSIRT ID</title>
<search base="parent">
<query>search | chart count(psirtColdId) over "Description" by my_date usenull=F</query>
</search>
<option name="refresh.display">preview</option>
</table>
</panel>
</row>
</form>
... View more