ipMonitor 6.1
Submitting a Query
< BackIndexNext >



The first step in managing a large number of monitors with the Query feature is performing a query to select a temporary group of monitors. After the query defines the selection set, actions can be applied to the monitors in the query set.

Wildcards and specific strings are supported to help specify the common characteristics in fields such as:

  • Name
  • Type
  • Address (server domain name/IP)
  • Port
  • Comment (custom data)
Some Boolean fields exist. The field value for these will always be either 1 or 0.

When creating a query, a string within quotations is most specific because the given string must match the field value completely. The following query:

Pattern: "mail"
Group: Global (All Monitors)
Fields: Name
Will have the following result (monitor names are listed):
mail (match)
mail.server.one (no match)
numail.2 (no match)
mailserver.two (no match)
A string within asterisks (*) is the least specific because the given string can appear in any part of the field value. The following query:
Pattern: *mail*
Group: Global (All Monitors)
Fields: Name
Will have the following result (monitor names are listed):
mail (match)
mail.server.one (match)
numail.2 (match)
mailserver.two (match)
A string without either will match any field value that contains the full string ending by punctuation or spaces. The following query:
Pattern: mail
Group: Global (All Monitors)
Fields: Name
Will have the following result (monitor names are listed):
mail (match)
mail.server.one (match)
numail.2 (no match)
mailserver.two (no match)
Popular uses:

To select and entire Class C network (provided the "Address" field only contains IP addresses):

Pattern: 10.10.10.*
Group: Global (All Monitors)
Fields: Address
To select all the suspended monitors in the "web2" group:
Pattern: 1
Group: web2
Fields: Suspended