Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ To perform a multi-character wildcard search, use the `*` symbol as follows:
* `web*` matches all log messages starting with `web`.
* `*web` matches all log messages that end with `web`.

**Note**: Wildcards only work as wildcards outside of double quotes. For example, `@ci.pipeline.name:"*test*"` matches a pipeline whose name contains the string `*test*`, whereas `@ci.pipeline.name:*test*` matches a pipeline whose name contains the string `test`.

Wildcard searches work within tags and attributes (faceted or not) with this syntax.

### Search wildcard
Expand Down Expand Up @@ -80,4 +82,4 @@ If your tags don't follow [tags best practices][5] and don't use the `key:value`
[2]: /getting_started/tagging/using_tags
[3]: /infrastructure
[4]: /integrations
[5]: /getting_started/tagging/#define-tags
[5]: /getting_started/tagging/#define-tags
Loading