- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am building a search for all index=*
, but I have a large number of hosts. These hosts are grouped together with our naming convention of letters and numbers at the end (ex: PRDOxxx) I have it like this right now:
Currently using:
Index=* Host=*
Picks up everything, but trying to narrow it down, I tried:
Index=* Host=prdo* OR Host=OCC*
Does not pick up anything.
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

As somesoni2 mentioned, the field names are case sensitive, so this is a good guess as to why the search isn't turning up anything.
Was this a resolution?
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

As somesoni2 mentioned, the field names are case sensitive, so this is a good guess as to why the search isn't turning up anything.
Was this a resolution?
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes, It was a case issue.
thank you
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

The field names are case sensitive (values are not case sensitive in the bases earch). So could you try this
index=* host=prdo* OR host=OCC*
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you ...
