So we have some internal applications that provide metrics via a RESTful api. We would like to expose this data via SNMP. What I am thinking is that at the host level an SNMP wrapper would receive a SNMPGET and then perform a HTTP request for the necessary data, translate to SNMP and reply.

Has anyone done something similar or ever heard of anyone doing something similar. Any existing programs or libraries available?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Most people that want to do scripting or agent extensions fall to Net-SNMP since it has easy(ish)-to-use support for doing just the things you're talking about.

Within Net-SNMP, you can do it with shell scripts or directly embedded perl. (there are some other ways too, but those two links are the best performing and the most popular).

See the "EXTENDING AGENT FUNCTIONALITY" functionality of the snmpd.conf manual page too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.