Where
This child tag of query allows us to define the exact conditions of the query that we want to run against the collection of events stored by a previous recorder.
Children Tags
(false | true | not | and | eq | gt | lt | neq | or | within | similar | match | isset)
Usage Examples
Example #1
<query event="hc.*" property="obj1" type="txt" uri="storage://OUTPUT/perf.db">
   
<where>
      
<eq field="myfield" value="myvalue" />
   
</where>
</query>
Example #2
<query event="hc.*" property="obj1" type="txt" uri="storage://OUTPUT/perf.db">
   
<where>
      
<and>
         
<eq field="field1" value="somevalue" />
         
<neq field="field2" value="othervalue" />
      
</and>
   
</where>
</query>