0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-28 22:52:30 +00:00

docs(apps.plugin): fix prefix/suffix pattern example ()

This commit is contained in:
Ilya Mashchenko 2024-10-10 11:42:41 +03:00 committed by GitHub
parent 6a04d8461c
commit e5a8ed6cef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -137,8 +137,8 @@ You can use asterisks (`*`) to create patterns:
| Mode | Pattern | Description |
|-----------|----------|------------------------------------------|
| prefix | `*name` | Matches a **comm** that begins with name |
| suffix | `name*` | Matches a **comm** that ends with name |
| prefix | `name*` | Matches a **comm** that begins with name |
| suffix | `*name` | Matches a **comm** that ends with name |
| substring | `*name*` | Searches for name within the **cmdline** |
- Asterisks can be placed anywhere within name (e.g., `na*me`) without affecting the matching criteria (**comm** or **cmdline**).