Reputation: 33
{app="overflow"}|="Checking error 1" OR |="Checking warning 1" OR |="Checking info 1"
I tried this one it was not working. Please let me know what can be tried to have two strings searched up in one query. Thanks.
Upvotes: 2
Views: 3496
Reputation: 22311
Use the following query:
{app="overflow"} |~ "(Checking error 1)|(Checking warning 1)|(Checking info 1)"
Obs: if you have problems, try one of the following options:
{app="overflow"} |~ `(Checking error 1)|(Checking warning 1)|(Checking info 1)`
or
{app="overflow"} |~ "Checking error 1|Checking warning 1|Checking info 1"
Upvotes: 5