You can use where to filter the results
"Search String" sourcetype="XX" source="XX" | stats sum(time) as duration by host | where duration >= 100
Or if you wan to keep the smaller results you can set a custom condition in the alert settingss to be
where duration >= 100
You can use where to filter the results
"Search String" sourcetype="XX" source="XX" | stats sum(time) as duration by host | where duration >= 100
Or if you wan to keep the smaller results you can set a custom condition in the alert settingss to be
where duration >= 100
Thanks BobM!