Hello all! For the life of me, I can't figure this out. By eval commands in the SPL or in Event handlers. Included is a base test dashboard I have been working on. Ultimately, I want the output of multiple result.fieldname to be delimited by a new line rather than a comma into an HTML field. That would also not remove any comma's that could be included in the result. Current result value1,value1,value1 value2,value2,value2 value3,value3,value3 Desired result value1 value1 value1 value2 value2 value2 value3 value3 value3 Test Dashboard <dashboard>
<label>Dashboard token test</label>
<row>
<panel>
<table>
<search>
<done>
<set token="output.field1">$result.field1$</set>
<set token="output.field2">$result.field2$</set>
<set token="output.field3">$result.field3$</set>
</done>
<query>index=* sourcetype=*
| head 40
| stats values(field1) as field1 values(field2) as field2 values(field3) as field3</query>
<earliest>-15m</earliest>
<latest>now</latest>
</search>
<option name="drilldown">none</option>
</table>
</panel>
<panel>
<html>
<pre>
$output.field1$
$output.field2$
$output.field3$
</pre>
</html>
</panel>
</row>
</dashboard> Thank you!
... View more