How can I get the url=field1 to have the value I decide to enter in the input field1.
<label>Search by URL Test</label>
<fieldset submitButton="true">
<input type="text" token="field1">
<label>field1</label>
</input>
<input type="time" token="field2">
<label></label>
<default>
<earliest>-24h@h</earliest>
<latest>now</latest>
</default>
</input>
</fieldset>
<row>
<panel>
<event>
<title>Search for URL</title>
<search>
<query>index=pa_fw sourcetype=pan:*:wcf AND url="field1" | stats count by _time, url, action, src_zone, src_ip, dest_zone, dest_ip, app</query>
<earliest>$field2.earliest$</earliest>
<latest>$field2.latest$</latest>
</search>
<option name="list.drilldown">none</option>
</event>
</panel>
</row>
</form>
Change url="field1"
in your search with url="$field1$"
.