Patterns for limitations in the SolarWinds Platform
This topic applies only to the following products:
SolarWinds Observability Self-Hosted
DPAIM — ETS — IPAM — LA — NAM — NCM — NPM — NTA — SAM — SCM — SRM — UDT — VMAN — VNQM
When restricting user access to network areas, you can specify the limitation with patterns using OR
, AND
, EXCEPT
, and NOT
operators with _
and *
as wildcards if the limitation allows pattern matching. See Regular expression pattern matching for details on patterns.
Patterns are not case sensitive.
Examples
-
You may also group operators using parentheses, as in the following example:
(*foo* EXCEPT *b*) AND (*all* OR *sea*)
matchesseafood
andfootfall
, but notfootball
orBigfoot
. -
You can limit user access to a specific Machine Type. The following limitation only allows the user to access devices with MachineType of Linux or Linux-Servers:
Linux*
See Regular expression pattern matching examples for more examples.