Code

Merge remote-tracking branch 'github/pr/2012' into collectd-5.6
[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.
11 =encoding UTF-8
13 =head1 NAME
15 collectd-lua - Documentation of collectd's C<Lua plugin>
17 =head1 SYNOPSIS
19   LoadPlugin lua
20   # ...
21   <Plugin lua>
22     BasePath "/path/to/your/lua/scripts"
23     Script "script1.lua"
24     Script "script2.lua"
25   </Plugin>
27 =head1 DESCRIPTION
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.
35 The minimum required Lua version is I<5.1>.
37 =head1 CONFIGURATION
39 =over 4
41 =item B<LoadPlugin> I<Lua>
43 Loads the Lua plugin.
45 =item B<BasePath> I<Name>
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>.
50 =item B<Script> I<Name>
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.
55 =back
57 =head1 WRITING YOUR OWN PLUGINS
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):
67 =over 4
69 =item read functions
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.
78 =item write functions
80 These are used to write the dispatched values. They are called
81 once for every value that was dispatched by any plugin.
83 =back
85 =head1 FUNCTIONS
87 The following functions are provided to Lua modules:
89 =over 4
91 =item register_read(callback)
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.
97 =item register_write
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.
104 =item log_error, log_warning, log_notice, log_info, log_debug(I<message>)
106 Log a message with the specified severity.
108 =back
110 =head1 EXAMPLES
112 =over 4
114 A very simple read function might look like:
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
128 A very simple write function might look like:
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
137 To register those functions with collectd:
139   collectd.register_read(read)
140   collectd.register_write(write)
142 =back
144 =head1 SEE ALSO
146 L<collectd(1)>,
147 L<collectd.conf(5)>,
148 L<lua(1)>,
150 =head1 AUTHOR
152 The C<Lua plugin> has been written by
153 Julien Ammous E<lt>j.ammous<nbsp>atE<nbsp>gmail.comE<gt>,
154 Florian Forster E<lt>octoE<nbsp>atE<nbsp>collectd.orgE<gt> and
155 Ruben Kerkhof E<lt>ruben<nbsp>atE<nbsp>rubenkerkhof.com<gt> and
157 This manpage has been written by Ruben Kerkhof
158 E<lt>ruben<nbsp>atE<nbsp>rubenkerkhof.com<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>.
163 =cut