Skip to content

Commit

Permalink
plugin: flight recorder export
Browse files Browse the repository at this point in the history
Add plugin to export up-to-date metrics with their aggregates to Flight
recorder. Plugin API contains of two handles: export() return extended
format metrics table, plain_format(output) allows to get human-readable
minimal useful metrics info.

Part of tarantool/tarantool#7725
Part of tarantool/tarantool#7728
  • Loading branch information
DifferentialOrange committed Feb 17, 2023
1 parent d45585e commit a1ac966
Show file tree
Hide file tree
Showing 6 changed files with 178 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- per second rate for counters;
- min and max for gauges;
- average for histograms and summaries;
- plugin to export extended format data with aggregates to Flight recorder

### Changed
- Setup cartridge hotreload inside the role
Expand Down
48 changes: 48 additions & 0 deletions doc/monitoring/plugins.rst
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,54 @@ Use the JSON plugin with Tarantool ``http.server`` as follows:
end
)
Flight recorder
~~~~~~~~~~~~~~~

Usage
^^^^^

Import the plugin:

.. code-block:: lua
local flight_recorder_exporter = require('metrics.plugins.flight_recorder')
.. module:: metrics.plugins.flight_recorder

.. function:: export()

:return: extended format output with aggregates

.. code-block:: yaml
- tnt_net_per_thread_connections_mingauge:
name: tnt_net_per_thread_connections_min
name_prefix: tnt_net_per_thread_connections
kind: gauge
metainfo:
aggregate: true
default: true
timestamp: 1676478112824745
observations:
'':
"thread\t1":
label_pairs:
thread: '1'
value: 0
...
.. function:: plain_format(output)

:return: human-readable form of output

.. code-block:: text
tnt_info_memory_lua_max{alias=router-4} 10237204
tnt_info_memory_lua_min{alias=router-4} 1921790
tnt_info_memory_lua{alias=router-4} 2733335
tnt_info_uptime{alias=router-4} 1052
...
.. _metrics-plugins-custom:

Creating custom plugins
Expand Down
1 change: 1 addition & 0 deletions metrics-scm-1.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ build = {
['metrics.plugins.graphite'] = 'metrics/plugins/graphite.lua',
['metrics.plugins.prometheus'] = 'metrics/plugins/prometheus.lua',
['metrics.plugins.json'] = 'metrics/plugins/json.lua',
['metrics.plugins.flight_recorder'] = 'metrics/plugins/flight_recorder.lua',
['metrics.tarantool'] = 'metrics/tarantool.lua',
['metrics.tarantool.fibers'] = 'metrics/tarantool/fibers.lua',
['metrics.tarantool.info'] = 'metrics/tarantool/info.lua',
Expand Down
42 changes: 42 additions & 0 deletions metrics/plugins/flight_recorder.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
local metrics = require('metrics')
local stash = require('metrics.stash')
local string_utils = require('metrics.string_utils')

local data_stash = stash.get('flight_recorder')

local function export()
local output = metrics.collect{invoke_callbacks = true, extended_format = true}
local output_with_aggregates = metrics.compute_aggregates(
data_stash.output_with_aggregates_prev, output)
data_stash.output_with_aggregates_prev = output_with_aggregates
return output_with_aggregates
end

local function plain_format(output)
local result = {}
for _, coll_obs in pairs(output) do
for group_name, obs_group in pairs(coll_obs.observations) do
local metric_name = string_utils.build_name(coll_obs.name, group_name)
for _, obs in pairs(obs_group) do
local parts = {}
for k, v in pairs(obs.label_pairs) do
table.insert(parts, k .. '=' .. v)
end
table.sort(parts)
table.insert(result, string.format('%s{%s} %s',
metric_name,
table.concat(parts, ','),
obs.value
))
end
end
end

table.sort(result)
return table.concat(result, '\n')
end

return {
export = export,
plain_format = plain_format,
}
6 changes: 5 additions & 1 deletion metrics/stash.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ local stash = {}
-- @tfield string cfg
-- Stash for metrics module configuration.
--
-- @tfield string flight_recorder
-- Stash for flight recorder plugin data.
--
stash.name = {
cfg = '__metrics_cfg',
cfg_internal = '__metrics_cfg_internal'
cfg_internal = '__metrics_cfg_internal',
flight_recorder = '__flight_recorder',
}

--- Setup Tarantool Cartridge reload.
Expand Down
81 changes: 81 additions & 0 deletions test/plugins/flight_recorder_test.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
#!/usr/bin/env tarantool

local t = require('luatest')
local g = t.group('flight_recorder_plugin')

local flight_recorder_exporter = require('metrics.plugins.flight_recorder')
local metrics = require('metrics')
local metrics_stash = require('metrics.stash')
local utils = require('test.utils')

g.before_all(utils.init)

g.before_each(function()
metrics_stash.get('flight_recorder').output_with_aggregates_prev = nil
metrics.clear()
metrics.cfg{include = 'all', exclude = {}, labels = {}}
end)

g.test_exporter = function()
metrics.counter('counter_test_total'):inc(1)
metrics.gauge('gauge_test'):set(1)
metrics.histogram('histogram_test'):observe(1)
metrics.summary('summary_test'):observe(1)

local output_non_plugin = metrics.collect{invoke_callbacks = true, extended_format = true}

local output_exporter_1 = flight_recorder_exporter.export()
local output_exporter_2 = flight_recorder_exporter.export()
local output_exporter_3 = flight_recorder_exporter.export()

for key, _ in pairs(output_non_plugin) do
t.assert_type(output_exporter_1[key], 'table',
'Default metric observation presents in exporter output')
end

t.assert_gt(utils.len(output_exporter_1), utils.len(output_non_plugin),
'Exporter observations is extended with aggregates (min, max, average)')

t.assert_type(output_exporter_1['gauge_test_mingauge'], 'table',
'Exporter observations is extended with min aggregates')
t.assert_type(output_exporter_1['gauge_test_maxgauge'], 'table',
'Exporter observations is extended with max aggregates')
t.assert_type(output_exporter_1['histogram_test_averagegauge'], 'table',
'Exporter observations is extended with histogram average aggregates')
t.assert_type(output_exporter_1['summary_test_averagegauge'], 'table',
'Exporter observations is extended with summary average aggregates')

t.assert_gt(utils.len(output_exporter_2), utils.len(output_exporter_1),
'Exporter observations is extended with aggregates (rate)')

t.assert_type(output_exporter_2['counter_test_per_secondgauge'], 'table',
'Exporter observations is extended with rate aggregates')

t.assert_equals(utils.len(output_exporter_3), utils.len(output_exporter_2),
'Exporter observations contains the same set of aggregates after second collect')
end

g.test_plain_format = function()
metrics.cfg{labels = {alias = 'router-4'}}

metrics.counter('counter_test_total'):inc(1, {label = 'value'})
metrics.gauge('gauge_test'):set(2, {label = 'value'})
metrics.histogram('histogram_test'):observe(3, {label = 'value'})
metrics.summary('summary_test'):observe(4, {label = 'value'})

local output = flight_recorder_exporter.export()

local plain_format_output = flight_recorder_exporter.plain_format(output)
t.assert_str_contains(plain_format_output,
'counter_test_total{alias=router-4,label=value} 1')
t.assert_str_contains(plain_format_output,
'gauge_test{alias=router-4,label=value} 2')
t.assert_str_contains(plain_format_output,
'histogram_test_count{alias=router-4,label=value} 1')
t.assert_str_contains(plain_format_output,
'histogram_test_sum{alias=router-4,label=value} 3')
t.assert_str_contains(plain_format_output,
'summary_test_count{alias=router-4,label=value} 1')
t.assert_str_contains(plain_format_output,
'summary_test_sum{alias=router-4,label=value} 4')
end

0 comments on commit a1ac966

Please sign in to comment.