Tarantool CE/EE Documentation portal logo
Support
Updated at July 17, 2026   02:08 PM

metrics.plugins.graphite

init(options)

Send all metrics to a remote Graphite server. Exported metric names are formatted as follows: <prefix>.<metric_name>.

Parameters:

  • options (table) — possible options:

  • prefix (string): metrics prefix ('tarantool' by default)

  • host (string): Graphite server host ('127.0.0.1' by default)

  • port (number): Graphite server port (2003 by default)

  • send_interval (number): metrics collection interval in seconds (2 by default)

Example

local graphite_plugin = require('metrics.plugins.graphite')graphite_plugin.init {    prefix = 'tarantool',    host = '127.0.0.1',    port = 2003,    send_interval = 1,}