Does Apigee Support SNMP alerting to external systems like HP OpenView for runtime traffic faults using extensions ?

Looking for some API runtime traffic faults alerting on top of Apigee Edge runtime which will integrate with external systems like HP OpenView ? Can this be implemented in Apigee Edge ?

~~ Q : Source : Slack ~~

Solved Solved
1 4 736
1 ACCEPTED SOLUTION

@Anil Sagar By default Apigee does not support SNMP based alerting. You can enable this by implementing the agent as a node.js proxy within Edge. You can use any open source npm SNMP module (e.g. http://joyent.github.io/node-snmpjs/) for this. In an exception/error scenario, you invoke this node.js proxy via proxy-chaining or service-callout to trigger an alert.

View solution in original post

4 REPLIES 4

@Anil Sagar By default Apigee does not support SNMP based alerting. You can enable this by implementing the agent as a node.js proxy within Edge. You can use any open source npm SNMP module (e.g. http://joyent.github.io/node-snmpjs/) for this. In an exception/error scenario, you invoke this node.js proxy via proxy-chaining or service-callout to trigger an alert.

Thanks @sudheendra1 , It's helpful.

@sudheendra1 , Same question came across while discussing with a customer, this answer is helpful. Thank you Again.

Bumping this up again. we were heading in the direction of converting JMX alerts to SNMP traps using this: http://snmpadaptor4j.sourceforge.net/, but the above looks to be a more elegant solution. Is there a sample code we can refer to, since most of the team is new to SNMP ?

@sudheendra1 , @Anil Sagar