summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1a31306)
raw | patch | inline | side by side (parent: 1a31306)
author | Bert Vermeulen <bert@biot.com> | |
Mon, 5 Aug 2013 20:33:55 +0000 (22:33 +0200) | ||
committer | Bert Vermeulen <bert@biot.com> | |
Mon, 5 Aug 2013 20:33:55 +0000 (22:33 +0200) |
src/collectd.conf.in | patch | blob | history | |
src/collectd.conf.pod | patch | blob | history |
diff --git a/src/collectd.conf.in b/src/collectd.conf.in
index 542be6745b0e9ea3398623534695dd027cf27c64..294aa518e7412ecf4f8f4b930eb5e4b123cc9814 100644 (file)
--- a/src/collectd.conf.in
+++ b/src/collectd.conf.in
# LogLevel 3
# <Device "AC Voltage">
# Driver "fluke-dmm"
-# Interval 10
+# MinimumInterval 10
# Conn "/dev/ttyUSB2"
# </Device>
# <Device "Sound Level">
diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
index fe92aac8b3b5a04a323e6b21ab2cf266f0477d09..a673a584982842b0985e36ad9f845b5167e92cca 100644 (file)
--- a/src/collectd.conf.pod
+++ b/src/collectd.conf.pod
LogLevel 3
<Device "AC Voltage">
Driver "fluke-dmm"
- Interval 10
+ MinimumInterval 10
Conn "/dev/ttyUSB2"
</Device>
<Device "Sound Level">
to specify them in the form I<9600/8n1>. This should not be necessary; drivers
know how to communicate with devices they support.
-=item B<Interval>
+=item B<MinimumInterval>
Specifies the minimum time between measurement dispatches to collectd, in
seconds. Since some sigrok-supported devices can acquire measurements many
times per second, it may be necessary to throttle these. For example, the
RRD plugin cannot process writes more than once per second.
-The default (and minimum) interval is 1 second. Unused measurements are
-discarded.
+The default MinimumInterval is 0, meaning measurements received from the
+device are always dispatched to collectd. When throttled, unused measurements
+are discarded.
=back