docs(apps.plugin): fix prefix/suffix pattern example (#18742)
Ilya Mashchenko committed
Oct 10, 2024 at 11:42 UTC
e5a8ed6cef57bcd3c65f256a6dc2936bd4ab4e2e
1 file changed
+2
-2
src/collectors/apps.plugin/README.md
+2
-2
@@ -137,8 +137,8 @@ You can use asterisks (`*`) to create patterns:
137
138
| Mode | Pattern | Description |
139
|-----------|----------|------------------------------------------|
140
-| prefix | `*name` | Matches a **comm** that begins with name |
141
-| suffix | `name*` | Matches a **comm** that ends with name |
140
+| prefix | `name*` | Matches a **comm** that begins with name |
141
+| suffix | `*name` | Matches a **comm** that ends with name |
142
| substring | `*name*` | Searches for name within the **cmdline** |
143
144
- Asterisks can be placed anywhere within name (e.g., `na*me`) without affecting the matching criteria (**comm** or **cmdline**).