We just recently upgraded to NPM12.2, and one of our alerts is no longer displaying correctly. The intent is to send an email to a group with the Node name and the percent memory usage on the node. Our message is configured as follows:
--------------------------------------------------------------------------------------
The Memory on ${NodeName} is currently ${Node.PercentMemoryUsed}
--------------------------------------------------------------------------------------
We want the email to read:
--------------------------------------------------------------------------------------
The Memory on NODE is currently 93 %
--------------------------------------------------------------------------------------
Instead, it reads:
--------------------------------------------------------------------------------------
The Memory on NODE is currently ${Node.PercentMemoryUsed}
--------------------------------------------------------------------------------------
According to this article, Node.PercentMemoryUsed is a valid node property, but maybe I have the syntax wrong.
I am new to Solarwinds and SQL/SWQL, so any help would be greatly appreciated.