influxdb/services/opentsdb
Cory LaNou d19a510ad2 refactor Points and Rows to dedicated packages 2015-09-16 15:33:08 -05:00
..
README.md Add note on openTSDB batching 2015-09-08 23:19:17 -07:00
config.go Add batch-pending control to openTSDB input 2015-09-08 19:35:42 -07:00
config_test.go Fix go vet 2015-08-05 12:16:17 -06:00
handler.go refactor Points and Rows to dedicated packages 2015-09-16 15:33:08 -05:00
service.go refactor Points and Rows to dedicated packages 2015-09-16 15:33:08 -05:00
service_test.go refactor Points and Rows to dedicated packages 2015-09-16 15:33:08 -05:00

README.md

openTSDB Input

InfluxDB supports both the telnet and HTTP openTSDB protocol. This means that InfluxDB can act as a drop-in replacement for your openTSDB system.

Configuration

The openTSDB input allows the binding address, target database, and target retention policy within that database, to be set. If the database does not exist, it will be created automatically when the input is initialized. If you also decide to configure retention policy (without configuration the input will use the auto-created default retention policy), both the database and retention policy must already exist.

The write-consistency-level can also be set. If any write operations do not meet the configured consistency guarantees, an error will occur and the data will not be indexed. The default consistency-level is ONE.

The openTSDB 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.