convert timeformat not responding with drilldown link tag, as a result drilldown search keep on showing loading. Sample simple xml below
<row>
<panel name="Job Statistics">
<table>
<title>Job Statistics</title>
<search>
<query>index=$index$ host=$host$ eventtype=et_job_timing | eval Time=_time | convert timeformat="%d-%m-%Y:%H:%M:%S" ctime(Time)| table Time, THROUGHPUT | chart values(THROUGHPUT) by Time</query>
</search>
<option name="drilldown">cell</option>
<drilldown>
<link>search?q=search index=$index$ host=$host$ eventtype=et_job_timing| eval Time=_time | convert timeformat="%d-%m-%Y:%H:%M:%S" ctime(Time)| table Time, THROUGHPUT | where Time = "$click.value$"</link>
</drilldown>
</table>
</panel>
</row>
from above simple xml below mentioned search not responding.
search?q=search index=$index$ host=$host$ eventtype=et_job_timing| eval Time=_time | convert timeformat="%d-%m-%Y:%H:%M:%S" ctime(Time)| table Time, THROUGHPUT | where Time = "$click.value$"
kindly guide me on this error.
... View more