Skip to content
Florian Forster edited this page Nov 21, 2023 · 1 revision
Name: Write OpenTSDB plugin
Type: write
Callbacks: init, config, write
Status:
FirstVersion: 4.9
Copyright: 2014 David Schmitt
License: GPLv3
Manpage:
See also: List of Plugins

The OpenTSDB plugin translates and queues collectd metrics to an OpenTSDB instance.

The translation is done in python code and can easily be extended or modified to fit local requirements.

Synopsis

 ModulePath "/path/to/installed/tsdb.py"
 Import "tsdb"
 <Module tsdb>
   server "opentsdb server name"
   port   "https port of opentsdb server"
   ca     "ca file"
   cert   "local certificate"
   key    "local private key"
   tag    "host" "my host name"
   tag    "dc"   "my datacenter"
 </Module>

This will register a writer using the specified SSL certificates. It adds additional tags to each event for filtering on the OpenTSDB side.

See also

Clone this wiki locally