Skip to content

Commit

Permalink
Merge pull request #5535 from nicgrayson/patch-1
Browse files Browse the repository at this point in the history
Update README.md for Collectd
  • Loading branch information
e-dard committed Feb 9, 2016
2 parents aacacbc + 87deeb6 commit f0afa35
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- [#5489](https://github.com/influxdata/influxdb/pull/5489): Fixes multiple issues causing tests to fail on windows. Thanks @runner-mei
- [#5594](https://github.com/influxdata/influxdb/pull/5594): Fix missing url params on lease redirect - @oldmantaiter
- [#5376](https://github.com/influxdata/influxdb/pull/5376): Fix golint issues in models package. @nuss-justin
- [#5535](https://github.com/influxdata/influxdb/pull/5535): Update README for referring to Collectd

## v0.10.0 [2016-02-04]

Expand Down
6 changes: 3 additions & 3 deletions services/collectd/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The collectd Input

The _collectd_ input allows InfluxDB to accept data transmitted in collectd native format. This data is transmitted over UDP.
The [collectd](https://collectd.org) input allows InfluxDB to accept data transmitted in collectd native format. This data is transmitted over UDP.

## A note on UDP/IP OS Buffer sizes

Expand All @@ -13,11 +13,11 @@ Each collectd input allows the binding address, target database, and target rete

Each collectd input also performs internal batching of the points it receives, as batched writes to the database are more efficient. The default batch size is 1000, pending batch factor is 5, with a batch timeout of 1 second. This means the input will write batches of maximum size 1000, but if a batch has not reached 1000 points within 1 second of the first point being added to a batch, it will emit that batch regardless of size. The pending batch factor controls how many batches can be in memory at once, allowing the input to transmit a batch, while still building other batches.

The path to the collectd types database file may also be set
The path to the collectd types database file may also be set.

## Large UDP packets

Please note that UDP packages larger than the standard size of 1452 are dropped at the time of ingestion, so be sure to set `MaxPacketSize` to 1452 in the collectd configuration.
Please note that UDP packets larger than the standard size of 1452 are dropped at the time of ingestion. Be sure to set `MaxPacketSize` to 1452 in the collectd configuration.

## Config Example

Expand Down

0 comments on commit f0afa35

Please sign in to comment.