Lines Matching refs:rrdtool

17       # start up the rrdtool component
20 RRDtool => '/usr/local/bin/rrdtool',
32 $_[KERNEL]->post( 'rrdtool', 'create', @create_args );
34 # stop the rrdtool component
35 $_[KERNEL]->post( 'rrdtool', 'stop' );
59 around the rrdtool command line interface.
65 two optional named parameters alias and rrdtool.
70 RRDTool instance ALWAYS uses the rrdtool alias to reference itself.
71 Events are posted to the rrdtool alias and callbacks are posted to
74 The rrdtool parameter is the name of the RRDTool command line
75 utility. It defaults to /usr/local/bin/rrdtool or the location that
77 the rrdtool parameber to override this default location.
84 [-rrdtool => '/usr/local/bin/rrdtool'],
90 POE::Component::RRDTool events take the same parameters as their rrdtool
91 counterpart. Use the RRDTool manual as a reference for rrdtool command
105 $_[KERNEL]->post( qw( rrdtool create ), @create_args);
108 $_[KERNEL]->post( qw( rrdtool update test.rrd N:1 ) );
119 $_[KERNEL]->post( qw( rrdtool fetch ), $callback, @fetch_args );
134 $_[KERNEL]->post( qw( rrdtool udpate ), $callback, @graph_args );
147 $_[KERNEL]->post( qw( rrdtool info ), $callback, 'test.rrd' );
159 $_[KERNEL]->post( qw( rrdtool xport ), $callback, @xport_args );
164 $_[KERNEL]->post( qw( rrdtool dump ), $callback, 'test.rrd' );
167 $_[KERNEL]->post( qw( rrdtool stop ) );
175 rrd_status - notification of rrdtool runtimes
176 Returns the user, system, and real time of the rrdtool process in
191 rrd_error - rrdtool error notification
192 Returns error messages returned from rrdtool in ARG0.
204 rrd_stopped - rrdtool process stopped
205 This callback provides a hook to do something when the rrdtool
211 print "rrdtool stopped\n";
222 http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/tutorial/rrdtutorial.
226 http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/index.html
229 http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/manual/index.html
232 The rrdtool command line utility does not support the xport subcommand
234 version of rrdtool you will receive an rrdtool usage message as an
238 The rrdtool command line utility is being controlled by POE::Wheel::Run.
240 for the rrdtool output so that each command generates only one event.
245 rrdtool command you may need to increase the blocksize used.