This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Alert Email with Custom Property

I tried:

${SQL:Select "Your Custom Property" from Nodes WHERE NodeID='${NodeID}'}

from custom properties as variables and

${N=SwisEntity;M=CustomProperties.Type}

Alerting with Custom Properties - Trigger Action - Default Email

But neither worked. How can I include the value of a custom property in an alert email?

  • you can select it. Search by the custom property in the top right corner and click on it. It inputs the variable.

  • Namely the variable you declare will change with the name of the custom property, so for example:

    ${N=SwisEntity;M=CustomProperties.Type} will invoke the TYPE custom property.

    ${N=SwisEntity;M=CustomProperties.City} will invoke the CITY custom property.

    So whichever is the name of your custom property you would need to put there so ${N=SwisEntity;M=CustomProperties.<custom property name>} should work.