In NPM would like to create alerts that can trigger email with the results of the hardware sensor status plus IP address of the node device. Usinging alert management there is a built in alert "Alert me when any hardware component goes into a warning or critical state". This will alert the hardware sensors however I am not able to add one additional variable to give the IP address with email message trigger action. Below is what is generated however not able to add a simple ${IP_Address} for ip address info for node.
The ${CategoryName}, ${SensorDisplayName} on ${NodeName} has a current status of <font color="red"> ${SensorOrionStatusDescription}</font color>.
<BR>
<BR>
<Strong>Device Details</Strong>
<table border="1">
<tr>
<td>Manufacturer: </td>
<td>${SQL:Select Manufacturer from APM_HardwareAlertData where NodeId = ${NodeId}}</td>
</tr>
<tr>
<td>Model Number: </td>
<td>${SQL:Select Model from APM_HardwareAlertData where NodeId = ${NodeId}}</td>
</tr>
<td>Serial Number: </td>
<td>${SQL:Select ServiceTag from APM_HardwareAlertData where NodeId = ${NodeId}}</td>
</tr>
</table>
<BR>
For more information click <a href="${APM:HardwareSensorDetailsURL}">here</a>.