Hello ,
how to search by two different champs ? I try "OR" but not result
Thanks
I'm not sure what you mean by 'champ', but if you mean 'field' or 'conditions':
search index=main my_field=alpha OR my_field=bravo
To write this more verbosely (and not necessary but may help with comprehension) this is the same as:
search (index=main AND (my_field=alpha OR my_field=bravo))
Can you please post the SPL query you used? Your question is a bit unclear...