Updated at September 7, 2026 01:25 PM
metrics.plugins.graphite
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 (2003by default)send_interval(number): metrics collection interval in seconds (2by default)
Example
local graphite_plugin = require('metrics.plugins.graphite')graphite_plugin.init {prefix = 'tarantool',host = '127.0.0.1',port = 2003,send_interval = 1,}