line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Message::Passing::Collectd; |
2
|
1
|
|
|
1
|
|
1610
|
use strict; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
40
|
|
3
|
1
|
|
|
1
|
|
7
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
62
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $VERSION = '0.006'; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
1; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
=head1 NAME |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
Message::Passing::Collectd - a suite of adaptors between Message::Passing and collectd. |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
=head1 DESCRIPTION |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
This package is a placeholder for adaptors between L and L. |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Please see L for emitting |
18
|
|
|
|
|
|
|
metrics data and |
19
|
|
|
|
|
|
|
L for reading metrics data |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head1 NOTE |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
The adaptors in this plugin are currently experimental, and have only |
24
|
|
|
|
|
|
|
been tested with the L transport. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 AUTHOR |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Tomas Doran (t0m) C<< >> |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 COPYRIGHT & LICENSE |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Copyright 2012 the above author. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Licensed under the same terms a perl itself. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=cut |
37
|
|
|
|
|
|
|
|