summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 62ee994)
raw | patch | inline | side by side (parent: 62ee994)
author | Evan Felix <e@pnnl.gov> | |
Tue, 14 May 2013 22:13:04 +0000 (15:13 -0700) | ||
committer | Florian Forster <octo@collectd.org> | |
Thu, 16 May 2013 06:50:56 +0000 (08:50 +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 e103863a5b79148f8cbef84b6426a39d2e17bd93..2010d3388918f43533d5b6405cb7c959e2dd2d43 100644 (file)
--- a/src/collectd.conf.in
+++ b/src/collectd.conf.in
# ShowCPUCores true
# ShowMemory true
# ShowTemperatures true
-## Temperature Sensors can be ignored/shown by repeaded #TempSensor lines, and
-## then inverted with a IgnoreTempSelected.
+## Temperature Sensors can be ignored/shown by repeated #Temperature lines, and
+## then inverted with a IgnoreSelectedTemperature.
## Known Temperature sensors: die, devmem, fin, fout, vccp, vddg, vddq
# Temperature vddg
# IgnoreSelectedTemperature true
+# ShowPower true
+## Power Sensors can be ignored/shown by repeated #Power lines, and
+## then inverted with a IgnoreSelectedTemperature.
+## Known Temperature sensors: total0, total1, inst, imax, pci3, c2x3, c2x4, vccp, vddg, vddq
+# Power total1
+# IgnoreSelectedPower true
#</Plugin>
#<Plugin varnish>
diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
index 242c8f845aff73da03c4c677361e59bba632e634..ca11bdb2a68179ea58115514e000be0647a9b9d2 100644 (file)
--- a/src/collectd.conf.pod
+++ b/src/collectd.conf.pod
Temperature vddg
Temperature vddq
IgnoreSelectedTemperature true
+
+ ShowPower true
+ Power total0
+ Power total1
+ IgnoreSelectedPower true
</Plugin>
The following options are valid inside the B<PluginE<nbsp>mic> block:
=item die
+Die. hello
+
=item devmem
+Device Memory
+
=item fin
+Fan In
+
=item fout
+Fan Out
+
+=item vccp
+
+Voltage ccp
+
+=item vddg
+
+Voltage ddg
+
+=item vddq
+
+Voltage ddq
+
+=back
+
+=item B<ShowPower> B<true>|B<false>
+
+If enabled (the default) various temperatures of the MIC system are reported.
+
+=item B<Power> I<Name>
+
+This option controls which power readings are being reported. Whether matching
+power readings are being ignored or I<only> matching power readings are reported
+depends on the B<IgnoreSelectedPower> setting below. By default I<all>
+power readings are reported.
+
+=item B<IgnoreSelectedPower> B<false>|B<true>
+
+Controls the behavior of the B<Power> setting above. If set to B<false>
+(the default) only power readings matching a B<Power> option are reported
+or, if no B<Power> option is specified, all power readings are reported. If
+set to B<true>, matching power readings are I<ignored> and all other power readings
+are reported.
+
+Known power names are:
+
+=over 4
+
+=item total0
+
+Total power utilization averaged over Time Window 0 (uWatts).
+
+=item total1
+
+Total power utilization averaged over Time Window 0 (uWatts).
+
+=item inst
+
+Instantaneous power (uWatts).
+
+=item imax
+
+Max instantaneous power (uWatts).
+
+=item pcie
+
+PCI-E connector power (uWatts).
+
+=item c2x3
+
+2x3 connector power (uWatts).
+
+=item c2x4
+
+2x4 connector power (uWatts).
+
=item vccp
+Core rail (uVolts).
+
=item vddg
+Uncore rail (uVolts).
+
=item vddq
+Memory subsystem rail (uVolts).
+
=back
=back