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.

multiplication function does not work in trigger action

I have multiplication in my swql statement. When I include swql statement in snmp trap trigger action, the statement does not executes. the trap has statement string instead of value.

Here is what my trigger action looks like

${N=SWQL;M=SELECT ((a.InErrorsThisHour  / a.InBandwidth ) * 100 ) from Orion.NPM.Interfaces a}

when executed I see following value in the trap: ${N=SWQL;M=SELECT ((a.InErrorsThisHour  / a.InBandwidth ) * 100  ) from Orion.NPM.Interfaces a.}

instead of actual value. If I am to modify statement like this:

${N=SWQL;M=SELECT a.InErrorsThisHour, a.InBandwidth from Orion.NPM.Interfaces a}  the snmp trap has actual values for both variables

Has any one seen this issue with trigger action and how was it resolved?