|
Hi, I made a simple form search like showed in the Splunk documentation (http://docs.splunk.com/Documentation/Splunk/latest/Developer/Step1CreateAForm). Is it possible to fetch the results from this search and render it without using the <row> element?
For example, is it possible to do something like
<form>
<label>Lookup IP/MAC Addresses</label>
<searchtemplate>
sourcetype="DHCP_Log" AND src_ip = $src_ip$ AND src_mac != '' | sort -_time | head 1 | fields src_ip,src_mac
</searchtemplate>
<fieldset>
<input type="text" token="src_ip">
<label>IP Address</label>
<default></default>
<seed></seed>
<suffix>*</suffix>
</input>
</fieldset>
<row>
<option name="showPager">false</option>
<option name="count">1</option>
Thanks! Regards, Stefan |
|
Not to my knowledge, but what you can do is
|
|
Thanks for your reply. At then end I used Sideview Utils to extract the results.
</view>
|