Search found 6 matches

by nititbhatt
Mon Jan 30, 2012 7:43 pm
Forum: Plugin General
Topic: Data not being deleted from poller_output table
Replies: 2
Views: 1849

Data not being deleted from poller_output table

Hi, We have designed a custom plugin using Plugin Architecture 0.8.7h (v3.0). This plugin intercepts the data from poller_output table and stores it into our local database. Normally the poller_output table gets emptied in fractions of milliseconds after each polling cycle. The issue we see is that ...
by nititbhatt
Wed Jan 25, 2012 11:30 am
Forum: Plugin General
Topic: Transporter plugin does not work well with a custom plugin
Replies: 8
Views: 1347

Re: Transporter plugin does not work well with a custom plug

I tried including my plugin first in the plugin array inside config.php followed by Transporter plugin. However, it still did not work. Then I removed all the plugins including mine from the plugin array since they follow the new plugin architecture. Only the transporter plugin uses the old plugin a...
by nititbhatt
Tue Jan 24, 2012 5:03 pm
Forum: Plugin General
Topic: Transporter plugin does not work well with a custom plugin
Replies: 8
Views: 1347

Re: Transporter plugin does not work well with a custom plug

I updated my function to include the returning of argument as you pointed out. However, no luck. I wanted to check one thing. I have the plugins array configured as follows and I am using the latest plugin architecture 3.0 $plugins = array(); $plugins[] = 'kpipoll'; $plugins[] = 'transporter'; $plug...
by nititbhatt
Tue Jan 24, 2012 4:08 pm
Forum: Plugin General
Topic: Transporter plugin does not work well with a custom plugin
Replies: 8
Views: 1347

Re: Transporter plugin does not work well with a custom plug

Thanks for the quick reply again. I updated the transporter setup.php to return $rrd_update_array exactly as you mentioned. However, there is no luck. I do not understand the sequence in which poller_output hook triggers events in different plugins. If I comment the registering of poller_output hook...
by nititbhatt
Tue Jan 24, 2012 3:27 pm
Forum: Plugin General
Topic: Transporter plugin does not work well with a custom plugin
Replies: 8
Views: 1347

Re: Transporter plugin does not work well with a custom plug

Thanks for the reply. I am now returning $rrd_update_array from the function triggered by the poller_output hook. However, the problem is still there. What does the variable $rrd_update_array contain? Also, I would like to share the function which is triggered by the poller_output hook. Any help wil...
by nititbhatt
Tue Jan 24, 2012 5:47 am
Forum: Plugin General
Topic: Transporter plugin does not work well with a custom plugin
Replies: 8
Views: 1347

Transporter plugin does not work well with a custom plugin

Hello, I am using CACTI 0.8.7h along with Plugin Architecture 0.8.7h v3.0 which is the latest. We have installed the latest version of transporter plugin version 0.2 which uses the old plugin architecture. However, transporter plugin works just fine by itself. We have developed a custom plugin that ...