Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mrunge committed Sep 18, 2020
1 parent 590a09f commit 955c918
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions README.md
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

0 comments on commit 955c918

Please sign in to comment.