We are trying to alarm based on whether a specific row in a table exists. We are able to use one of the columns to find the specific entry we are interested in but are at a loss as to how to setup the normal/Crit levels.
If the entry exists, status should be normal. If it does not, critical.
How do we go about this?
Hi Nikolas,
In this case I believe there are two possible approaches:
- Add a state column in the table (columnOptions). As mentioned in DataMiner Docs, this option can be used when retrieving SNMP or WMI tables, or tables consisting of retrieved columns. You could enable monitoring on the new state column
- Add a new custom table in the connector that keeps track if the row exists. We have a similar implementation in the 'Linux Platform SSH' connector. In the table 'Process List' we list all the current processes running in a Linux OS. (similar to the Task Manager). There is a extra page button (Process Validation) that we implemented to keep track if a process is still running:
In that page button there is a table 'Process Validation' available to monitor if a process is still running. A user can add a process available in the Process List table and monitor it:
Hope it helps.