Hi
I use an input text token in.my dashboard in order to retrieve spécifications numériques for a field
It works but i would like the possibility to add >= before the number
Ex: >=200
How todo please?
Hi @jip31,
no, you doubled the field definition.
You have two choices:
<label>logon</label>
<default></default>
<prefix>LastLogonAge>=</prefix>
And after the stats command you can put
| search $logon$
<label>logon</label>
<default></default>
And after the stats command you can put
| search LastLogonAge>=$logon$
Ciao.
Giuseppe
HI @jip31 ,
you have to add a prefix to your text input
<input type="text" token="your_token">
<label>Your Threshold</label>
<default>0</default>
<prefix>your_field>=</prefix>
</input>
Ciao.
Giuseppe
Unfortunately not
Here is my code
<input type="text" token="logon">
<label>logon</label>
<default>•</default>
<prefix>>=</prefix>
</input>
Hi @jip31,
in the prefix, you have to add also the field name:
<prefix>your_field>=</prefix>
Ciao.
Giuseppe
It doesnt works
<prefix>your_field>=</prefix>
<prefix>LastLogon>=</prefix>
<input type="text" token="logon">
<label>logon</label>
<default>•</default>
<prefix>"LastLogonAge">=</prefix>
</input>
And after my stats command i put
Hi @jip31,
no, you doubled the field definition.
You have two choices:
<label>logon</label>
<default></default>
<prefix>LastLogonAge>=</prefix>
And after the stats command you can put
| search $logon$
<label>logon</label>
<default></default>
And after the stats command you can put
| search LastLogonAge>=$logon$
Ciao.
Giuseppe