summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7734677)
raw | patch | inline | side by side (parent: 7734677)
author | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 22 Feb 2009 22:18:58 +0000 (23:18 +0100) | ||
committer | Florian Forster <octo@leeloo.lan.home.verplant.org> | |
Sun, 22 Feb 2009 22:18:58 +0000 (23:18 +0100) |
src/collectd.conf.pod | patch | blob | history |
diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
index 48b75bc82f9cfa6a32e263c950dc108bbd67c915..e894628783455d177ab19ece2d3a096bf238440c 100644 (file)
--- a/src/collectd.conf.pod
+++ b/src/collectd.conf.pod
=head2 Plugin C<java>
+The I<Java> plugin makes it possible to write extensions for collectd in Java.
+This section only discusses the syntax and semantic of the configuration
+options. For more in-depth information on the I<Java> plugin, please read
+L<collectd-java(5)>.
+
Synopsis:
<Plugin "java">
=item B<LoadPlugin> I<JavaClass>
-Instantiates a new I<JavaClass> object. The following methods of this class are
-used when available:
-
-=over 4
-
-=item *
-
-public int B<Config> (org.collectd.api.OConfigItem ci)
-
-=item *
-
-public int B<Init> ()
+Instantiates a new I<JavaClass> object. The constructor of this object very
+likely then registers one or more callback methods with the server.
-=item *
-
-public int B<Read> ()
-
-=item *
-
-public int B<Write> (org.collectd.protocol.ValueList vl)
-
-=item *
-
-public int B<Shutdown> ()
-
-=back
+See L<collectd-java(5)> for details.
=item B<Plugin> I<JavaClass>
The entrie block is passed to the Java plugin as an
-I<org.collectd.api.OConfigItem> object.
+I<org.collectd.api.OConfigItem> object. See L<collectd-java(5)/"config callback">.
=back