Hi @phanikumarcs , at first, if you want o use the text input only on eventid input, you should modify your search in : <row>
<panel>
<title>EventID-Severity Matrix</title>
<input ty...
See more...
Hi @phanikumarcs , at first, if you want o use the text input only on eventid input, you should modify your search in : <row>
<panel>
<title>EventID-Severity Matrix</title>
<input type="text" token="eventid" searchWhenChanged="true">
<label>Search EventID</label>
<prefix>EventID="</prefix>
<suffix>"</suffix>
</input>
<table>
<search>
<query>
index IN ("foo1", "foo2", "foo3") host IN ("goo1", "goo2", "goo3", "goo4") EventID IN ("1", "1021", "1069") Name=* $eventid$
| fields EventID Name host
| eval Severity=case(
EventID="1", "Information",
EventID="1021", "Warning",
EventID="1069", "Critical",)
| rename Name as Message, host as Server
| table _time, EventID, Server, Message, Severity</query>
<earliest>$time.earliest$</earliest>
<latest>$time.latest$</latest>
</search>
<option name="drilldown">none</option>
<option name="refresh.display">progressbar</option>
</table>
</panel>
</row> otherwise the token will search on the raw text instead on the EventID field. Then is eventid a field present in all the events or only in part of them? if you use * in the text box, you exclude from the results the events without the EventID field. Ciao. Giuseppe