From 763fefe630026681be5177969cdb148e32490ac8 Mon Sep 17 00:00:00 2001 From: Georgy Moiseev Date: Tue, 28 Feb 2023 15:47:17 +0300 Subject: [PATCH] dashboard: replace deprecated luajit metrics Replace deprecated LuaJit metrics with newer ones. Metrics were deprecated in 0.15.0 and removed in 0.16.0 [1]. 1. https://github.com/tarantool/metrics/blob/master/CHANGELOG.md Closes #179 --- CHANGELOG.md | 6 +++ dashboard/panels/luajit.libsonnet | 31 ++++++------ supported_metrics.md | 48 +++++++++---------- tests/InfluxDB/dashboard_compiled.json | 48 +++++++++---------- tests/InfluxDB/dashboard_static_compiled.json | 48 +++++++++---------- ...tatic_with_instance_variable_compiled.json | 48 +++++++++---------- tests/InfluxDB/dashboard_tdg_compiled.json | 48 +++++++++---------- .../dashboard_tdg_static_compiled.json | 48 +++++++++---------- ...tatic_with_instance_variable_compiled.json | 48 +++++++++---------- ...dashboard_with_custom_panels_compiled.json | 48 +++++++++---------- tests/Prometheus/dashboard_compiled.json | 48 +++++++++---------- .../Prometheus/dashboard_static_compiled.json | 48 +++++++++---------- ...tatic_with_instance_variable_compiled.json | 48 +++++++++---------- tests/Prometheus/dashboard_tdg_compiled.json | 48 +++++++++---------- .../dashboard_tdg_static_compiled.json | 48 +++++++++---------- ...tatic_with_instance_variable_compiled.json | 48 +++++++++---------- ...dashboard_with_custom_panels_compiled.json | 48 +++++++++---------- 17 files changed, 383 insertions(+), 374 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f14c3a5..9a6ca29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Unreleased + +### Changed +- Replace LuaJit deprecated metrics with new ones + + ## [1.5.0] - 2022-09-22 Grafana revisions: [InfluxDB revision 15](https://grafana.com/api/dashboards/12567/revisions/15/download), [Prometheus revision 15](https://grafana.com/api/dashboards/13054/revisions/15/download), [InfluxDB TDG revision 4](https://grafana.com/api/dashboards/16405/revisions/4/download), [Prometheus TDG revision 4](https://grafana.com/api/dashboards/16406/revisions/4/download). diff --git a/dashboard/panels/luajit.libsonnet b/dashboard/panels/luajit.libsonnet index cc59efa..6dc20fe 100644 --- a/dashboard/panels/luajit.libsonnet +++ b/dashboard/panels/luajit.libsonnet @@ -6,6 +6,9 @@ local common = import 'dashboard/panels/common.libsonnet'; local version_warning(description) = std.join('\n\n', [description, 'Panel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.']), + local version_warning_renamed(description) = + std.join('\n\n', [description, 'Panel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.']), + snap_restores( title='Snap restores', description=||| @@ -20,13 +23,13 @@ local common = import 'dashboard/panels/common.libsonnet'; alias=null, ):: common.default_graph( title=title, - description=version_warning(description), + description=version_warning_renamed(description), datasource=datasource, labelY1='restores per second', panel_width=6, ).addTarget(common.default_rps_target( datasource_type, - 'lj_jit_snap_restore', + 'lj_jit_snap_restore_total', job, policy, measurement, @@ -72,13 +75,13 @@ local common = import 'dashboard/panels/common.libsonnet'; alias=null, ):: common.default_graph( title=title, - description=version_warning(description), + description=version_warning_renamed(description), datasource=datasource, labelY1='aborts per second', panel_width=6, ).addTarget(common.default_rps_target( datasource_type, - 'lj_jit_trace_abort', + 'lj_jit_trace_abort_total', job, policy, measurement, @@ -125,13 +128,13 @@ local common = import 'dashboard/panels/common.libsonnet'; alias=null, ):: common.default_graph( title=title, - description=version_warning(description), + description=version_warning_renamed(description), datasource=datasource, labelY1='interned per second', panel_width=12, ).addTarget(common.default_rps_target( datasource_type, - 'lj_strhash_hit', + 'lj_strhash_hit_total', job, policy, measurement, @@ -151,13 +154,13 @@ local common = import 'dashboard/panels/common.libsonnet'; alias=null, ):: common.default_graph( title=title, - description=version_warning(description), + description=version_warning_renamed(description), datasource=datasource, labelY1='allocated per second', panel_width=12, ).addTarget(common.default_rps_target( datasource_type, - 'lj_strhash_miss', + 'lj_strhash_miss_total', job, policy, measurement, @@ -179,7 +182,7 @@ local common = import 'dashboard/panels/common.libsonnet'; description=( if description != null then description - else version_warning(std.format(||| + else version_warning_renamed(std.format(||| Average count of incremental GC steps (%s state) per second. |||, state)) ), @@ -188,7 +191,7 @@ local common = import 'dashboard/panels/common.libsonnet'; panel_width=8, ).addTarget(common.default_rps_target( datasource_type, - std.format('lj_gc_steps_%s', state), + std.format('lj_gc_steps_%s_total', state), job, policy, measurement, @@ -478,14 +481,14 @@ local common = import 'dashboard/panels/common.libsonnet'; alias=null, ):: common.default_graph( title=title, - description=version_warning(description), + description=version_warning_renamed(description), datasource=datasource, format='bytes', labelY1='bytes per second', panel_width=8, ).addTarget(common.default_rps_target( datasource_type, - 'lj_gc_freed', + 'lj_gc_freed_total', job, policy, measurement, @@ -505,14 +508,14 @@ local common = import 'dashboard/panels/common.libsonnet'; alias=null, ):: common.default_graph( title=title, - description=version_warning(description), + description=version_warning_renamed(description), datasource=datasource, format='bytes', labelY1='bytes per second', panel_width=8, ).addTarget(common.default_rps_target( datasource_type, - 'lj_gc_allocated', + 'lj_gc_allocated_total', job, policy, measurement, diff --git a/supported_metrics.md b/supported_metrics.md index be8d903..4f65dda 100644 --- a/supported_metrics.md +++ b/supported_metrics.md @@ -25,38 +25,38 @@ Based on [tarantool/metrics 0.15.0](https://github.com/tarantool/metrics/release - [x] **tnt_replication_lag**: see *Cluster overview/Tarantool replication lag* panel ([#133](https://github.com/tarantool/grafana-dashboard/issues/133)) - [x] **tnt_replication_status**: see *Cluster overview/Tarantool replication status* panel ([#133](https://github.com/tarantool/grafana-dashboard/issues/133)) - [x] **tnt_read_only**: see *Cluster overview/Tarantool instance status* panel ([#133](https://github.com/tarantool/grafana-dashboard/issues/133)) -- [x] **lj_jit_snap_restore**: see *Tarantool LuaJit statistics/Snap restores* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), will be removed in [#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [ ] **lj_jit_snap_restore_total** ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) +- **lj_jit_snap_restore**: unsupported ([#179](https://github.com/tarantool/grafana-dashboard/issues/179), deprecated, replaced by **lj_jit_snap_restore_total**) +- [x] **lj_jit_snap_restore_total**: see *Tarantool LuaJit statistics/Snap restores* panel ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) - [x] **lj_jit_trace_num**: see *Tarantool LuaJit statistics/JIT traces written* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75)) -- [x] **lj_jit_trace_abort**: see *Tarantool LuaJit statistics/JIT traces aborted* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), will be removed in [#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [ ] **lj_jit_trace_abort_total** ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) +- **lj_jit_trace_abort**: unsupported ([#179](https://github.com/tarantool/grafana-dashboard/issues/179), deprecated, replaced by **lj_jit_trace_abort_total**) +- [x] **lj_jit_trace_abort_total**: see *Tarantool LuaJit statistics/JIT traces aborted* panel ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) - [x] **lj_jit_mcode_size**: see *Tarantool LuaJit statistics/Machine code areas* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75)) -- [x] **lj_strhash_hit**: see *Tarantool LuaJit statistics/Strings interned* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), will be removed in [#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [ ] **lj_strhash_hit_total** ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [x] **lj_strhash_miss**: see *Tarantool LuaJit statistics/Strings allocated* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), will be removed in [#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [ ] **lj_strhash_miss_total** ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [x] **lj_gc_steps_atomic**: see *Tarantool LuaJit statistics/GC steps (atomic)* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), will be removed in [#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [ ] **lj_gc_steps_atomic_total** ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [x] **lj_gc_steps_sweepstring**: see *Tarantool LuaJit statistics/GC steps (sweepstring)* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), will be removed in [#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [ ] **lj_gc_steps_sweepstring_total** ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [x] **lj_gc_steps_finalize**: see *Tarantool LuaJit statistics/GC steps (finalize)* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), will be removed in [#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [ ] **lj_gc_steps_finalize_total** ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [x] **lj_gc_steps_sweep**: see *Tarantool LuaJit statistics/GC steps (sweep)* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), will be removed in [#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [ ] **lj_gc_steps_sweep_total** ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [x] **lj_gc_steps_propagate**: see *Tarantool LuaJit statistics/GC steps (propagate)* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), will be removed in [#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [ ] **lj_gc_steps_propagate_total** ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [x] **lj_gc_steps_pause**: see *Tarantool LuaJit statistics/GC steps (pause)* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), will be removed in [#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [ ] **lj_gc_steps_pause_total** ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) +- **lj_strhash_hit**: unsupported ([#179](https://github.com/tarantool/grafana-dashboard/issues/179), deprecated, replaced by **lj_strhash_hit_total**) +- [x] **lj_strhash_hit_total**: see *Tarantool LuaJit statistics/Strings interned* ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) +- **lj_strhash_miss**: unsupported ([#179](https://github.com/tarantool/grafana-dashboard/issues/179), deprecated, replaced by **lj_strhash_miss_total**) +- [x] **lj_strhash_miss_total**: see *Tarantool LuaJit statistics/Strings allocated* panel ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) +- **lj_gc_steps_atomic**: unsupported ([#179](https://github.com/tarantool/grafana-dashboard/issues/179), deprecated, replaced by **lj_gc_steps_atomic_total**) +- [x] **lj_gc_steps_atomic_total**: see *Tarantool LuaJit statistics/GC steps (atomic)* panel ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) +- **lj_gc_steps_sweepstring**: unsupported ([#179](https://github.com/tarantool/grafana-dashboard/issues/179), deprecated, replaced by **lj_gc_steps_sweepstring_total**) +- [x] **lj_gc_steps_sweepstring_total**: see *Tarantool LuaJit statistics/GC steps (sweepstring)* panel ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) +- **lj_gc_steps_finalize**: unsupported ([#179](https://github.com/tarantool/grafana-dashboard/issues/179), deprecated, replaced by **lj_gc_steps_finalize_total**) +- [x] **lj_gc_steps_finalize_total**: see *Tarantool LuaJit statistics/GC steps (finalize)* panel ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) +- **lj_gc_steps_sweep**: unsupported ([#179](https://github.com/tarantool/grafana-dashboard/issues/179), deprecated, replaced by **lj_gc_steps_sweep_total**) +- [x] **lj_gc_steps_sweep_total**: see *Tarantool LuaJit statistics/GC steps (sweep)* panel ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) +- **lj_gc_steps_propagate**: unsupported ([#179](https://github.com/tarantool/grafana-dashboard/issues/179), deprecated, replaced by **lj_gc_steps_propagate_total**) +- [x] **lj_gc_steps_propagate_total**: see *Tarantool LuaJit statistics/GC steps (propagate)* panel([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) +- **lj_gc_steps_pause**: unsupported ([#179](https://github.com/tarantool/grafana-dashboard/issues/179), deprecated, replaced by **lj_gc_steps_pause_total**) +- [x] **lj_gc_steps_pause_total**: see *Tarantool LuaJit statistics/GC steps (pause)* panel ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) - [x] **lj_gc_strnum**: see *Tarantool LuaJit statistics/String objects allocated* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75)) - [x] **lj_gc_tabnum**: see *Tarantool LuaJit statistics/Table objects allocated* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75)) - [x] **lj_gc_cdatanum**: see *Tarantool LuaJit statistics/cdata objects allocated* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75)) - [x] **lj_gc_udatanum**: see *Tarantool LuaJit statistics/userdata objects allocated* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75)) -- [x] **lj_gc_freed**: see *Tarantool LuaJit statistics/Freed Lua memory* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), will be removed in [#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [ ] **lj_gc_freed_total** ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) +- **lj_gc_freed**: unsupported ([#179](https://github.com/tarantool/grafana-dashboard/issues/179), deprecated, replaced by **lj_gc_freed_total**) +- [x] **lj_gc_freed_total**: see *Tarantool LuaJit statistics/Freed Lua memory* panel ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) - [x] **lj_gc_memory**: see *Tarantool LuaJit statistics/Current Lua memory* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75)) - **lj_gc_total**: unsupported ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), deprecated, replaced with **lj_gc_memory**) -- [x] **lj_gc_allocated**: see *Tarantool LuaJit statistics/Allocated Lua memory* panel ([#75](https://github.com/tarantool/grafana-dashboard/issues/75), will be removed in [#179](https://github.com/tarantool/grafana-dashboard/issues/179)) -- [ ] **lj_gc_allocated_total** ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) +- **lj_gc_allocated**: unsupported ([#179](https://github.com/tarantool/grafana-dashboard/issues/179), deprecated, replaced by **lj_gc_allocated_total**) +- [x] **lj_gc_allocated_total**: see *Tarantool LuaJit statistics/Allocated Lua memory* panel ([#179](https://github.com/tarantool/grafana-dashboard/issues/179)) - [x] **tnt_info_memory_tx**: see *Tarantool runtime overview/Transactions memory* panel ([#137](https://github.com/tarantool/grafana-dashboard/issues/137)) - **tnt_info_memory_index**: unsupported (decided not to support: superseded by slab, vinyl and space metrics) - [x] **tnt_info_memory_net**: see *Tarantool network activity/Net memory* panel ([#137](https://github.com/tarantool/grafana-dashboard/issues/137)) diff --git a/tests/InfluxDB/dashboard_compiled.json b/tests/InfluxDB/dashboard_compiled.json index b0e724c..18a16ee 100644 --- a/tests/InfluxDB/dashboard_compiled.json +++ b/tests/InfluxDB/dashboard_compiled.json @@ -9704,7 +9704,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9791,7 +9791,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_snap_restore" + "value": "lj_jit_snap_restore_total" }, { "condition": "AND", @@ -9990,7 +9990,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10077,7 +10077,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_trace_abort" + "value": "lj_jit_trace_abort_total" }, { "condition": "AND", @@ -10270,7 +10270,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10357,7 +10357,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_hit" + "value": "lj_strhash_hit_total" }, { "condition": "AND", @@ -10413,7 +10413,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10500,7 +10500,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_miss" + "value": "lj_strhash_miss_total" }, { "condition": "AND", @@ -10556,7 +10556,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10643,7 +10643,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_atomic" + "value": "lj_gc_steps_atomic_total" }, { "condition": "AND", @@ -10699,7 +10699,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10786,7 +10786,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweepstring" + "value": "lj_gc_steps_sweepstring_total" }, { "condition": "AND", @@ -10842,7 +10842,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10929,7 +10929,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_finalize" + "value": "lj_gc_steps_finalize_total" }, { "condition": "AND", @@ -10985,7 +10985,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11072,7 +11072,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweep" + "value": "lj_gc_steps_sweep_total" }, { "condition": "AND", @@ -11128,7 +11128,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11215,7 +11215,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_propagate" + "value": "lj_gc_steps_propagate_total" }, { "condition": "AND", @@ -11271,7 +11271,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11358,7 +11358,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_pause" + "value": "lj_gc_steps_pause_total" }, { "condition": "AND", @@ -12099,7 +12099,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -12186,7 +12186,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_freed" + "value": "lj_gc_freed_total" }, { "condition": "AND", @@ -12242,7 +12242,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -12329,7 +12329,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_allocated" + "value": "lj_gc_allocated_total" }, { "condition": "AND", diff --git a/tests/InfluxDB/dashboard_static_compiled.json b/tests/InfluxDB/dashboard_static_compiled.json index 5ff5c08..58b039d 100644 --- a/tests/InfluxDB/dashboard_static_compiled.json +++ b/tests/InfluxDB/dashboard_static_compiled.json @@ -9681,7 +9681,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9768,7 +9768,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_snap_restore" + "value": "lj_jit_snap_restore_total" }, { "condition": "AND", @@ -9967,7 +9967,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10054,7 +10054,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_trace_abort" + "value": "lj_jit_trace_abort_total" }, { "condition": "AND", @@ -10247,7 +10247,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10334,7 +10334,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_hit" + "value": "lj_strhash_hit_total" }, { "condition": "AND", @@ -10390,7 +10390,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10477,7 +10477,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_miss" + "value": "lj_strhash_miss_total" }, { "condition": "AND", @@ -10533,7 +10533,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10620,7 +10620,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_atomic" + "value": "lj_gc_steps_atomic_total" }, { "condition": "AND", @@ -10676,7 +10676,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10763,7 +10763,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweepstring" + "value": "lj_gc_steps_sweepstring_total" }, { "condition": "AND", @@ -10819,7 +10819,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10906,7 +10906,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_finalize" + "value": "lj_gc_steps_finalize_total" }, { "condition": "AND", @@ -10962,7 +10962,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11049,7 +11049,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweep" + "value": "lj_gc_steps_sweep_total" }, { "condition": "AND", @@ -11105,7 +11105,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11192,7 +11192,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_propagate" + "value": "lj_gc_steps_propagate_total" }, { "condition": "AND", @@ -11248,7 +11248,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11335,7 +11335,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_pause" + "value": "lj_gc_steps_pause_total" }, { "condition": "AND", @@ -12076,7 +12076,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -12163,7 +12163,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_freed" + "value": "lj_gc_freed_total" }, { "condition": "AND", @@ -12219,7 +12219,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -12306,7 +12306,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_allocated" + "value": "lj_gc_allocated_total" }, { "condition": "AND", diff --git a/tests/InfluxDB/dashboard_static_with_instance_variable_compiled.json b/tests/InfluxDB/dashboard_static_with_instance_variable_compiled.json index ba064ce..77b4dab 100644 --- a/tests/InfluxDB/dashboard_static_with_instance_variable_compiled.json +++ b/tests/InfluxDB/dashboard_static_with_instance_variable_compiled.json @@ -9681,7 +9681,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9768,7 +9768,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_snap_restore" + "value": "lj_jit_snap_restore_total" }, { "condition": "AND", @@ -9967,7 +9967,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10054,7 +10054,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_trace_abort" + "value": "lj_jit_trace_abort_total" }, { "condition": "AND", @@ -10247,7 +10247,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10334,7 +10334,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_hit" + "value": "lj_strhash_hit_total" }, { "condition": "AND", @@ -10390,7 +10390,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10477,7 +10477,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_miss" + "value": "lj_strhash_miss_total" }, { "condition": "AND", @@ -10533,7 +10533,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10620,7 +10620,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_atomic" + "value": "lj_gc_steps_atomic_total" }, { "condition": "AND", @@ -10676,7 +10676,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10763,7 +10763,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweepstring" + "value": "lj_gc_steps_sweepstring_total" }, { "condition": "AND", @@ -10819,7 +10819,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10906,7 +10906,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_finalize" + "value": "lj_gc_steps_finalize_total" }, { "condition": "AND", @@ -10962,7 +10962,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11049,7 +11049,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweep" + "value": "lj_gc_steps_sweep_total" }, { "condition": "AND", @@ -11105,7 +11105,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11192,7 +11192,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_propagate" + "value": "lj_gc_steps_propagate_total" }, { "condition": "AND", @@ -11248,7 +11248,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11335,7 +11335,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_pause" + "value": "lj_gc_steps_pause_total" }, { "condition": "AND", @@ -12076,7 +12076,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -12163,7 +12163,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_freed" + "value": "lj_gc_freed_total" }, { "condition": "AND", @@ -12219,7 +12219,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -12306,7 +12306,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_allocated" + "value": "lj_gc_allocated_total" }, { "condition": "AND", diff --git a/tests/InfluxDB/dashboard_tdg_compiled.json b/tests/InfluxDB/dashboard_tdg_compiled.json index d451d88..0e9c364 100644 --- a/tests/InfluxDB/dashboard_tdg_compiled.json +++ b/tests/InfluxDB/dashboard_tdg_compiled.json @@ -8992,7 +8992,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9079,7 +9079,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_snap_restore" + "value": "lj_jit_snap_restore_total" }, { "condition": "AND", @@ -9278,7 +9278,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9365,7 +9365,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_trace_abort" + "value": "lj_jit_trace_abort_total" }, { "condition": "AND", @@ -9558,7 +9558,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9645,7 +9645,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_hit" + "value": "lj_strhash_hit_total" }, { "condition": "AND", @@ -9701,7 +9701,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9788,7 +9788,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_miss" + "value": "lj_strhash_miss_total" }, { "condition": "AND", @@ -9844,7 +9844,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9931,7 +9931,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_atomic" + "value": "lj_gc_steps_atomic_total" }, { "condition": "AND", @@ -9987,7 +9987,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10074,7 +10074,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweepstring" + "value": "lj_gc_steps_sweepstring_total" }, { "condition": "AND", @@ -10130,7 +10130,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10217,7 +10217,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_finalize" + "value": "lj_gc_steps_finalize_total" }, { "condition": "AND", @@ -10273,7 +10273,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10360,7 +10360,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweep" + "value": "lj_gc_steps_sweep_total" }, { "condition": "AND", @@ -10416,7 +10416,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10503,7 +10503,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_propagate" + "value": "lj_gc_steps_propagate_total" }, { "condition": "AND", @@ -10559,7 +10559,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10646,7 +10646,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_pause" + "value": "lj_gc_steps_pause_total" }, { "condition": "AND", @@ -11387,7 +11387,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11474,7 +11474,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_freed" + "value": "lj_gc_freed_total" }, { "condition": "AND", @@ -11530,7 +11530,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11617,7 +11617,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_allocated" + "value": "lj_gc_allocated_total" }, { "condition": "AND", diff --git a/tests/InfluxDB/dashboard_tdg_static_compiled.json b/tests/InfluxDB/dashboard_tdg_static_compiled.json index 5508171..3acc355 100644 --- a/tests/InfluxDB/dashboard_tdg_static_compiled.json +++ b/tests/InfluxDB/dashboard_tdg_static_compiled.json @@ -8969,7 +8969,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9056,7 +9056,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_snap_restore" + "value": "lj_jit_snap_restore_total" }, { "condition": "AND", @@ -9255,7 +9255,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9342,7 +9342,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_trace_abort" + "value": "lj_jit_trace_abort_total" }, { "condition": "AND", @@ -9535,7 +9535,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9622,7 +9622,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_hit" + "value": "lj_strhash_hit_total" }, { "condition": "AND", @@ -9678,7 +9678,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9765,7 +9765,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_miss" + "value": "lj_strhash_miss_total" }, { "condition": "AND", @@ -9821,7 +9821,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9908,7 +9908,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_atomic" + "value": "lj_gc_steps_atomic_total" }, { "condition": "AND", @@ -9964,7 +9964,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10051,7 +10051,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweepstring" + "value": "lj_gc_steps_sweepstring_total" }, { "condition": "AND", @@ -10107,7 +10107,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10194,7 +10194,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_finalize" + "value": "lj_gc_steps_finalize_total" }, { "condition": "AND", @@ -10250,7 +10250,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10337,7 +10337,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweep" + "value": "lj_gc_steps_sweep_total" }, { "condition": "AND", @@ -10393,7 +10393,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10480,7 +10480,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_propagate" + "value": "lj_gc_steps_propagate_total" }, { "condition": "AND", @@ -10536,7 +10536,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10623,7 +10623,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_pause" + "value": "lj_gc_steps_pause_total" }, { "condition": "AND", @@ -11364,7 +11364,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11451,7 +11451,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_freed" + "value": "lj_gc_freed_total" }, { "condition": "AND", @@ -11507,7 +11507,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11594,7 +11594,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_allocated" + "value": "lj_gc_allocated_total" }, { "condition": "AND", diff --git a/tests/InfluxDB/dashboard_tdg_static_with_instance_variable_compiled.json b/tests/InfluxDB/dashboard_tdg_static_with_instance_variable_compiled.json index db5c669..f409246 100644 --- a/tests/InfluxDB/dashboard_tdg_static_with_instance_variable_compiled.json +++ b/tests/InfluxDB/dashboard_tdg_static_with_instance_variable_compiled.json @@ -8969,7 +8969,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9056,7 +9056,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_snap_restore" + "value": "lj_jit_snap_restore_total" }, { "condition": "AND", @@ -9255,7 +9255,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9342,7 +9342,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_trace_abort" + "value": "lj_jit_trace_abort_total" }, { "condition": "AND", @@ -9535,7 +9535,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9622,7 +9622,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_hit" + "value": "lj_strhash_hit_total" }, { "condition": "AND", @@ -9678,7 +9678,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9765,7 +9765,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_miss" + "value": "lj_strhash_miss_total" }, { "condition": "AND", @@ -9821,7 +9821,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9908,7 +9908,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_atomic" + "value": "lj_gc_steps_atomic_total" }, { "condition": "AND", @@ -9964,7 +9964,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10051,7 +10051,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweepstring" + "value": "lj_gc_steps_sweepstring_total" }, { "condition": "AND", @@ -10107,7 +10107,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10194,7 +10194,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_finalize" + "value": "lj_gc_steps_finalize_total" }, { "condition": "AND", @@ -10250,7 +10250,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10337,7 +10337,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweep" + "value": "lj_gc_steps_sweep_total" }, { "condition": "AND", @@ -10393,7 +10393,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10480,7 +10480,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_propagate" + "value": "lj_gc_steps_propagate_total" }, { "condition": "AND", @@ -10536,7 +10536,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10623,7 +10623,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_pause" + "value": "lj_gc_steps_pause_total" }, { "condition": "AND", @@ -11364,7 +11364,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11451,7 +11451,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_freed" + "value": "lj_gc_freed_total" }, { "condition": "AND", @@ -11507,7 +11507,7 @@ "dashes": false, "datasource": "influxdb", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11594,7 +11594,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_allocated" + "value": "lj_gc_allocated_total" }, { "condition": "AND", diff --git a/tests/InfluxDB/dashboard_with_custom_panels_compiled.json b/tests/InfluxDB/dashboard_with_custom_panels_compiled.json index 90128f3..4bbf928 100644 --- a/tests/InfluxDB/dashboard_with_custom_panels_compiled.json +++ b/tests/InfluxDB/dashboard_with_custom_panels_compiled.json @@ -9704,7 +9704,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -9791,7 +9791,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_snap_restore" + "value": "lj_jit_snap_restore_total" }, { "condition": "AND", @@ -9990,7 +9990,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10077,7 +10077,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_jit_trace_abort" + "value": "lj_jit_trace_abort_total" }, { "condition": "AND", @@ -10270,7 +10270,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10357,7 +10357,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_hit" + "value": "lj_strhash_hit_total" }, { "condition": "AND", @@ -10413,7 +10413,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10500,7 +10500,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_strhash_miss" + "value": "lj_strhash_miss_total" }, { "condition": "AND", @@ -10556,7 +10556,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10643,7 +10643,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_atomic" + "value": "lj_gc_steps_atomic_total" }, { "condition": "AND", @@ -10699,7 +10699,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10786,7 +10786,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweepstring" + "value": "lj_gc_steps_sweepstring_total" }, { "condition": "AND", @@ -10842,7 +10842,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -10929,7 +10929,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_finalize" + "value": "lj_gc_steps_finalize_total" }, { "condition": "AND", @@ -10985,7 +10985,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11072,7 +11072,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_sweep" + "value": "lj_gc_steps_sweep_total" }, { "condition": "AND", @@ -11128,7 +11128,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11215,7 +11215,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_propagate" + "value": "lj_gc_steps_propagate_total" }, { "condition": "AND", @@ -11271,7 +11271,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -11358,7 +11358,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_steps_pause" + "value": "lj_gc_steps_pause_total" }, { "condition": "AND", @@ -12099,7 +12099,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -12186,7 +12186,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_freed" + "value": "lj_gc_freed_total" }, { "condition": "AND", @@ -12242,7 +12242,7 @@ "dashes": false, "datasource": "${DS_INFLUXDB}", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -12329,7 +12329,7 @@ { "key": "metric_name", "operator": "=", - "value": "lj_gc_allocated" + "value": "lj_gc_allocated_total" }, { "condition": "AND", diff --git a/tests/Prometheus/dashboard_compiled.json b/tests/Prometheus/dashboard_compiled.json index e038046..b877d06 100644 --- a/tests/Prometheus/dashboard_compiled.json +++ b/tests/Prometheus/dashboard_compiled.json @@ -6640,7 +6640,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6678,7 +6678,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_snap_restore{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_jit_snap_restore_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6820,7 +6820,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6858,7 +6858,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_trace_abort{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_jit_trace_abort_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7000,7 +7000,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7038,7 +7038,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_hit{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_strhash_hit_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7090,7 +7090,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7128,7 +7128,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_miss{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_strhash_miss_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7180,7 +7180,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7218,7 +7218,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_atomic{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_atomic_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7270,7 +7270,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7308,7 +7308,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweepstring{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweepstring_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7360,7 +7360,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7398,7 +7398,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_finalize{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_finalize_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7450,7 +7450,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7488,7 +7488,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweep{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweep_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7540,7 +7540,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7578,7 +7578,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_propagate{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_propagate_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7630,7 +7630,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7668,7 +7668,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_pause{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_pause_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -8170,7 +8170,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -8208,7 +8208,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_freed{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_freed_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -8260,7 +8260,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -8298,7 +8298,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_allocated{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_allocated_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", diff --git a/tests/Prometheus/dashboard_static_compiled.json b/tests/Prometheus/dashboard_static_compiled.json index 48320a6..641410d 100644 --- a/tests/Prometheus/dashboard_static_compiled.json +++ b/tests/Prometheus/dashboard_static_compiled.json @@ -6624,7 +6624,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6662,7 +6662,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_snap_restore{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_jit_snap_restore_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6804,7 +6804,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6842,7 +6842,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_trace_abort{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_jit_trace_abort_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6984,7 +6984,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7022,7 +7022,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_hit{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_strhash_hit_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7074,7 +7074,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7112,7 +7112,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_miss{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_strhash_miss_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7164,7 +7164,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7202,7 +7202,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_atomic{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_atomic_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7254,7 +7254,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7292,7 +7292,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweepstring{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweepstring_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7344,7 +7344,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7382,7 +7382,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_finalize{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_finalize_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7434,7 +7434,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7472,7 +7472,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweep{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweep_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7524,7 +7524,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7562,7 +7562,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_propagate{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_propagate_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7614,7 +7614,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7652,7 +7652,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_pause{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_pause_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -8154,7 +8154,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -8192,7 +8192,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_freed{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_freed_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -8244,7 +8244,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -8282,7 +8282,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_allocated{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_allocated_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", diff --git a/tests/Prometheus/dashboard_static_with_instance_variable_compiled.json b/tests/Prometheus/dashboard_static_with_instance_variable_compiled.json index 98c7d1c..59e0e75 100644 --- a/tests/Prometheus/dashboard_static_with_instance_variable_compiled.json +++ b/tests/Prometheus/dashboard_static_with_instance_variable_compiled.json @@ -6624,7 +6624,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6662,7 +6662,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_snap_restore{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_jit_snap_restore_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6804,7 +6804,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6842,7 +6842,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_trace_abort{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_jit_trace_abort_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6984,7 +6984,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7022,7 +7022,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_hit{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_strhash_hit_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7074,7 +7074,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7112,7 +7112,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_miss{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_strhash_miss_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7164,7 +7164,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7202,7 +7202,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_atomic{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_atomic_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7254,7 +7254,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7292,7 +7292,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweepstring{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweepstring_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7344,7 +7344,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7382,7 +7382,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_finalize{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_finalize_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7434,7 +7434,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7472,7 +7472,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweep{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweep_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7524,7 +7524,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7562,7 +7562,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_propagate{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_propagate_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7614,7 +7614,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7652,7 +7652,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_pause{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_pause_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -8154,7 +8154,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -8192,7 +8192,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_freed{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_freed_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -8244,7 +8244,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -8282,7 +8282,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_allocated{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_allocated_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", diff --git a/tests/Prometheus/dashboard_tdg_compiled.json b/tests/Prometheus/dashboard_tdg_compiled.json index 3da6cd4..b1a5a07 100644 --- a/tests/Prometheus/dashboard_tdg_compiled.json +++ b/tests/Prometheus/dashboard_tdg_compiled.json @@ -6260,7 +6260,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6298,7 +6298,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_snap_restore{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_jit_snap_restore_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6440,7 +6440,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6478,7 +6478,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_trace_abort{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_jit_trace_abort_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6620,7 +6620,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6658,7 +6658,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_hit{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_strhash_hit_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6710,7 +6710,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6748,7 +6748,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_miss{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_strhash_miss_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6800,7 +6800,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6838,7 +6838,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_atomic{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_atomic_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6890,7 +6890,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6928,7 +6928,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweepstring{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweepstring_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6980,7 +6980,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7018,7 +7018,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_finalize{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_finalize_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7070,7 +7070,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7108,7 +7108,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweep{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweep_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7160,7 +7160,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7198,7 +7198,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_propagate{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_propagate_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7250,7 +7250,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7288,7 +7288,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_pause{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_pause_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7790,7 +7790,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7828,7 +7828,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_freed{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_freed_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7880,7 +7880,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7918,7 +7918,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_allocated{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_allocated_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", diff --git a/tests/Prometheus/dashboard_tdg_static_compiled.json b/tests/Prometheus/dashboard_tdg_static_compiled.json index bcdd210..dd5b0e1 100644 --- a/tests/Prometheus/dashboard_tdg_static_compiled.json +++ b/tests/Prometheus/dashboard_tdg_static_compiled.json @@ -6244,7 +6244,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6282,7 +6282,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_snap_restore{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_jit_snap_restore_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6424,7 +6424,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6462,7 +6462,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_trace_abort{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_jit_trace_abort_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6604,7 +6604,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6642,7 +6642,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_hit{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_strhash_hit_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6694,7 +6694,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6732,7 +6732,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_miss{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_strhash_miss_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6784,7 +6784,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6822,7 +6822,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_atomic{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_atomic_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6874,7 +6874,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6912,7 +6912,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweepstring{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweepstring_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6964,7 +6964,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7002,7 +7002,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_finalize{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_finalize_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7054,7 +7054,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7092,7 +7092,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweep{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweep_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7144,7 +7144,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7182,7 +7182,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_propagate{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_propagate_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7234,7 +7234,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7272,7 +7272,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_pause{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_pause_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7774,7 +7774,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7812,7 +7812,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_freed{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_freed_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7864,7 +7864,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7902,7 +7902,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_allocated{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", + "expr": "rate(lj_gc_allocated_total{job=~\"tarantool\",alias=~\".*\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", diff --git a/tests/Prometheus/dashboard_tdg_static_with_instance_variable_compiled.json b/tests/Prometheus/dashboard_tdg_static_with_instance_variable_compiled.json index c669854..896603b 100644 --- a/tests/Prometheus/dashboard_tdg_static_with_instance_variable_compiled.json +++ b/tests/Prometheus/dashboard_tdg_static_with_instance_variable_compiled.json @@ -6244,7 +6244,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6282,7 +6282,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_snap_restore{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_jit_snap_restore_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6424,7 +6424,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6462,7 +6462,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_trace_abort{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_jit_trace_abort_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6604,7 +6604,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6642,7 +6642,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_hit{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_strhash_hit_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6694,7 +6694,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6732,7 +6732,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_miss{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_strhash_miss_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6784,7 +6784,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6822,7 +6822,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_atomic{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_atomic_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6874,7 +6874,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6912,7 +6912,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweepstring{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweepstring_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6964,7 +6964,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7002,7 +7002,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_finalize{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_finalize_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7054,7 +7054,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7092,7 +7092,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweep{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweep_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7144,7 +7144,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7182,7 +7182,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_propagate{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_propagate_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7234,7 +7234,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7272,7 +7272,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_pause{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_pause_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7774,7 +7774,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7812,7 +7812,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_freed{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_freed_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7864,7 +7864,7 @@ "dashes": false, "datasource": "Prometheus", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7902,7 +7902,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_allocated{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_allocated_total{job=~\"tarantool\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", diff --git a/tests/Prometheus/dashboard_with_custom_panels_compiled.json b/tests/Prometheus/dashboard_with_custom_panels_compiled.json index 36fc835..782e70a 100644 --- a/tests/Prometheus/dashboard_with_custom_panels_compiled.json +++ b/tests/Prometheus/dashboard_with_custom_panels_compiled.json @@ -6640,7 +6640,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of snap restores (guard assertions\nleading to stopping trace executions) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6678,7 +6678,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_snap_restore{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_jit_snap_restore_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -6820,7 +6820,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of JIT trace aborts per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -6858,7 +6858,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_jit_trace_abort{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_jit_trace_abort_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7000,7 +7000,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being extracted from hash instead of allocating per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7038,7 +7038,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_hit{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_strhash_hit_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7090,7 +7090,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average number of strings being allocated due to hash miss per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7128,7 +7128,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_strhash_miss{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_strhash_miss_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7180,7 +7180,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (atomic state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7218,7 +7218,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_atomic{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_atomic_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7270,7 +7270,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweepstring state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7308,7 +7308,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweepstring{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweepstring_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7360,7 +7360,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (finalize state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7398,7 +7398,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_finalize{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_finalize_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7450,7 +7450,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (sweep state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7488,7 +7488,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_sweep{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_sweep_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7540,7 +7540,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (propagate state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7578,7 +7578,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_propagate{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_propagate_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -7630,7 +7630,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average count of incremental GC steps (pause state) per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -7668,7 +7668,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_steps_pause{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_steps_pause_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -8170,7 +8170,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of freed Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -8208,7 +8208,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_freed{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_freed_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}", @@ -8260,7 +8260,7 @@ "dashes": false, "datasource": "${DS_PROMETHEUS}", "decimals": 3, - "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.6.0` and `Tarantool >= 2.6`.", + "description": "Average amount of allocated Lua memory per second.\n\n\nPanel works with `metrics >= 0.15.0` and `Tarantool >= 2.6`.", "fill": 0, "gridPos": { "h": 8, @@ -8298,7 +8298,7 @@ "steppedLine": false, "targets": [ { - "expr": "rate(lj_gc_allocated{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", + "expr": "rate(lj_gc_allocated_total{job=~\"$job\",alias=~\"$alias\"}[$__rate_interval])", "format": "time_series", "intervalFactor": 2, "legendFormat": "{{alias}}",