1=encoding UTF-8 2 3=head1 NAME 4 5collectd-perl - Documentation of collectd's C<perl plugin> 6 7=head1 SYNOPSIS 8 9 LoadPlugin perl 10 # ... 11 <Plugin perl> 12 IncludeDir "/path/to/perl/plugins" 13 BaseName "Collectd::Plugins" 14 EnableDebugger "" 15 LoadPlugin "FooBar" 16 17 <Plugin FooBar> 18 Foo "Bar" 19 </Plugin> 20 </Plugin> 21 22=head1 DESCRIPTION 23 24The C<perl plugin> embeds a Perl-interpreter into collectd and provides an 25interface to collectd's plugin system. This makes it possible to write plugins 26for collectd in Perl. This is a lot more efficient than executing a 27Perl-script every time you want to read a value with the C<exec plugin> (see 28L<collectd-exec(5)>) and provides a lot more functionality, too. 29 30=head1 CONFIGURATION 31 32=over 4 33 34=item B<LoadPlugin> I<Plugin> 35 36Loads the Perl plugin I<Plugin>. This does basically the same as B<use> would 37do in a Perl program. As a side effect, the first occurrence of this option 38causes the Perl-interpreter to be initialized. 39 40=item B<BaseName> I<Name> 41 42Prepends I<Name>B<::> to all plugin names loaded after this option. This is 43provided for convenience to keep plugin names short. All Perl-based plugins 44provided with the I<collectd> distributions reside in the C<Collectd::Plugins> 45namespace. 46 47=item E<lt>B<Plugin> I<Name>E<gt> block 48 49This block may be used to pass on configuration settings to a Perl plugin. The 50configuration is converted into a config-item data type which is passed to the 51registered configuration callback. See below for details about the config-item 52data type and how to register callbacks. 53 54The I<name> identifies the callback. It is used literally and independent of 55the B<BaseName> setting. 56 57=item B<EnableDebugger> I<Package>[=I<option>,...] 58 59Run collectd under the control of the Perl source debugger. If I<Package> is 60not the empty string, control is passed to the debugging, profiling, or 61tracing module installed as Devel::I<Package>. A comma-separated list of 62options may be specified after the "=" character. Please note that you may not 63leave out the I<Package> option even if you specify B<"">. This is the same as 64using the B<-d:Package> command line option. 65 66See L<perldebug> for detailed documentation about debugging Perl. 67 68This option does not prevent collectd from daemonizing, so you should start 69collectd with the B<-f> command line option. Else you will not be able to use 70the command line driven interface of the debugger. 71 72=item B<IncludeDir> I<Dir> 73 74Adds I<Dir> to the B<@INC> array. This is the same as using the B<-IDir> 75command line option or B<use lib Dir> in the source code. Please note that it 76only has effect on plugins loaded after this option. 77 78=item B<RegisterLegacyFlush> I<true|false> 79 80The C<Perl plugin> used to register one flush callback (called B<"perl">) and 81call all Perl-based flush handlers when this callback was called. Newer versions 82of the plugin wrap the Perl flush handlers and register them directly with the 83daemon I<in addition> to the legacy B<"perl"> callback. This allows to call 84specific Perl flush handlers, but has the downside that flushing I<all> plugins 85now calls the Perl flush handlers twice (once directly and once via the legacy 86callback). Unfortunately, removing the B<"perl"> callback would break backwards 87compatibility. 88 89This option allows you to disable the legacy B<"perl"> flush callback if you care 90about the double call and don't call the B<"perl"> callback in your setup. 91 92=back 93 94=head1 WRITING YOUR OWN PLUGINS 95 96Writing your own plugins is quite simple. collectd manages plugins by means of 97B<dispatch functions> which call the appropriate B<callback functions> 98registered by the plugins. Any plugin basically consists of the implementation 99of these callback functions and initializing code which registers the 100functions with collectd. See the section "EXAMPLES" below for a really basic 101example. The following types of B<callback functions> are known to collectd 102(all of them are optional): 103 104=over 4 105 106=item configuration functions 107 108This type of functions is called during configuration if an appropriate 109B<Plugin> block has been encountered. It is called once for each B<Plugin> 110block which matches the name of the callback as provided with the 111B<plugin_register> method - see below. 112 113=item init functions 114 115This type of functions is called once after loading the module and before any 116calls to the read and write functions. It should be used to initialize the 117internal state of the plugin (e.E<nbsp>g. open sockets, ...). If the return 118value evaluates to B<false>, the plugin will be disabled. 119 120=item read functions 121 122This type of function is used to collect the actual data. It is called once 123per interval (see the B<Interval> configuration option of collectd). Usually 124it will call B<plugin_dispatch_values> to dispatch the values to collectd 125which will pass them on to all registered B<write functions>. If the return 126value evaluates to B<false> the plugin will be skipped for an increasing 127amount of time until it returns B<true> again. 128 129=item write functions 130 131This type of function is used to write the dispatched values. It is called 132once for each call to B<plugin_dispatch_values>. 133 134=item flush functions 135 136This type of function is used to flush internal caches of plugins. It is 137usually triggered by the user only. Any plugin which caches data before 138writing it to disk should provide this kind of callback function. 139 140=item log functions 141 142This type of function is used to pass messages of plugins or the daemon itself 143to the user. 144 145=item notification function 146 147This type of function is used to act upon notifications. In general, a 148notification is a status message that may be associated with a data instance. 149Usually, a notification is generated by the daemon if a configured threshold 150has been exceeded (see the section "THRESHOLD CONFIGURATION" in 151L<collectd.conf(5)> for more details), but any plugin may dispatch 152notifications as well. 153 154=item shutdown functions 155 156This type of function is called once before the daemon shuts down. It should 157be used to clean up the plugin (e.g. close sockets, ...). 158 159=back 160 161Any function (except log functions) may set the B<$@> variable to describe 162errors in more detail. The message will be passed on to the user using 163collectd's logging mechanism. 164 165See the documentation of the B<plugin_register> method in the section 166"METHODS" below for the number and types of arguments passed to each 167B<callback function>. This section also explains how to register B<callback 168functions> with collectd. 169 170To enable a plugin, copy it to a place where Perl can find it (i.E<nbsp>e. a 171directory listed in the B<@INC> array) just as any other Perl plugin and add 172an appropriate B<LoadPlugin> option to the configuration file. After 173restarting collectd you're done. 174 175=head1 DATA TYPES 176 177The following complex types are used to pass values between the Perl plugin 178and collectd: 179 180=over 4 181 182=item Config-Item 183 184A config-item is one structure which keeps the information provided in the 185configuration file. The array of children keeps one entry for each 186configuration option. Each such entry is another config-item structure, which 187may nest further if nested blocks are used. 188 189 { 190 key => key, 191 values => [ val1, val2, ... ], 192 children => [ { ... }, { ... }, ... ] 193 } 194 195=item Data-Set 196 197A data-set is a list of one or more data-sources. Each data-source defines a 198name, type, min- and max-value and the data-set wraps them up into one 199structure. The general layout looks like this: 200 201 [{ 202 name => 'data_source_name', 203 type => DS_TYPE_COUNTER || DS_TYPE_GAUGE || DS_TYPE_DERIVE || DS_TYPE_ABSOLUTE, 204 min => value || undef, 205 max => value || undef 206 }, ...] 207 208=item Value-List 209 210A value-list is one structure which features an array of values and fields to 211identify the values, i.E<nbsp>e. time and host, plugin name and 212plugin-instance as well as a type and type-instance. Since the "type" is not 213included in the value-list but is passed as an extra argument, the general 214layout looks like this: 215 216 { 217 values => [123, 0.5], 218 time => time (), 219 interval => plugin_get_interval (), 220 host => $hostname_g, 221 plugin => 'myplugin', 222 type => 'myplugin', 223 plugin_instance => '', 224 type_instance => '' 225 } 226 227=item Notification 228 229A notification is one structure defining the severity, time and message of the 230status message as well as an identification of a data instance. Also, it 231includes an optional list of user-defined meta information represented as 232(name, value) pairs: 233 234 { 235 severity => NOTIF_FAILURE || NOTIF_WARNING || NOTIF_OKAY, 236 time => time (), 237 message => 'status message', 238 host => $hostname_g, 239 plugin => 'myplugin', 240 type => 'mytype', 241 plugin_instance => '', 242 type_instance => '', 243 meta => [ { name => <name>, value => <value> }, ... ] 244 } 245 246=item Match-Proc 247 248A match-proc is one structure storing the callbacks of a "match" of the filter 249chain infrastructure. The general layout looks like this: 250 251 { 252 create => 'my_create', 253 destroy => 'my_destroy', 254 match => 'my_match' 255 } 256 257=item Target-Proc 258 259A target-proc is one structure storing the callbacks of a "target" of the 260filter chain infrastructure. The general layout looks like this: 261 262 { 263 create => 'my_create', 264 destroy => 'my_destroy', 265 invoke => 'my_invoke' 266 } 267 268=back 269 270=head1 METHODS 271 272The following functions provide the C-interface to Perl-modules. They are 273exported by the ":plugin" export tag (see the section "EXPORTS" below). 274 275=over 4 276 277=item B<plugin_register> (I<type>, I<name>, I<data>) 278 279Registers a callback-function or data-set. 280 281I<type> can be one of: 282 283=over 4 284 285=item TYPE_CONFIG 286 287=item TYPE_INIT 288 289=item TYPE_READ 290 291=item TYPE_WRITE 292 293=item TYPE_FLUSH 294 295=item TYPE_LOG 296 297=item TYPE_NOTIF 298 299=item TYPE_SHUTDOWN 300 301=item TYPE_DATASET 302 303=back 304 305I<name> is the name of the callback-function or the type of the data-set, 306depending on the value of I<type>. (Please note that the type of the data-set 307is the value passed as I<name> here and has nothing to do with the I<type> 308argument which simply tells B<plugin_register> what is being registered.) 309 310The last argument, I<data>, is either a function name or an array-reference. 311If I<type> is B<TYPE_DATASET>, then the I<data> argument must be an 312array-reference which points to an array of hashes. Each hash describes one 313data-set. For the exact layout see B<Data-Set> above. Please note that 314there is a large number of predefined data-sets available in the B<types.db> 315file which are automatically registered with collectd - see L<types.db(5)> for 316a description of the format of this file. 317 318B<Note>: Using B<plugin_register> to register a data-set is deprecated. Add 319the new type to a custom L<types.db(5)> file instead. This functionality might 320be removed in a future version of collectd. 321 322If the I<type> argument is any of the other types (B<TYPE_INIT>, B<TYPE_READ>, 323...) then I<data> is expected to be a function name. If the name is not 324prefixed with the plugin's package name collectd will add it automatically. 325The interface slightly differs from the C interface (which expects a function 326pointer instead) because Perl does not support to share references to 327subroutines between threads. 328 329These functions are called in the various stages of the daemon (see the 330section "WRITING YOUR OWN PLUGINS" above) and are passed the following 331arguments: 332 333=over 4 334 335=item TYPE_CONFIG 336 337The only argument passed is I<config-item>. See above for the layout of this 338data type. 339 340=item TYPE_INIT 341 342=item TYPE_READ 343 344=item TYPE_SHUTDOWN 345 346No arguments are passed. 347 348=item TYPE_WRITE 349 350The arguments passed are I<type>, I<data-set>, and I<value-list>. I<type> is a 351string. For the layout of I<data-set> and I<value-list> see above. 352 353=item TYPE_FLUSH 354 355The arguments passed are I<timeout> and I<identifier>. I<timeout> indicates 356that only data older than I<timeout> seconds is to be flushed. I<identifier> 357specifies which values are to be flushed. 358 359=item TYPE_LOG 360 361The arguments are I<log-level> and I<message>. The log level is small for 362important messages and high for less important messages. The least important 363level is B<LOG_DEBUG>, the most important level is B<LOG_ERR>. In between there 364are (from least to most important): B<LOG_INFO>, B<LOG_NOTICE>, and 365B<LOG_WARNING>. I<message> is simply a string B<without> a newline at the end. 366 367=item TYPE_NOTIF 368 369The only argument passed is I<notification>. See above for the layout of this 370data type. 371 372=back 373 374=item B<plugin_unregister> (I<type>, I<plugin>) 375 376Removes a callback or data-set from collectd's internal list of 377functionsE<nbsp>/ datasets. 378 379=item B<plugin_dispatch_values> (I<value-list>) 380 381Submits a I<value-list> to the daemon. If the data-set identified by 382I<value-list>->{I<type>} 383is found (and the number of values matches the number of data-sources) then the 384type, data-set and value-list is passed to all write-callbacks that are 385registered with the daemon. 386 387=item B<plugin_write> ([B<plugins> => I<...>][, B<datasets> => I<...>], 388B<valuelists> => I<...>) 389 390Calls the write function of the given I<plugins> with the provided I<data 391sets> and I<value lists>. In contrast to B<plugin_dispatch_values>, it does 392not update collectd's internal cache and bypasses the filter mechanism (see 393L<collectd.conf(5)> for details). If the B<plugins> argument has been omitted, 394the values will be dispatched to all registered write plugins. If the 395B<datasets> argument has been omitted, the required data sets are looked up 396according to the C<type> member in the appropriate value list. The value of 397all three arguments may either be a single scalar or a reference to an array. 398If the B<datasets> argument has been specified, the number of data sets has to 399equal the number of specified value lists. 400 401=item B<plugin_flush> ([B<timeout> => I<timeout>][, B<plugins> => I<...>][, 402B<identifiers> => I<...>]) 403 404Flush one or more plugins. I<timeout> and the specified I<identifiers> are 405passed on to the registered flush-callbacks. If omitted, the timeout defaults 406to C<-1>. The identifier defaults to the undefined value. If the B<plugins> 407argument has been specified, only named plugins will be flushed. The value of 408the B<plugins> and B<identifiers> arguments may either be a string or a 409reference to an array of strings. 410 411=item B<plugin_dispatch_notification> (I<notification>) 412 413Submits a I<notification> to the daemon which will then pass it to all 414notification-callbacks that are registered. 415 416=item B<plugin_log> (I<log-level>, I<message>) 417 418Submits a I<message> of level I<log-level> to collectd's logging mechanism. 419The message is passed to all log-callbacks that are registered with collectd. 420 421=item B<ERROR>, B<WARNING>, B<NOTICE>, B<INFO>, B<DEBUG> (I<message>) 422 423Wrappers around B<plugin_log>, using B<LOG_ERR>, B<LOG_WARNING>, 424B<LOG_NOTICE>, B<LOG_INFO> and B<LOG_DEBUG> respectively as I<log-level>. 425 426=item B<plugin_get_interval> () 427 428Returns the interval of the current plugin as a floating point number in 429seconds. This value depends on the interval configured within the 430C<LoadPlugin perl> block or the global interval (see L<collectd.conf(5)> for 431details). 432 433=back 434 435The following function provides the filter chain C-interface to Perl-modules. 436It is exported by the ":filter_chain" export tag (see the section "EXPORTS" 437below). 438 439=over 4 440 441=item B<fc_register> (I<type>, I<name>, I<proc>) 442 443Registers filter chain callbacks with collectd. 444 445I<type> may be any of: 446 447=over 4 448 449=item FC_MATCH 450 451=item FC_TARGET 452 453=back 454 455I<name> is the name of the match or target. By this name, the callbacks are 456identified in the configuration file when specifying a B<Match> or B<Target> 457block (see L<collectd.conf(5)> for details). 458 459I<proc> is a hash reference. The hash includes up to three callbacks: an 460optional constructor (B<create>) and destructor (B<destroy>) and a mandatory 461B<match> or B<invoke> callback. B<match> is called whenever processing an 462appropriate match, while B<invoke> is called whenever processing an 463appropriate target (see the section "FILTER CONFIGURATION" in 464L<collectd.conf(5)> for details). Just like any other callbacks, filter chain 465callbacks are identified by the function name rather than a function pointer 466because Perl does not support to share references to subroutines between 467threads. The following arguments are passed to the callbacks: 468 469=over 4 470 471=item create 472 473The arguments passed are I<config-item> and I<user-data>. See above for the 474layout of the config-item data-type. I<user-data> is a reference to a scalar 475value that may be used to store any information specific to this particular 476instance. The daemon does not care about this information at all. It's for the 477plugin's use only. 478 479=item destroy 480 481The only argument passed is I<user-data> which is a reference to the user data 482initialized in the B<create> callback. This callback may be used to cleanup 483instance-specific information and settings. 484 485=item match, invoke 486 487The arguments passed are I<data-set>, I<value-list>, I<meta> and I<user-data>. 488See above for the layout of the data-set and value-list data-types. I<meta> is 489a pointer to an array of meta information, just like the B<meta> member of the 490notification data-type (see above). I<user-data> is a reference to the user 491data initialized in the B<create> callback. 492 493=back 494 495=back 496 497=head1 GLOBAL VARIABLES 498 499=over 4 500 501=item B<$hostname_g> 502 503As the name suggests this variable keeps the hostname of the system collectd 504is running on. The value might be influenced by the B<Hostname> or 505B<FQDNLookup> configuration options (see L<collectd.conf(5)> for details). 506 507=item B<$interval_g> 508 509This variable keeps the interval in seconds in which the read functions are 510queried (see the B<Interval> configuration option). 511 512B<Note:> This variable should no longer be used in favor of 513C<plugin_get_interval()> (see above). This function takes any plugin-specific 514interval settings into account (see the C<Interval> option of C<LoadPlugin> in 515L<collectd.conf(5)> for details). 516 517=back 518 519Any changes to these variables will be globally visible in collectd. 520 521=head1 EXPORTS 522 523By default no symbols are exported. However, the following export tags are 524available (B<:all> will export all of them): 525 526=over 4 527 528=item B<:plugin> 529 530=over 4 531 532=item B<plugin_register> () 533 534=item B<plugin_unregister> () 535 536=item B<plugin_dispatch_values> () 537 538=item B<plugin_flush> () 539 540=item B<plugin_flush_one> () 541 542=item B<plugin_flush_all> () 543 544=item B<plugin_dispatch_notification> () 545 546=item B<plugin_log> () 547 548=back 549 550=item B<:types> 551 552=over 4 553 554=item B<TYPE_CONFIG> 555 556=item B<TYPE_INIT> 557 558=item B<TYPE_READ> 559 560=item B<TYPE_WRITE> 561 562=item B<TYPE_FLUSH> 563 564=item B<TYPE_SHUTDOWN> 565 566=item B<TYPE_LOG> 567 568=item B<TYPE_DATASET> 569 570=back 571 572=item B<:ds_types> 573 574=over 4 575 576=item B<DS_TYPE_COUNTER> 577 578=item B<DS_TYPE_GAUGE> 579 580=item B<DS_TYPE_DERIVE> 581 582=item B<DS_TYPE_ABSOLUTE> 583 584=back 585 586=item B<:log> 587 588=over 4 589 590=item B<ERROR> () 591 592=item B<WARNING> () 593 594=item B<NOTICE> () 595 596=item B<INFO> () 597 598=item B<DEBUG> () 599 600=item B<LOG_ERR> 601 602=item B<LOG_WARNING> 603 604=item B<LOG_NOTICE> 605 606=item B<LOG_INFO> 607 608=item B<LOG_DEBUG> 609 610=back 611 612=item B<:filter_chain> 613 614=over 4 615 616=item B<fc_register> 617 618=item B<FC_MATCH_NO_MATCH> 619 620=item B<FC_MATCH_MATCHES> 621 622=item B<FC_TARGET_CONTINUE> 623 624=item B<FC_TARGET_STOP> 625 626=item B<FC_TARGET_RETURN> 627 628=back 629 630=item B<:fc_types> 631 632=over 4 633 634=item B<FC_MATCH> 635 636=item B<FC_TARGET> 637 638=back 639 640=item B<:notif> 641 642=over 4 643 644=item B<NOTIF_FAILURE> 645 646=item B<NOTIF_WARNING> 647 648=item B<NOTIF_OKAY> 649 650=back 651 652=item B<:globals> 653 654=over 4 655 656=item B<$hostname_g> 657 658=item B<$interval_g> 659 660=back 661 662=back 663 664=head1 EXAMPLES 665 666Any Perl plugin will start similar to: 667 668 package Collectd::Plugins::FooBar; 669 670 use strict; 671 use warnings; 672 673 use Collectd qw( :all ); 674 675A very simple read function might look like: 676 677 sub foobar_read 678 { 679 my $vl = { plugin => 'foobar', type => 'gauge' }; 680 $vl->{'values'} = [ rand(42) ]; 681 plugin_dispatch_values ($vl); 682 return 1; 683 } 684 685A very simple write function might look like: 686 687 sub foobar_write 688 { 689 my ($type, $ds, $vl) = @_; 690 for (my $i = 0; $i < scalar (@$ds); ++$i) { 691 print "$vl->{'plugin'} ($vl->{'type'}): $vl->{'values'}->[$i]\n"; 692 } 693 return 1; 694 } 695 696A very simple match callback might look like: 697 698 sub foobar_match 699 { 700 my ($ds, $vl, $meta, $user_data) = @_; 701 if (matches($ds, $vl)) { 702 return FC_MATCH_MATCHES; 703 } else { 704 return FC_MATCH_NO_MATCH; 705 } 706 } 707 708To register those functions with collectd: 709 710 plugin_register (TYPE_READ, "foobar", "foobar_read"); 711 plugin_register (TYPE_WRITE, "foobar", "foobar_write"); 712 713 fc_register (FC_MATCH, "foobar", "foobar_match"); 714 715See the section "DATA TYPES" above for a complete documentation of the data 716types used by the read, write and match functions. 717 718=head1 NOTES 719 720=over 4 721 722=item * 723 724Please feel free to send in new plugins to collectd's mailing list at 725E<lt>collectdE<nbsp>atE<nbsp>collectd.orgE<gt> for review and, possibly, 726inclusion in the main distribution. In the latter case, we will take care of 727keeping the plugin up to date and adapting it to new versions of collectd. 728 729Before submitting your plugin, please take a look at 730L<http://collectd.org/dev-info.shtml>. 731 732=back 733 734=head1 CAVEATS 735 736=over 4 737 738=item * 739 740collectd is heavily multi-threaded. Each collectd thread accessing the perl 741plugin will be mapped to a Perl interpreter thread (see L<threads(3perl)>). 742Any such thread will be created and destroyed transparently and on-the-fly. 743 744Hence, any plugin has to be thread-safe if it provides several entry points 745from collectd (i.E<nbsp>e. if it registers more than one callback or if a 746registered callback may be called more than once in parallel). Please note 747that no data is shared between threads by default. You have to use the 748B<threads::shared> module to do so. 749 750=item * 751 752Each function name registered with collectd has to be available before the 753first thread has been created (i.E<nbsp>e. basically at compile time). This 754basically means that hacks (yes, I really consider this to be a hack) like 755C<*foo = \&bar; plugin_register (TYPE_READ, "plugin", "foo");> most likely 756will not work. This is due to the fact that the symbol table is not shared 757across different threads. 758 759=item * 760 761Each plugin is usually only loaded once and kept in memory for performance 762reasons. Therefore, END blocks are only executed once when collectd shuts 763down. You should not rely on END blocks anyway - use B<shutdown functions> 764instead. 765 766=item * 767 768The perl plugin exports the internal API of collectd which is considered 769unstable and subject to change at any time. We try hard to not break backwards 770compatibility in the Perl API during the life cycle of one major release. 771However, this cannot be guaranteed at all times. Watch out for warnings 772dispatched by the perl plugin after upgrades. 773 774=back 775 776=head1 SEE ALSO 777 778L<collectd(1)>, 779L<collectd.conf(5)>, 780L<collectd-exec(5)>, 781L<types.db(5)>, 782L<perl(1)>, 783L<threads(3perl)>, 784L<threads::shared(3perl)>, 785L<perldebug(1)> 786 787=head1 AUTHOR 788 789The C<perl plugin> has been written by Sebastian Harl 790E<lt>shE<nbsp>atE<nbsp>tokkee.orgE<gt>. 791 792This manpage has been written by Florian Forster 793E<lt>octoE<nbsp>atE<nbsp>collectd.orgE<gt> and Sebastian Harl 794E<lt>shE<nbsp>atE<nbsp>tokkee.orgE<gt>. 795 796=cut 797 798