Merge pull request #2874 from elfiesmelfie/feat_virt_block_info
[collectd.git] / src / collectd-lua.pod
1 # Permission is hereby granted, free of charge, to any person obtaining a
2 # copy of this software and associated documentation files (the "Software"),
3 # to deal in the Software without restriction, including without limitation
4 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
5 # and/or sell copies of the Software, and to permit persons to whom the
6 # Software is furnished to do so, subject to the following conditions:
7 #
8 # The above copyright notice and this permission notice shall be included in
9 # all copies or substantial portions of the Software.
10
11 =encoding UTF-8
12
13 =head1 NAME
14
15 collectd-lua - Documentation of collectd's C<Lua plugin>
16
17 =head1 SYNOPSIS
18
19   LoadPlugin lua
20   # ...
21   <Plugin lua>
22     BasePath "/path/to/your/lua/scripts"
23     Script "script1.lua"
24     Script "script2.lua"
25   </Plugin>
26
27 =head1 DESCRIPTION
28
29 The C<Lua plugin> embeds a Lua interpreter into collectd and provides an
30 interface to collectd's plugin system. This makes it possible to write plugins
31 for collectd in Lua. This is a lot more efficient than executing a
32 Lua script every time you want to read a value with the C<exec plugin> (see
33 L<collectd-exec(5)>) and provides a lot more functionality, too.
34
35 The minimum required Lua version is I<5.1>.
36
37 =head1 CONFIGURATION
38
39 =over 4
40
41 =item B<LoadPlugin> I<Lua>
42
43 Loads the Lua plugin.
44
45 =item B<BasePath> I<Name>
46
47 The directory the C<Lua plugin> looks in to find script B<Script>.
48 If set, this is also prepended to B<package.path>.
49
50 =item B<Script> I<Name>
51
52 The script the C<Lua plugin> is going to run.
53 If B<BasePath> is not specified, this needs to be an absolute path.
54
55 =back
56
57 =head1 WRITING YOUR OWN PLUGINS
58
59 Writing your own plugins is quite simple. collectd manages plugins by means of
60 B<dispatch functions> which call the appropriate B<callback functions>
61 registered by the plugins. Any plugin basically consists of the implementation
62 of these callback functions and initializing code which registers the
63 functions with collectd. See the section "EXAMPLES" below for a really basic
64 example. The following types of B<callback functions> are implemented in the
65 Lua plugin (all of them are optional):
66
67 =over 4
68
69 =item read functions
70
71 These are used to collect the actual data. It is called once
72 per interval (see the B<Interval> configuration option of collectd). Usually
73 it will call B<collectd.dispatch_values> to dispatch the values to collectd
74 which will pass them on to all registered B<write functions>. If this function
75 does not return 0 the plugin will be skipped for an increasing
76 amount of time until it returns normally again.
77
78 =item write functions
79
80 These are used to write the dispatched values. They are called
81 once for every value that was dispatched by any plugin.
82
83 =back
84
85 =head1 FUNCTIONS
86
87 The following functions are provided to Lua modules:
88
89 =over 4
90
91 =item register_read(callback)
92
93 The callback will be called without arguments.
94 If this callback function does not return 0 the next call will be delayed by
95 an increasing interval.
96
97 =item register_write
98
99 The callback function will be called with one argument passed, which will be a
100 table of values.
101 If this callback function does not return 0 next call will be delayed by
102 an increasing interval.
103
104 =item log_error, log_warning, log_notice, log_info, log_debug(I<message>)
105
106 Log a message with the specified severity.
107
108 =back
109
110 =head1 EXAMPLES
111
112 =over 4
113
114 A very simple read function might look like:
115
116   function read()
117     collectd.log_info("read function called")
118     t = {
119         host = 'localhost',
120         plugin = 'myplugin',
121         type = 'counter',
122         values = {42},
123     }
124     collectd.dispatch_values(t)
125     return 0
126   end
127
128 A very simple write function might look like:
129
130   function write(vl)
131     for i = 1, #vl.values do
132       collectd.log_info(vl.host .. '.' .. vl.plugin .. '.' .. vl.type .. ' ' .. vl.values[i])
133     end
134     return 0
135   end
136
137 To register those functions with collectd:
138
139   collectd.register_read(read)
140   collectd.register_write(write)
141
142 =back
143
144 =head1 SEE ALSO
145
146 L<collectd(1)>,
147 L<collectd.conf(5)>,
148 L<lua(1)>,
149
150 =head1 AUTHOR
151
152 The C<Lua plugin> has been written by
153 Julien Ammous E<lt>j.ammousE<nbsp>atE<nbsp>gmail.comE<gt>,
154 Florian Forster E<lt>octoE<nbsp>atE<nbsp>collectd.orgE<gt> and
155 Ruben Kerkhof E<lt>rubenE<nbsp>atE<nbsp>rubenkerkhof.comE<gt>.
156
157 This manpage has been written by Ruben Kerkhof
158 E<lt>rubenE<nbsp>atE<nbsp>rubenkerkhof.comE<gt>.
159 It is based on the L<collectd-perl(5)> manual page by
160 Florian Forster E<lt>octoE<nbsp>atE<nbsp>collectd.orgE<gt> and
161 Sebastian Harl E<lt>shE<nbsp>atE<nbsp>tokkee.orgE<gt>.
162
163 =cut