-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# collectd plugins | ||
|
||
## Data collecting plugins | ||
|
||
### cpu | ||
|
||
The CPU plugini collects the amount of time spent by the CPU in various | ||
states, most notably executing user code, executing system code, waiting | ||
for IO-operations and being idle. | ||
|
||
parameter_defaults: | ||
CollectdExtraPlugins: | ||
- cpu | ||
ExtraConfig: | ||
collectd::plugin::cpu::ReportByState: true | ||
|
||
More options to be found at https://collectd.org/documentation/manpages/collectd.conf.5.shtml#plugin_cpu | ||
|
||
### df | ||
|
||
### interface | ||
|
||
### disk | ||
|
||
### virt | ||
|
||
## Output plugins | ||
|
||
### amqp1 | ||
|
||
the plugin writes values to an amqp1 message bus, such as qpid. | ||
|
||
parameter_defaults: | ||
CollectdExtraPlugins: | ||
- amqp1 | ||
ExtraConfig: | ||
collectd::plugin::amqp1: | ||
|
||
### write_http | ||
|
||
The plugin writes data to an http endpoint. | ||
|
||
parameter_defaults: | ||
CollectdExtraPlugins: | ||
- write_http | ||
ExtraConfig: | ||
collectd::plugin::write_http::nodes: | ||
collectd: | ||
url: collectd.tld.org | ||
metrics: true | ||
header: foo | ||
|
||
For more options, see https://collectd.org/wiki/index.php/Plugin:Write_HTTP |