Monitor rates

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
cvken
Posts: 5
Joined: Mon Apr 29, 2013 4:45 pm

Monitor rates

Post by cvken »

I have numeric data in that changes frequently and I need to monitor and see if the values fall below a certain threshold. Currently the data will be curled from a website into a file, but it could be written to a db instead. As part of this I would like to be able to monitor the data over time, so I am looking for a plugin that also allows the graphing that is included in Nagios XI.
I have seen check_rate as well as several log checking plugins that are indicative of what I would like to do, but none seem to be able to capture the actual data I am looking for.
Is this something that I will need to develop or is there a plugin out there that will work do this?
abrist
Red Shirt
Posts: 8334
Joined: Thu Nov 15, 2012 1:20 pm

Re: Monitor rates

Post by abrist »

All the nagios graphing is done from RRDs (round robin databases). These files should be considered "lossy" aggregates averaged over time, loosing granularity the further you travel into the past. If the data you wish to record is still useable for your purposes knowing those restrictions above, then nagios rrd perfdata would be a fine mechanism for historical storage of said data.

You will also most likely need to write a script to pull of what you want. See The Nagios Development Guidelines.
Former Nagios employee
"It is turtles. All. The. Way. Down. . . .and maybe an elephant or two."
VI VI VI - The editor of the Beast!
Come to the Dark Side.
cvken
Posts: 5
Joined: Mon Apr 29, 2013 4:45 pm

Re: Monitor rates

Post by cvken »

Thank you I am building something based off another plugin.
Locked