summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3a9c401)
raw | patch | inline | side by side (parent: 3a9c401)
author | Sven Trenkel <collectd@semidefinite.de> | |
Sun, 16 Jul 2017 22:50:12 +0000 (22:50 +0000) | ||
committer | Sven Trenkel <collectd@semidefinite.de> | |
Sun, 16 Jul 2017 22:50:12 +0000 (22:50 +0000) |
src/collectd-python.pod | patch | blob | history |
index 6a83b97fd0a01e2d603a379edf29a085484e2fca..f4b5f141bbaf70ee06fa0b5ccfe71f38439a209e 100644 (file)
--- a/src/collectd-python.pod
+++ b/src/collectd-python.pod
If a Python script throws an exception it will be logged by collectd with the
name of the exception and the message. If you set this option to true it will
also log the full stacktrace just like the default output of an interactive
-Python interpreter. This should probably be set to false most of the time but
-is very useful for development and debugging of new modules.
+Python interpreter. This does not apply to the CollectError exception, which
+will never log a stacktrace.
+This should probably be set to false most of the time but is very useful for
+development and debugging of new modules.
=item B<Interactive> I<bool>
The following complex types are used to pass values between the Python plugin
and collectd:
+=head2 CollectdError
+
+This is an exception. If any Python script raises this exception it will
+still be treated like an error by collectd but it will be logged as a
+warning instead of an error and it will never generate a stacktrace.
+
+ class CollectdError(Exception)
+
+Basic exception for collectd Python scripts.
+Throwing this exception will not cause a stacktrace to be logged, even if
+LogTraces is enabled in the config.
+
=head2 Signed
The Signed class is just a long. It has all its methods and behaves exactly