diff --git a/CHANGELOG.md b/CHANGELOG.md index 11c4dcb..8f97eef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added +- Failover coordinator section with status and visibility panels (#247) + ### Changed ### Fixed diff --git a/config.yml b/config.yml index 3d3865d..097bc8a 100644 --- a/config.yml +++ b/config.yml @@ -86,9 +86,10 @@ metrics_prefix: '' # - tdg_iproto # - tdg_rest_api # - tdg_tasks -# default is [cluster_tarantool3, replication_tarantool3, http, net, slab, mvcc, space, vinyl, cpu, runtime, luajit, operations, crud, expirationd] +# default is [cluster_tarantool3, failover_coordinator, replication_tarantool3, http, net, slab, mvcc, space, vinyl, cpu, runtime, luajit, operations, crud, expirationd] sections: - cluster_tarantool3 +- failover_coordinator - replication_tarantool3 - http - net diff --git a/dashboard/build/config.libsonnet b/dashboard/build/config.libsonnet index 8f36ed5..4b7e1b8 100644 --- a/dashboard/build/config.libsonnet +++ b/dashboard/build/config.libsonnet @@ -28,6 +28,7 @@ local variable = import 'dashboard/variable.libsonnet'; metrics_prefix: '', sections: [ 'cluster_tarantool3', + 'failover_coordinator', 'replication_tarantool3', 'http', 'net', diff --git a/dashboard/panels/cluster.libsonnet b/dashboard/panels/cluster.libsonnet index e51d21d..cd90276 100644 --- a/dashboard/panels/cluster.libsonnet +++ b/dashboard/panels/cluster.libsonnet @@ -11,6 +11,192 @@ local prometheus = grafana.prometheus; { row:: common.row('Cluster overview'), + failover_coordinator_row:: common.row('Failover coordinator'), + + coordinators_status( + cfg, + title='Coordinators status', + ):: tablePanel.new( + title=title, + datasource=cfg.datasource, + transform='table', + ).addTarget( + if cfg.type == variable.datasource_type.prometheus then + local filters_obj = common.remove_field(cfg.filters, 'alias'); + local filters = common.prometheus_query_filters(filters_obj); + local metric = std.format('%starantool_coordinator_active', [cfg.metrics_prefix]); + prometheus.target( + expr=if filters == '' then metric else std.format('%s{%s}', [metric, filters]), + format='table', + instant=true, + ) + else + error 'InfluxDB target is not supported yet' + ) { + options: { cellHeight: 'sm', showHeader: true }, + fieldConfig: { + defaults: { + custom: { + align: 'auto', + cellOptions: { type: 'auto' }, + footer: { reducers: [] }, + inspect: false, + }, + mappings: [], + thresholds: { + mode: 'absolute', + steps: [ + { color: 'green', value: 0 }, + { color: 'red', value: 80 }, + ], + }, + }, + overrides: [ + { + matcher: { id: 'byName', options: 'status' }, + properties: [ + { id: 'custom.cellOptions', value: { type: 'color-text' } }, + { + id: 'mappings', + value: [ + { + type: 'value', + options: { + '0': { color: 'yellow', text: 'passive' }, + '1': { color: 'green', text: 'active' }, + }, + }, + { + type: 'special', + options: { + match: 'null', + result: { color: 'red', text: 'disconnected' }, + }, + }, + ], + }, + ], + }, + ], + }, + transformations: [ + { + id: 'organize', + options: { + excludeByName: { + Time: true, + __name__: true, + instance: true, + job: true, + }, + indexByName: { Value: 1, alias: 0 }, + renameByName: { Value: 'status', alias: 'uuid' }, + }, + }, + ], + }, + + instances_seen_by_coordinators( + cfg, + title='Instances seen by coordinators', + ):: tablePanel.new( + title=title, + datasource=cfg.datasource, + transform='table', + ).addTarget( + if cfg.type == variable.datasource_type.prometheus then + local filters_obj = common.remove_field(cfg.filters, 'alias'); + local filters = common.prometheus_query_filters(filters_obj); + local metric = std.format('%starantool_instance_status', [cfg.metrics_prefix]); + prometheus.target( + expr=if filters == '' then metric else std.format('%s{%s}', [metric, filters]), + format='table', + instant=true, + ) + else + error 'InfluxDB target is not supported yet' + ) { + options: { cellHeight: 'sm', showHeader: true }, + fieldConfig: { + defaults: { + custom: { + align: 'auto', + cellOptions: { type: 'auto' }, + footer: { reducers: [] }, + inspect: false, + }, + mappings: [], + thresholds: { + mode: 'absolute', + steps: [ + { color: 'red', value: null }, + { color: 'green', value: 1 }, + ], + }, + }, + overrides: [ + { + matcher: { id: 'byName', options: 'status' }, + properties: [ + { id: 'custom.cellOptions', value: { type: 'color-text' } }, + { + id: 'mappings', + value: [ + { + type: 'value', + options: { + '0': { color: 'red', text: 'down' }, + '1': { color: 'green', text: 'alive' }, + }, + }, + { + type: 'special', + options: { + match: 'nan', + result: { color: 'red', text: 'unknown' }, + }, + }, + ], + }, + ], + }, + ], + }, + transformations: [ + { + id: 'organize', + options: { + excludeByName: { + Time: true, + __name__: true, + job: true, + exported_job: true, + endpoint: true, + namespace: true, + pod: true, + service: true, + instance: true, + }, + renameByName: { + alias: 'coordinator uuid', + exported_instance: 'instance', + Value: 'status', + }, + }, + }, + { + id: 'organize', + options: { + indexByName: { + 'coordinator uuid': 0, + replicaset: 1, + instance: 2, + status: 3, + }, + }, + }, + ], + }, health_overview_table( cfg, diff --git a/dashboard/section.libsonnet b/dashboard/section.libsonnet index cb30c64..9d1e6e0 100644 --- a/dashboard/section.libsonnet +++ b/dashboard/section.libsonnet @@ -59,6 +59,12 @@ local vinyl = import 'dashboard/panels/vinyl.libsonnet'; cluster.election_term(cfg), ], + failover_coordinator(cfg):: if cfg.type == variable.datasource_type.prometheus then [ + cluster.failover_coordinator_row, + cluster.coordinators_status(cfg) { gridPos: { w: 10, h: 14, x: 0, y: 3 } }, + cluster.instances_seen_by_coordinators(cfg) { gridPos: { w: 14, h: 14, x: 10, y: 3 } }, + ] else [], + cluster_cartridge(cfg):: if cfg.type == variable.datasource_type.prometheus then [ // Must be used only in the top of a dashboard, overall stat panels use complicated layout cluster.row, diff --git a/doc/monitoring/grafana_dashboard.rst b/doc/monitoring/grafana_dashboard.rst index 9fd12aa..62f5181 100644 --- a/doc/monitoring/grafana_dashboard.rst +++ b/doc/monitoring/grafana_dashboard.rst @@ -63,6 +63,21 @@ to enable statistics export. .. image:: images/Prometheus_dashboard_3.png :width: 30% +------------------------------------------------------------------------------- +Monitor failover coordinators +------------------------------------------------------------------------------- + +The Tarantool 3 dashboard now includes a dedicated **Failover coordinator** +section (Prometheus only). It shows: + +- **Coordinators status** - whether each coordinator is active or passive. +- **Instances seen by coordinators** - instances visible to every coordinator, + together with their cluster status. + +.. image:: images/failover_coordinator_section.png + :width: 75% + :alt: Failover coordinator section + .. _monitoring-grafana_dashboard-monitoring_stack: ------------------------------------------------------------------------------- @@ -139,6 +154,9 @@ to Telegraf configuration including each Tarantool instance metrics URL: "label_pairs_name", "label_pairs_index_name", "label_pairs_delta", + "label_pairs_replicaset", + "label_pairs_instance", + "label_pairs_exported_instance", "label_pairs_stream", "label_pairs_thread", "label_pairs_kind" @@ -180,6 +198,9 @@ For TDG dashboard, please use "label_pairs_delta", "label_pairs_stream", "label_pairs_thread", + "label_pairs_replicaset", + "label_pairs_instance", + "label_pairs_exported_instance", "label_pairs_type", "label_pairs_connector_name", "label_pairs_broker_name", diff --git a/doc/monitoring/images/failover_coordinator_section.png b/doc/monitoring/images/failover_coordinator_section.png new file mode 100644 index 0000000..36073fb Binary files /dev/null and b/doc/monitoring/images/failover_coordinator_section.png differ diff --git a/example_cluster/tarantool3_project/roles/pseudoapp.lua b/example_cluster/tarantool3_project/roles/pseudoapp.lua index 7f45ea2..5334d46 100644 --- a/example_cluster/tarantool3_project/roles/pseudoapp.lua +++ b/example_cluster/tarantool3_project/roles/pseudoapp.lua @@ -75,6 +75,60 @@ local function apply(cfg) httpd:start() + local coordinator_status = metrics.gauge( + 'tarantool_coordinator_active', + 'Mock failover coordinator status' + ) + local instance_status = metrics.gauge( + 'tarantool_instance_status', + 'Mock failover coordinator visibility' + ) + + fiber.create(function() + local uuid = require('uuid') + + local active = 1 + + local uuid_a = tostring(uuid.new()) + local uuid_b = tostring(uuid.new()) + + while true do + coordinator_status:set(active, { + alias = uuid_a, + }) + coordinator_status:set((active + 1) % 2, { + alias = uuid_b, + }) + + instance_status:set(1, { + alias = uuid_a, + replicaset = 'storages_1', + instance = 'storage_1_master', + }) + + instance_status:set(1, { + alias = uuid_a, + replicaset = 'storages_2', + instance = 'storage_2_master', + }) + + instance_status:set(1, { + alias = uuid_b, + replicaset = 'storages_1', + instance = 'storage_1_replica', + }) + + instance_status:set(0, { + alias = uuid_b, + replicaset = 'storages_2', + instance = 'storage_2_replica', + }) + + active = (active + 1) % 2 + fiber.sleep(5) + end + end) + box.watch('box.status', function() if box.info.ro then return diff --git a/supported_metrics.md b/supported_metrics.md index 9e7714e..e861c26 100644 --- a/supported_metrics.md +++ b/supported_metrics.md @@ -126,6 +126,8 @@ Based on [tarantool/metrics 1.6.1](https://github.com/tarantool/metrics/releases - **tnt_cartridge_cluster_issues**: unsupported (decided not to support: superseded by **tnt_cartridge_issues**) - [x] **tnt_cartridge_failover_trigger_total**: see *Cluster overview/Failovers triggered* panel ([#178](https://github.com/tarantool/grafana-dashboard/issues/178)) - [x] **tnt_cartridge_config_checksum**: see *Cluster overview/Configuration checksum* panel ([#242](https://github.com/tarantool/grafana-dashboard/pull/242)) +- [x] **tarantool_coordinator_active**: see *Failover coordinator/Coordinators status* panel ([#247](https://github.com/tarantool/grafana-dashboard/issues/247)) +- [x] **tarantool_instance_status**: see *Failover coordinator/Instances seen by coordinators* panel ([#247](https://github.com/tarantool/grafana-dashboard/issues/247)) - [x] **tnt_synchro_queue_owner**: see *Replication overview/Synchronous queue owner* panel ([#178](https://github.com/tarantool/grafana-dashboard/issues/178)) - [x] **tnt_synchro_queue_term**: see *Replication overview/Synchronous queue term* panel ([#178](https://github.com/tarantool/grafana-dashboard/issues/178)) - [x] **tnt_synchro_queue_len**: see *Replication overview/Synchronous queue transactions* panel ([#178](https://github.com/tarantool/grafana-dashboard/issues/178)) diff --git a/tests/Prometheus/dashboard_tarantool3.yml b/tests/Prometheus/dashboard_tarantool3.yml index 5d0938b..b9ff44d 100644 --- a/tests/Prometheus/dashboard_tarantool3.yml +++ b/tests/Prometheus/dashboard_tarantool3.yml @@ -8,6 +8,7 @@ filters: alias: ['=~', '$alias'] sections: - cluster_tarantool3 +- failover_coordinator - replication_tarantool3 - http - net diff --git a/tests/Prometheus/dashboard_tarantool3_compiled.json b/tests/Prometheus/dashboard_tarantool3_compiled.json index 03cae81..1e80ccb 100644 --- a/tests/Prometheus/dashboard_tarantool3_compiled.json +++ b/tests/Prometheus/dashboard_tarantool3_compiled.json @@ -1580,6 +1580,289 @@ "y": 33 }, "id": 19, + "panels": [ + { + "columns": [ ], + "datasource": "$prometheus", + "fieldConfig": { + "defaults": { + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "footer": { + "reducers": [ ] + }, + "inspect": false + }, + "mappings": [ ], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": 0 + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "status" + }, + "properties": [ + { + "id": "custom.cellOptions", + "value": { + "type": "color-text" + } + }, + { + "id": "mappings", + "value": [ + { + "options": { + "0": { + "color": "yellow", + "text": "passive" + }, + "1": { + "color": "green", + "text": "active" + } + }, + "type": "value" + }, + { + "options": { + "match": "null", + "result": { + "color": "red", + "text": "disconnected" + } + }, + "type": "special" + } + ] + } + ] + } + ] + }, + "gridPos": { + "h": 14, + "w": 10, + "x": 0, + "y": 3 + }, + "id": 20, + "links": [ ], + "options": { + "cellHeight": "sm", + "showHeader": true + }, + "styles": [ ], + "targets": [ + { + "expr": "tarantool_coordinator_active{job=~\"$job\"}", + "format": "table", + "instant": true, + "intervalFactor": 2, + "legendFormat": "", + "refId": "A" + } + ], + "timeFrom": null, + "timeShift": null, + "title": "Coordinators status", + "transform": "table", + "transformations": [ + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "__name__": true, + "instance": true, + "job": true + }, + "indexByName": { + "Value": 1, + "alias": 0 + }, + "renameByName": { + "Value": "status", + "alias": "uuid" + } + } + } + ], + "type": "table" + }, + { + "columns": [ ], + "datasource": "$prometheus", + "fieldConfig": { + "defaults": { + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "footer": { + "reducers": [ ] + }, + "inspect": false + }, + "mappings": [ ], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "green", + "value": 1 + } + ] + } + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "status" + }, + "properties": [ + { + "id": "custom.cellOptions", + "value": { + "type": "color-text" + } + }, + { + "id": "mappings", + "value": [ + { + "options": { + "0": { + "color": "red", + "text": "down" + }, + "1": { + "color": "green", + "text": "alive" + } + }, + "type": "value" + }, + { + "options": { + "match": "nan", + "result": { + "color": "red", + "text": "unknown" + } + }, + "type": "special" + } + ] + } + ] + } + ] + }, + "gridPos": { + "h": 14, + "w": 14, + "x": 10, + "y": 3 + }, + "id": 21, + "links": [ ], + "options": { + "cellHeight": "sm", + "showHeader": true + }, + "styles": [ ], + "targets": [ + { + "expr": "tarantool_instance_status{job=~\"$job\"}", + "format": "table", + "instant": true, + "intervalFactor": 2, + "legendFormat": "", + "refId": "A" + } + ], + "timeFrom": null, + "timeShift": null, + "title": "Instances seen by coordinators", + "transform": "table", + "transformations": [ + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "__name__": true, + "endpoint": true, + "exported_job": true, + "instance": true, + "job": true, + "namespace": true, + "pod": true, + "service": true + }, + "renameByName": { + "Value": "status", + "alias": "coordinator uuid", + "exported_instance": "instance" + } + } + }, + { + "id": "organize", + "options": { + "indexByName": { + "coordinator uuid": 0, + "instance": 2, + "replicaset": 1, + "status": 3 + } + } + } + ], + "type": "table" + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": true, + "title": "Failover coordinator", + "titleSize": "h6", + "type": "row" + }, + { + "collapse": true, + "collapsed": true, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 17 + }, + "id": 22, "panels": [ { "datasource": "$prometheus", @@ -1663,9 +1946,9 @@ "h": 8, "w": 12, "x": 0, - "y": 34 + "y": 18 }, - "id": 20, + "id": 23, "options": { "legend": { "calcs": [ @@ -1702,9 +1985,9 @@ "h": 8, "w": 12, "x": 12, - "y": 34 + "y": 18 }, - "id": 21, + "id": 24, "legend": { "alignAsTable": true, "avg": false, @@ -1790,9 +2073,9 @@ "h": 8, "w": 6, "x": 0, - "y": 42 + "y": 26 }, - "id": 22, + "id": 25, "legend": { "alignAsTable": true, "avg": false, @@ -1880,9 +2163,9 @@ "h": 8, "w": 6, "x": 6, - "y": 42 + "y": 26 }, - "id": 23, + "id": 26, "legend": { "alignAsTable": true, "avg": false, @@ -1969,9 +2252,9 @@ "h": 8, "w": 6, "x": 12, - "y": 42 + "y": 26 }, - "id": 24, + "id": 27, "legend": { "alignAsTable": true, "avg": true, @@ -2126,9 +2409,9 @@ "h": 8, "w": 6, "x": 18, - "y": 42 + "y": 26 }, - "id": 25, + "id": 28, "options": { "legend": { "calcs": [ @@ -2169,9 +2452,9 @@ "h": 1, "w": 24, "x": 0, - "y": 50 + "y": 34 }, - "id": 26, + "id": 29, "panels": [ { "aliasColors": { }, @@ -2185,9 +2468,9 @@ "h": 8, "w": 8, "x": 0, - "y": 51 + "y": 35 }, - "id": 27, + "id": 30, "legend": { "alignAsTable": true, "avg": true, @@ -2272,9 +2555,9 @@ "h": 8, "w": 8, "x": 8, - "y": 51 + "y": 35 }, - "id": 28, + "id": 31, "legend": { "alignAsTable": true, "avg": true, @@ -2359,9 +2642,9 @@ "h": 8, "w": 8, "x": 16, - "y": 51 + "y": 35 }, - "id": 29, + "id": 32, "legend": { "alignAsTable": true, "avg": true, @@ -2446,9 +2729,9 @@ "h": 8, "w": 8, "x": 0, - "y": 59 + "y": 43 }, - "id": 30, + "id": 33, "legend": { "alignAsTable": true, "avg": true, @@ -2533,9 +2816,9 @@ "h": 8, "w": 8, "x": 8, - "y": 59 + "y": 43 }, - "id": 31, + "id": 34, "legend": { "alignAsTable": true, "avg": true, @@ -2620,9 +2903,9 @@ "h": 8, "w": 8, "x": 16, - "y": 59 + "y": 43 }, - "id": 32, + "id": 35, "legend": { "alignAsTable": true, "avg": true, @@ -2711,9 +2994,9 @@ "h": 1, "w": 24, "x": 0, - "y": 67 + "y": 51 }, - "id": 33, + "id": 36, "panels": [ { "aliasColors": { }, @@ -2727,9 +3010,9 @@ "h": 8, "w": 8, "x": 0, - "y": 68 + "y": 52 }, - "id": 34, + "id": 37, "legend": { "alignAsTable": true, "avg": true, @@ -2814,9 +3097,9 @@ "h": 8, "w": 8, "x": 8, - "y": 68 + "y": 52 }, - "id": 35, + "id": 38, "legend": { "alignAsTable": true, "avg": true, @@ -2901,9 +3184,9 @@ "h": 8, "w": 8, "x": 16, - "y": 68 + "y": 52 }, - "id": 36, + "id": 39, "legend": { "alignAsTable": true, "avg": true, @@ -2988,9 +3271,9 @@ "h": 8, "w": 12, "x": 0, - "y": 76 + "y": 60 }, - "id": 37, + "id": 40, "legend": { "alignAsTable": true, "avg": true, @@ -3076,9 +3359,9 @@ "h": 8, "w": 12, "x": 12, - "y": 76 + "y": 60 }, - "id": 38, + "id": 41, "legend": { "alignAsTable": true, "avg": true, @@ -3165,9 +3448,9 @@ "h": 8, "w": 6, "x": 0, - "y": 84 + "y": 68 }, - "id": 39, + "id": 42, "legend": { "alignAsTable": true, "avg": true, @@ -3253,9 +3536,9 @@ "h": 8, "w": 6, "x": 6, - "y": 84 + "y": 68 }, - "id": 40, + "id": 43, "legend": { "alignAsTable": true, "avg": true, @@ -3342,9 +3625,9 @@ "h": 8, "w": 6, "x": 12, - "y": 84 + "y": 68 }, - "id": 41, + "id": 44, "legend": { "alignAsTable": true, "avg": true, @@ -3430,9 +3713,9 @@ "h": 8, "w": 6, "x": 18, - "y": 84 + "y": 68 }, - "id": 42, + "id": 45, "legend": { "alignAsTable": true, "avg": true, @@ -3519,9 +3802,9 @@ "h": 8, "w": 12, "x": 0, - "y": 92 + "y": 76 }, - "id": 43, + "id": 46, "legend": { "alignAsTable": true, "avg": true, @@ -3607,9 +3890,9 @@ "h": 8, "w": 12, "x": 12, - "y": 92 + "y": 76 }, - "id": 44, + "id": 47, "legend": { "alignAsTable": true, "avg": true, @@ -3696,9 +3979,9 @@ "h": 8, "w": 12, "x": 0, - "y": 100 + "y": 84 }, - "id": 45, + "id": 48, "legend": { "alignAsTable": true, "avg": true, @@ -3783,9 +4066,9 @@ "h": 8, "w": 12, "x": 12, - "y": 100 + "y": 84 }, - "id": 46, + "id": 49, "legend": { "alignAsTable": true, "avg": true, @@ -3870,9 +4153,9 @@ "h": 8, "w": 12, "x": 0, - "y": 108 + "y": 92 }, - "id": 47, + "id": 50, "legend": { "alignAsTable": true, "avg": true, @@ -3958,9 +4241,9 @@ "h": 8, "w": 12, "x": 12, - "y": 108 + "y": 92 }, - "id": 48, + "id": 51, "legend": { "alignAsTable": true, "avg": true, @@ -4047,9 +4330,9 @@ "h": 8, "w": 8, "x": 0, - "y": 116 + "y": 100 }, - "id": 49, + "id": 52, "legend": { "alignAsTable": true, "avg": true, @@ -4134,9 +4417,9 @@ "h": 8, "w": 8, "x": 8, - "y": 116 + "y": 100 }, - "id": 50, + "id": 53, "legend": { "alignAsTable": true, "avg": true, @@ -4221,9 +4504,9 @@ "h": 8, "w": 8, "x": 16, - "y": 116 + "y": 100 }, - "id": 51, + "id": 54, "legend": { "alignAsTable": true, "avg": true, @@ -4309,9 +4592,9 @@ "h": 8, "w": 8, "x": 0, - "y": 124 + "y": 108 }, - "id": 52, + "id": 55, "legend": { "alignAsTable": true, "avg": true, @@ -4399,9 +4682,9 @@ "h": 8, "w": 8, "x": 8, - "y": 124 + "y": 108 }, - "id": 53, + "id": 56, "legend": { "alignAsTable": true, "avg": true, @@ -4489,9 +4772,9 @@ "h": 8, "w": 8, "x": 16, - "y": 124 + "y": 108 }, - "id": 54, + "id": 57, "legend": { "alignAsTable": true, "avg": true, @@ -4582,9 +4865,9 @@ "h": 1, "w": 24, "x": 0, - "y": 132 + "y": 116 }, - "id": 55, + "id": 58, "panels": [ { "content": "`quota_used_ratio` > 90%, `arena_used_ratio` > 90%, 50% < `items_used_ratio` < 90% – your memory is highly fragmented. See [docs](https://www.tarantool.io/en/doc/1.10/reference/reference_lua/box_slab/#lua-function.box.slab.info) for more info.\n\n`quota_used_ratio` > 90%, `arena_used_ratio` > 90%, `items_used_ratio` > 90% – you are running out of memory. You should consider increasing Tarantool’s memory limit (*box.cfg.memtx_memory*).\n", @@ -4593,9 +4876,9 @@ "h": 3, "w": 24, "x": 0, - "y": 133 + "y": 117 }, - "id": 56, + "id": 59, "mode": "markdown", "title": "Slab allocator monitoring information", "type": "text" @@ -4612,9 +4895,9 @@ "h": 8, "w": 8, "x": 0, - "y": 136 + "y": 120 }, - "id": 57, + "id": 60, "legend": { "alignAsTable": true, "avg": false, @@ -4699,9 +4982,9 @@ "h": 8, "w": 8, "x": 8, - "y": 136 + "y": 120 }, - "id": 58, + "id": 61, "legend": { "alignAsTable": true, "avg": false, @@ -4786,9 +5069,9 @@ "h": 8, "w": 8, "x": 16, - "y": 136 + "y": 120 }, - "id": 59, + "id": 62, "legend": { "alignAsTable": true, "avg": false, @@ -4873,9 +5156,9 @@ "h": 8, "w": 8, "x": 0, - "y": 144 + "y": 128 }, - "id": 60, + "id": 63, "legend": { "alignAsTable": true, "avg": false, @@ -4960,9 +5243,9 @@ "h": 8, "w": 8, "x": 8, - "y": 144 + "y": 128 }, - "id": 61, + "id": 64, "legend": { "alignAsTable": true, "avg": false, @@ -5047,9 +5330,9 @@ "h": 8, "w": 8, "x": 16, - "y": 144 + "y": 128 }, - "id": 62, + "id": 65, "legend": { "alignAsTable": true, "avg": false, @@ -5134,9 +5417,9 @@ "h": 8, "w": 8, "x": 0, - "y": 152 + "y": 136 }, - "id": 63, + "id": 66, "legend": { "alignAsTable": true, "avg": false, @@ -5221,9 +5504,9 @@ "h": 8, "w": 8, "x": 8, - "y": 152 + "y": 136 }, - "id": 64, + "id": 67, "legend": { "alignAsTable": true, "avg": false, @@ -5308,9 +5591,9 @@ "h": 8, "w": 8, "x": 16, - "y": 152 + "y": 136 }, - "id": 65, + "id": 68, "legend": { "alignAsTable": true, "avg": false, @@ -5399,9 +5682,9 @@ "h": 1, "w": 24, "x": 0, - "y": 160 + "y": 144 }, - "id": 66, + "id": 69, "panels": [ { "aliasColors": { }, @@ -5415,9 +5698,9 @@ "h": 8, "w": 8, "x": 0, - "y": 161 + "y": 145 }, - "id": 67, + "id": 70, "legend": { "alignAsTable": true, "avg": true, @@ -5502,9 +5785,9 @@ "h": 8, "w": 8, "x": 8, - "y": 161 + "y": 145 }, - "id": 68, + "id": 71, "legend": { "alignAsTable": true, "avg": true, @@ -5589,9 +5872,9 @@ "h": 8, "w": 8, "x": 16, - "y": 161 + "y": 145 }, - "id": 69, + "id": 72, "legend": { "alignAsTable": true, "avg": true, @@ -5676,9 +5959,9 @@ "h": 8, "w": 8, "x": 0, - "y": 169 + "y": 153 }, - "id": 70, + "id": 73, "legend": { "alignAsTable": true, "avg": true, @@ -5763,9 +6046,9 @@ "h": 8, "w": 8, "x": 8, - "y": 169 + "y": 153 }, - "id": 71, + "id": 74, "legend": { "alignAsTable": true, "avg": true, @@ -5850,9 +6133,9 @@ "h": 8, "w": 8, "x": 16, - "y": 169 + "y": 153 }, - "id": 72, + "id": 75, "legend": { "alignAsTable": true, "avg": true, @@ -5937,9 +6220,9 @@ "h": 8, "w": 8, "x": 0, - "y": 177 + "y": 161 }, - "id": 73, + "id": 76, "legend": { "alignAsTable": true, "avg": true, @@ -6024,9 +6307,9 @@ "h": 8, "w": 8, "x": 8, - "y": 177 + "y": 161 }, - "id": 74, + "id": 77, "legend": { "alignAsTable": true, "avg": true, @@ -6111,9 +6394,9 @@ "h": 8, "w": 8, "x": 16, - "y": 177 + "y": 161 }, - "id": 75, + "id": 78, "legend": { "alignAsTable": true, "avg": true, @@ -6198,9 +6481,9 @@ "h": 8, "w": 8, "x": 0, - "y": 185 + "y": 169 }, - "id": 76, + "id": 79, "legend": { "alignAsTable": true, "avg": true, @@ -6285,9 +6568,9 @@ "h": 8, "w": 8, "x": 8, - "y": 185 + "y": 169 }, - "id": 77, + "id": 80, "legend": { "alignAsTable": true, "avg": true, @@ -6372,9 +6655,9 @@ "h": 8, "w": 8, "x": 16, - "y": 185 + "y": 169 }, - "id": 78, + "id": 81, "legend": { "alignAsTable": true, "avg": true, @@ -6459,9 +6742,9 @@ "h": 8, "w": 8, "x": 0, - "y": 193 + "y": 177 }, - "id": 79, + "id": 82, "legend": { "alignAsTable": true, "avg": true, @@ -6546,9 +6829,9 @@ "h": 8, "w": 8, "x": 8, - "y": 193 + "y": 177 }, - "id": 80, + "id": 83, "legend": { "alignAsTable": true, "avg": true, @@ -6633,9 +6916,9 @@ "h": 8, "w": 8, "x": 16, - "y": 193 + "y": 177 }, - "id": 81, + "id": 84, "legend": { "alignAsTable": true, "avg": true, @@ -6721,9 +7004,9 @@ "h": 8, "w": 6, "x": 0, - "y": 201 + "y": 185 }, - "id": 82, + "id": 85, "legend": { "alignAsTable": true, "avg": true, @@ -6810,9 +7093,9 @@ "h": 8, "w": 6, "x": 6, - "y": 201 + "y": 185 }, - "id": 83, + "id": 86, "legend": { "alignAsTable": true, "avg": true, @@ -6898,9 +7181,9 @@ "h": 8, "w": 6, "x": 12, - "y": 201 + "y": 185 }, - "id": 84, + "id": 87, "legend": { "alignAsTable": true, "avg": true, @@ -6987,9 +7270,9 @@ "h": 8, "w": 6, "x": 18, - "y": 201 + "y": 185 }, - "id": 85, + "id": 88, "legend": { "alignAsTable": true, "avg": true, @@ -7075,9 +7358,9 @@ "h": 8, "w": 6, "x": 0, - "y": 209 + "y": 193 }, - "id": 86, + "id": 89, "legend": { "alignAsTable": true, "avg": true, @@ -7164,9 +7447,9 @@ "h": 8, "w": 6, "x": 6, - "y": 209 + "y": 193 }, - "id": 87, + "id": 90, "legend": { "alignAsTable": true, "avg": true, @@ -7252,9 +7535,9 @@ "h": 8, "w": 6, "x": 12, - "y": 209 + "y": 193 }, - "id": 88, + "id": 91, "legend": { "alignAsTable": true, "avg": true, @@ -7341,9 +7624,9 @@ "h": 8, "w": 6, "x": 18, - "y": 209 + "y": 193 }, - "id": 89, + "id": 92, "legend": { "alignAsTable": true, "avg": true, @@ -7429,9 +7712,9 @@ "h": 8, "w": 6, "x": 0, - "y": 217 + "y": 201 }, - "id": 90, + "id": 93, "legend": { "alignAsTable": true, "avg": true, @@ -7518,9 +7801,9 @@ "h": 8, "w": 6, "x": 6, - "y": 217 + "y": 201 }, - "id": 91, + "id": 94, "legend": { "alignAsTable": true, "avg": true, @@ -7606,9 +7889,9 @@ "h": 8, "w": 6, "x": 12, - "y": 217 + "y": 201 }, - "id": 92, + "id": 95, "legend": { "alignAsTable": true, "avg": true, @@ -7695,9 +7978,9 @@ "h": 8, "w": 6, "x": 18, - "y": 217 + "y": 201 }, - "id": 93, + "id": 96, "legend": { "alignAsTable": true, "avg": true, @@ -7786,9 +8069,9 @@ "h": 1, "w": 24, "x": 0, - "y": 225 + "y": 209 }, - "id": 94, + "id": 97, "panels": [ { "aliasColors": { }, @@ -7803,9 +8086,9 @@ "h": 8, "w": 12, "x": 0, - "y": 226 + "y": 210 }, - "id": 95, + "id": 98, "legend": { "alignAsTable": true, "avg": false, @@ -7893,9 +8176,9 @@ "h": 8, "w": 12, "x": 12, - "y": 226 + "y": 210 }, - "id": 96, + "id": 99, "legend": { "alignAsTable": true, "avg": false, @@ -7982,9 +8265,9 @@ "h": 8, "w": 8, "x": 0, - "y": 234 + "y": 218 }, - "id": 97, + "id": 100, "legend": { "alignAsTable": true, "avg": false, @@ -8069,9 +8352,9 @@ "h": 8, "w": 8, "x": 8, - "y": 234 + "y": 218 }, - "id": 98, + "id": 101, "legend": { "alignAsTable": true, "avg": false, @@ -8156,9 +8439,9 @@ "h": 8, "w": 8, "x": 16, - "y": 234 + "y": 218 }, - "id": 99, + "id": 102, "legend": { "alignAsTable": true, "avg": false, @@ -8247,9 +8530,9 @@ "h": 1, "w": 24, "x": 0, - "y": 242 + "y": 226 }, - "id": 100, + "id": 103, "panels": [ { "aliasColors": { }, @@ -8263,9 +8546,9 @@ "h": 8, "w": 12, "x": 0, - "y": 243 + "y": 227 }, - "id": 101, + "id": 104, "legend": { "alignAsTable": true, "avg": false, @@ -8350,9 +8633,9 @@ "h": 8, "w": 12, "x": 12, - "y": 243 + "y": 227 }, - "id": 102, + "id": 105, "legend": { "alignAsTable": true, "avg": false, @@ -8437,9 +8720,9 @@ "h": 8, "w": 8, "x": 0, - "y": 251 + "y": 235 }, - "id": 103, + "id": 106, "legend": { "alignAsTable": true, "avg": true, @@ -8524,9 +8807,9 @@ "h": 8, "w": 8, "x": 8, - "y": 251 + "y": 235 }, - "id": 104, + "id": 107, "legend": { "alignAsTable": true, "avg": true, @@ -8611,9 +8894,9 @@ "h": 8, "w": 8, "x": 16, - "y": 251 + "y": 235 }, - "id": 105, + "id": 108, "legend": { "alignAsTable": true, "avg": true, @@ -8698,9 +8981,9 @@ "h": 8, "w": 8, "x": 0, - "y": 259 + "y": 243 }, - "id": 106, + "id": 109, "legend": { "alignAsTable": true, "avg": true, @@ -8785,9 +9068,9 @@ "h": 8, "w": 8, "x": 8, - "y": 259 + "y": 243 }, - "id": 107, + "id": 110, "legend": { "alignAsTable": true, "avg": true, @@ -8872,9 +9155,9 @@ "h": 8, "w": 8, "x": 16, - "y": 259 + "y": 243 }, - "id": 108, + "id": 111, "legend": { "alignAsTable": true, "avg": true, @@ -8959,9 +9242,9 @@ "h": 8, "w": 8, "x": 0, - "y": 267 + "y": 251 }, - "id": 109, + "id": 112, "legend": { "alignAsTable": true, "avg": false, @@ -9046,9 +9329,9 @@ "h": 8, "w": 8, "x": 8, - "y": 267 + "y": 251 }, - "id": 110, + "id": 113, "legend": { "alignAsTable": true, "avg": false, @@ -9133,9 +9416,9 @@ "h": 8, "w": 8, "x": 16, - "y": 267 + "y": 251 }, - "id": 111, + "id": 114, "legend": { "alignAsTable": true, "avg": false, @@ -9220,9 +9503,9 @@ "h": 8, "w": 6, "x": 0, - "y": 275 + "y": 259 }, - "id": 112, + "id": 115, "legend": { "alignAsTable": true, "avg": true, @@ -9307,9 +9590,9 @@ "h": 8, "w": 6, "x": 6, - "y": 275 + "y": 259 }, - "id": 113, + "id": 116, "legend": { "alignAsTable": true, "avg": true, @@ -9394,9 +9677,9 @@ "h": 8, "w": 6, "x": 12, - "y": 275 + "y": 259 }, - "id": 114, + "id": 117, "legend": { "alignAsTable": true, "avg": true, @@ -9482,9 +9765,9 @@ "h": 8, "w": 6, "x": 18, - "y": 275 + "y": 259 }, - "id": 115, + "id": 118, "legend": { "alignAsTable": true, "avg": true, @@ -9571,9 +9854,9 @@ "h": 8, "w": 6, "x": 0, - "y": 283 + "y": 267 }, - "id": 116, + "id": 119, "legend": { "alignAsTable": true, "avg": false, @@ -9658,9 +9941,9 @@ "h": 8, "w": 6, "x": 6, - "y": 283 + "y": 267 }, - "id": 117, + "id": 120, "legend": { "alignAsTable": true, "avg": false, @@ -9745,9 +10028,9 @@ "h": 8, "w": 6, "x": 12, - "y": 283 + "y": 267 }, - "id": 118, + "id": 121, "legend": { "alignAsTable": true, "avg": true, @@ -9832,9 +10115,9 @@ "h": 8, "w": 6, "x": 18, - "y": 283 + "y": 267 }, - "id": 119, + "id": 122, "legend": { "alignAsTable": true, "avg": true, @@ -9923,9 +10206,9 @@ "h": 1, "w": 24, "x": 0, - "y": 291 + "y": 275 }, - "id": 120, + "id": 123, "panels": [ { "aliasColors": { }, @@ -9939,9 +10222,9 @@ "h": 8, "w": 8, "x": 0, - "y": 292 + "y": 276 }, - "id": 121, + "id": 124, "legend": { "alignAsTable": true, "avg": true, @@ -10027,9 +10310,9 @@ "h": 8, "w": 8, "x": 8, - "y": 292 + "y": 276 }, - "id": 122, + "id": 125, "legend": { "alignAsTable": true, "avg": true, @@ -10115,9 +10398,9 @@ "h": 8, "w": 8, "x": 16, - "y": 292 + "y": 276 }, - "id": 123, + "id": 126, "legend": { "alignAsTable": true, "avg": true, @@ -10203,9 +10486,9 @@ "h": 8, "w": 8, "x": 0, - "y": 300 + "y": 284 }, - "id": 124, + "id": 127, "legend": { "alignAsTable": true, "avg": true, @@ -10291,9 +10574,9 @@ "h": 8, "w": 8, "x": 8, - "y": 300 + "y": 284 }, - "id": 125, + "id": 128, "legend": { "alignAsTable": true, "avg": true, @@ -10379,9 +10662,9 @@ "h": 8, "w": 8, "x": 16, - "y": 300 + "y": 284 }, - "id": 126, + "id": 129, "legend": { "alignAsTable": true, "avg": true, @@ -10471,9 +10754,9 @@ "h": 1, "w": 24, "x": 0, - "y": 308 + "y": 292 }, - "id": 127, + "id": 130, "panels": [ { "aliasColors": { }, @@ -10487,9 +10770,9 @@ "h": 8, "w": 8, "x": 0, - "y": 309 + "y": 293 }, - "id": 128, + "id": 131, "legend": { "alignAsTable": true, "avg": true, @@ -10574,9 +10857,9 @@ "h": 8, "w": 8, "x": 8, - "y": 309 + "y": 293 }, - "id": 129, + "id": 132, "legend": { "alignAsTable": true, "avg": true, @@ -10661,9 +10944,9 @@ "h": 8, "w": 8, "x": 16, - "y": 309 + "y": 293 }, - "id": 130, + "id": 133, "legend": { "alignAsTable": true, "avg": true, @@ -10748,9 +11031,9 @@ "h": 8, "w": 8, "x": 0, - "y": 317 + "y": 301 }, - "id": 131, + "id": 134, "legend": { "alignAsTable": true, "avg": true, @@ -10835,9 +11118,9 @@ "h": 8, "w": 8, "x": 8, - "y": 317 + "y": 301 }, - "id": 132, + "id": 135, "legend": { "alignAsTable": true, "avg": true, @@ -10922,9 +11205,9 @@ "h": 8, "w": 8, "x": 16, - "y": 317 + "y": 301 }, - "id": 133, + "id": 136, "legend": { "alignAsTable": true, "avg": true, @@ -11009,9 +11292,9 @@ "h": 8, "w": 8, "x": 0, - "y": 325 + "y": 309 }, - "id": 134, + "id": 137, "legend": { "alignAsTable": true, "avg": true, @@ -11096,9 +11379,9 @@ "h": 8, "w": 8, "x": 8, - "y": 325 + "y": 309 }, - "id": 135, + "id": 138, "legend": { "alignAsTable": true, "avg": false, @@ -11183,9 +11466,9 @@ "h": 8, "w": 8, "x": 16, - "y": 325 + "y": 309 }, - "id": 136, + "id": 139, "legend": { "alignAsTable": true, "avg": true, @@ -11270,9 +11553,9 @@ "h": 8, "w": 12, "x": 0, - "y": 333 + "y": 317 }, - "id": 137, + "id": 140, "legend": { "alignAsTable": true, "avg": true, @@ -11357,9 +11640,9 @@ "h": 8, "w": 12, "x": 12, - "y": 333 + "y": 317 }, - "id": 138, + "id": 141, "legend": { "alignAsTable": true, "avg": true, @@ -11445,9 +11728,9 @@ "h": 8, "w": 8, "x": 0, - "y": 341 + "y": 325 }, - "id": 139, + "id": 142, "legend": { "alignAsTable": true, "avg": false, @@ -11534,9 +11817,9 @@ "h": 8, "w": 8, "x": 8, - "y": 341 + "y": 325 }, - "id": 140, + "id": 143, "legend": { "alignAsTable": true, "avg": true, @@ -11621,9 +11904,9 @@ "h": 8, "w": 8, "x": 16, - "y": 341 + "y": 325 }, - "id": 141, + "id": 144, "legend": { "alignAsTable": true, "avg": true, @@ -11712,9 +11995,9 @@ "h": 1, "w": 24, "x": 0, - "y": 349 + "y": 333 }, - "id": 142, + "id": 145, "panels": [ { "aliasColors": { }, @@ -11728,9 +12011,9 @@ "h": 8, "w": 6, "x": 0, - "y": 350 + "y": 334 }, - "id": 143, + "id": 146, "legend": { "alignAsTable": true, "avg": true, @@ -11815,9 +12098,9 @@ "h": 8, "w": 6, "x": 6, - "y": 350 + "y": 334 }, - "id": 144, + "id": 147, "legend": { "alignAsTable": true, "avg": true, @@ -11902,9 +12185,9 @@ "h": 8, "w": 6, "x": 12, - "y": 350 + "y": 334 }, - "id": 145, + "id": 148, "legend": { "alignAsTable": true, "avg": true, @@ -11989,9 +12272,9 @@ "h": 8, "w": 6, "x": 18, - "y": 350 + "y": 334 }, - "id": 146, + "id": 149, "legend": { "alignAsTable": true, "avg": true, @@ -12076,9 +12359,9 @@ "h": 8, "w": 12, "x": 0, - "y": 358 + "y": 342 }, - "id": 147, + "id": 150, "legend": { "alignAsTable": true, "avg": true, @@ -12163,9 +12446,9 @@ "h": 8, "w": 12, "x": 12, - "y": 358 + "y": 342 }, - "id": 148, + "id": 151, "legend": { "alignAsTable": true, "avg": true, @@ -12250,9 +12533,9 @@ "h": 8, "w": 8, "x": 0, - "y": 366 + "y": 350 }, - "id": 149, + "id": 152, "legend": { "alignAsTable": true, "avg": true, @@ -12337,9 +12620,9 @@ "h": 8, "w": 8, "x": 8, - "y": 366 + "y": 350 }, - "id": 150, + "id": 153, "legend": { "alignAsTable": true, "avg": true, @@ -12424,9 +12707,9 @@ "h": 8, "w": 8, "x": 16, - "y": 366 + "y": 350 }, - "id": 151, + "id": 154, "legend": { "alignAsTable": true, "avg": true, @@ -12511,9 +12794,9 @@ "h": 8, "w": 8, "x": 0, - "y": 374 + "y": 358 }, - "id": 152, + "id": 155, "legend": { "alignAsTable": true, "avg": true, @@ -12598,9 +12881,9 @@ "h": 8, "w": 8, "x": 8, - "y": 374 + "y": 358 }, - "id": 153, + "id": 156, "legend": { "alignAsTable": true, "avg": true, @@ -12685,9 +12968,9 @@ "h": 8, "w": 8, "x": 16, - "y": 374 + "y": 358 }, - "id": 154, + "id": 157, "legend": { "alignAsTable": true, "avg": true, @@ -12773,9 +13056,9 @@ "h": 8, "w": 6, "x": 0, - "y": 382 + "y": 366 }, - "id": 155, + "id": 158, "legend": { "alignAsTable": true, "avg": true, @@ -12863,9 +13146,9 @@ "h": 8, "w": 6, "x": 6, - "y": 382 + "y": 366 }, - "id": 156, + "id": 159, "legend": { "alignAsTable": true, "avg": true, @@ -12953,9 +13236,9 @@ "h": 8, "w": 6, "x": 12, - "y": 382 + "y": 366 }, - "id": 157, + "id": 160, "legend": { "alignAsTable": true, "avg": true, @@ -13043,9 +13326,9 @@ "h": 8, "w": 6, "x": 18, - "y": 382 + "y": 366 }, - "id": 158, + "id": 161, "legend": { "alignAsTable": true, "avg": true, @@ -13132,9 +13415,9 @@ "h": 8, "w": 8, "x": 0, - "y": 390 + "y": 374 }, - "id": 159, + "id": 162, "legend": { "alignAsTable": true, "avg": true, @@ -13219,9 +13502,9 @@ "h": 8, "w": 8, "x": 8, - "y": 390 + "y": 374 }, - "id": 160, + "id": 163, "legend": { "alignAsTable": true, "avg": true, @@ -13306,9 +13589,9 @@ "h": 8, "w": 8, "x": 16, - "y": 390 + "y": 374 }, - "id": 161, + "id": 164, "legend": { "alignAsTable": true, "avg": true, @@ -13397,9 +13680,9 @@ "h": 1, "w": 24, "x": 0, - "y": 398 + "y": 382 }, - "id": 162, + "id": 165, "panels": [ { "aliasColors": { }, @@ -13413,9 +13696,9 @@ "h": 8, "w": 8, "x": 0, - "y": 399 + "y": 383 }, - "id": 163, + "id": 166, "legend": { "alignAsTable": true, "avg": true, @@ -13500,9 +13783,9 @@ "h": 8, "w": 8, "x": 8, - "y": 399 + "y": 383 }, - "id": 164, + "id": 167, "legend": { "alignAsTable": true, "avg": true, @@ -13587,9 +13870,9 @@ "h": 8, "w": 8, "x": 16, - "y": 399 + "y": 383 }, - "id": 165, + "id": 168, "legend": { "alignAsTable": true, "avg": true, @@ -13674,9 +13957,9 @@ "h": 8, "w": 8, "x": 0, - "y": 407 + "y": 391 }, - "id": 166, + "id": 169, "legend": { "alignAsTable": true, "avg": true, @@ -13761,9 +14044,9 @@ "h": 8, "w": 8, "x": 8, - "y": 407 + "y": 391 }, - "id": 167, + "id": 170, "legend": { "alignAsTable": true, "avg": true, @@ -13848,9 +14131,9 @@ "h": 8, "w": 8, "x": 16, - "y": 407 + "y": 391 }, - "id": 168, + "id": 171, "legend": { "alignAsTable": true, "avg": true, @@ -13935,9 +14218,9 @@ "h": 8, "w": 8, "x": 0, - "y": 415 + "y": 399 }, - "id": 169, + "id": 172, "legend": { "alignAsTable": true, "avg": true, @@ -14022,9 +14305,9 @@ "h": 8, "w": 8, "x": 8, - "y": 415 + "y": 399 }, - "id": 170, + "id": 173, "legend": { "alignAsTable": true, "avg": true, @@ -14109,9 +14392,9 @@ "h": 8, "w": 8, "x": 16, - "y": 415 + "y": 399 }, - "id": 171, + "id": 174, "legend": { "alignAsTable": true, "avg": true, @@ -14196,9 +14479,9 @@ "h": 8, "w": 8, "x": 0, - "y": 423 + "y": 407 }, - "id": 172, + "id": 175, "legend": { "alignAsTable": true, "avg": true, @@ -14283,9 +14566,9 @@ "h": 8, "w": 8, "x": 8, - "y": 423 + "y": 407 }, - "id": 173, + "id": 176, "legend": { "alignAsTable": true, "avg": true, @@ -14370,9 +14653,9 @@ "h": 8, "w": 8, "x": 16, - "y": 423 + "y": 407 }, - "id": 174, + "id": 177, "legend": { "alignAsTable": true, "avg": true, @@ -14457,9 +14740,9 @@ "h": 8, "w": 8, "x": 0, - "y": 431 + "y": 415 }, - "id": 175, + "id": 178, "legend": { "alignAsTable": true, "avg": true, @@ -14544,9 +14827,9 @@ "h": 8, "w": 8, "x": 8, - "y": 431 + "y": 415 }, - "id": 176, + "id": 179, "legend": { "alignAsTable": true, "avg": true, @@ -14631,9 +14914,9 @@ "h": 8, "w": 8, "x": 16, - "y": 431 + "y": 415 }, - "id": 177, + "id": 180, "legend": { "alignAsTable": true, "avg": true, @@ -14722,9 +15005,9 @@ "h": 1, "w": 24, "x": 0, - "y": 439 + "y": 423 }, - "id": 178, + "id": 181, "panels": [ { "aliasColors": { }, @@ -14738,9 +15021,9 @@ "h": 8, "w": 6, "x": 0, - "y": 440 + "y": 424 }, - "id": 179, + "id": 182, "legend": { "alignAsTable": true, "avg": true, @@ -14825,9 +15108,9 @@ "h": 8, "w": 6, "x": 6, - "y": 440 + "y": 424 }, - "id": 180, + "id": 183, "legend": { "alignAsTable": true, "avg": true, @@ -14912,9 +15195,9 @@ "h": 8, "w": 6, "x": 12, - "y": 440 + "y": 424 }, - "id": 181, + "id": 184, "legend": { "alignAsTable": true, "avg": true, @@ -14999,9 +15282,9 @@ "h": 8, "w": 6, "x": 18, - "y": 440 + "y": 424 }, - "id": 182, + "id": 185, "legend": { "alignAsTable": true, "avg": true, @@ -15086,9 +15369,9 @@ "h": 8, "w": 8, "x": 0, - "y": 448 + "y": 432 }, - "id": 183, + "id": 186, "legend": { "alignAsTable": true, "avg": true, @@ -15173,9 +15456,9 @@ "h": 8, "w": 8, "x": 8, - "y": 448 + "y": 432 }, - "id": 184, + "id": 187, "legend": { "alignAsTable": true, "avg": true, @@ -15260,9 +15543,9 @@ "h": 8, "w": 8, "x": 16, - "y": 448 + "y": 432 }, - "id": 185, + "id": 188, "legend": { "alignAsTable": true, "avg": true, @@ -15347,9 +15630,9 @@ "h": 8, "w": 6, "x": 0, - "y": 456 + "y": 440 }, - "id": 186, + "id": 189, "legend": { "alignAsTable": true, "avg": true, @@ -15434,9 +15717,9 @@ "h": 8, "w": 6, "x": 6, - "y": 456 + "y": 440 }, - "id": 187, + "id": 190, "legend": { "alignAsTable": true, "avg": true, @@ -15521,9 +15804,9 @@ "h": 8, "w": 6, "x": 12, - "y": 456 + "y": 440 }, - "id": 188, + "id": 191, "legend": { "alignAsTable": true, "avg": true, @@ -15608,9 +15891,9 @@ "h": 8, "w": 6, "x": 18, - "y": 456 + "y": 440 }, - "id": 189, + "id": 192, "legend": { "alignAsTable": true, "avg": true, @@ -15695,9 +15978,9 @@ "h": 8, "w": 6, "x": 0, - "y": 464 + "y": 448 }, - "id": 190, + "id": 193, "legend": { "alignAsTable": true, "avg": true, @@ -15782,9 +16065,9 @@ "h": 8, "w": 6, "x": 6, - "y": 464 + "y": 448 }, - "id": 191, + "id": 194, "legend": { "alignAsTable": true, "avg": true, @@ -15869,9 +16152,9 @@ "h": 8, "w": 6, "x": 12, - "y": 464 + "y": 448 }, - "id": 192, + "id": 195, "legend": { "alignAsTable": true, "avg": true, @@ -15956,9 +16239,9 @@ "h": 8, "w": 6, "x": 18, - "y": 464 + "y": 448 }, - "id": 193, + "id": 196, "legend": { "alignAsTable": true, "avg": true, @@ -16043,9 +16326,9 @@ "h": 8, "w": 6, "x": 0, - "y": 472 + "y": 456 }, - "id": 194, + "id": 197, "legend": { "alignAsTable": true, "avg": true, @@ -16130,9 +16413,9 @@ "h": 8, "w": 6, "x": 6, - "y": 472 + "y": 456 }, - "id": 195, + "id": 198, "legend": { "alignAsTable": true, "avg": true, @@ -16217,9 +16500,9 @@ "h": 8, "w": 6, "x": 12, - "y": 472 + "y": 456 }, - "id": 196, + "id": 199, "legend": { "alignAsTable": true, "avg": true, @@ -16304,9 +16587,9 @@ "h": 8, "w": 6, "x": 18, - "y": 472 + "y": 456 }, - "id": 197, + "id": 200, "legend": { "alignAsTable": true, "avg": true, @@ -16391,9 +16674,9 @@ "h": 8, "w": 6, "x": 0, - "y": 480 + "y": 464 }, - "id": 198, + "id": 201, "legend": { "alignAsTable": true, "avg": true, @@ -16478,9 +16761,9 @@ "h": 8, "w": 6, "x": 6, - "y": 480 + "y": 464 }, - "id": 199, + "id": 202, "legend": { "alignAsTable": true, "avg": true, @@ -16565,9 +16848,9 @@ "h": 8, "w": 6, "x": 12, - "y": 480 + "y": 464 }, - "id": 200, + "id": 203, "legend": { "alignAsTable": true, "avg": true, @@ -16652,9 +16935,9 @@ "h": 8, "w": 6, "x": 18, - "y": 480 + "y": 464 }, - "id": 201, + "id": 204, "legend": { "alignAsTable": true, "avg": true, @@ -16739,9 +17022,9 @@ "h": 8, "w": 6, "x": 0, - "y": 488 + "y": 472 }, - "id": 202, + "id": 205, "legend": { "alignAsTable": true, "avg": true, @@ -16826,9 +17109,9 @@ "h": 8, "w": 6, "x": 6, - "y": 488 + "y": 472 }, - "id": 203, + "id": 206, "legend": { "alignAsTable": true, "avg": true, @@ -16913,9 +17196,9 @@ "h": 8, "w": 6, "x": 12, - "y": 488 + "y": 472 }, - "id": 204, + "id": 207, "legend": { "alignAsTable": true, "avg": true, @@ -17000,9 +17283,9 @@ "h": 8, "w": 6, "x": 18, - "y": 488 + "y": 472 }, - "id": 205, + "id": 208, "legend": { "alignAsTable": true, "avg": true, @@ -17087,9 +17370,9 @@ "h": 8, "w": 6, "x": 0, - "y": 496 + "y": 480 }, - "id": 206, + "id": 209, "legend": { "alignAsTable": true, "avg": true, @@ -17174,9 +17457,9 @@ "h": 8, "w": 6, "x": 6, - "y": 496 + "y": 480 }, - "id": 207, + "id": 210, "legend": { "alignAsTable": true, "avg": true, @@ -17261,9 +17544,9 @@ "h": 8, "w": 6, "x": 12, - "y": 496 + "y": 480 }, - "id": 208, + "id": 211, "legend": { "alignAsTable": true, "avg": true, @@ -17348,9 +17631,9 @@ "h": 8, "w": 6, "x": 18, - "y": 496 + "y": 480 }, - "id": 209, + "id": 212, "legend": { "alignAsTable": true, "avg": true, @@ -17435,9 +17718,9 @@ "h": 8, "w": 6, "x": 0, - "y": 504 + "y": 488 }, - "id": 210, + "id": 213, "legend": { "alignAsTable": true, "avg": true, @@ -17522,9 +17805,9 @@ "h": 8, "w": 6, "x": 6, - "y": 504 + "y": 488 }, - "id": 211, + "id": 214, "legend": { "alignAsTable": true, "avg": true, @@ -17609,9 +17892,9 @@ "h": 8, "w": 6, "x": 12, - "y": 504 + "y": 488 }, - "id": 212, + "id": 215, "legend": { "alignAsTable": true, "avg": true, @@ -17696,9 +17979,9 @@ "h": 8, "w": 6, "x": 18, - "y": 504 + "y": 488 }, - "id": 213, + "id": 216, "legend": { "alignAsTable": true, "avg": true, @@ -17783,9 +18066,9 @@ "h": 8, "w": 6, "x": 0, - "y": 512 + "y": 496 }, - "id": 214, + "id": 217, "legend": { "alignAsTable": true, "avg": true, @@ -17870,9 +18153,9 @@ "h": 8, "w": 6, "x": 6, - "y": 512 + "y": 496 }, - "id": 215, + "id": 218, "legend": { "alignAsTable": true, "avg": true, @@ -17957,9 +18240,9 @@ "h": 8, "w": 6, "x": 12, - "y": 512 + "y": 496 }, - "id": 216, + "id": 219, "legend": { "alignAsTable": true, "avg": true, @@ -18044,9 +18327,9 @@ "h": 8, "w": 6, "x": 18, - "y": 512 + "y": 496 }, - "id": 217, + "id": 220, "legend": { "alignAsTable": true, "avg": true, @@ -18131,9 +18414,9 @@ "h": 8, "w": 6, "x": 0, - "y": 520 + "y": 504 }, - "id": 218, + "id": 221, "legend": { "alignAsTable": true, "avg": true, @@ -18218,9 +18501,9 @@ "h": 8, "w": 6, "x": 6, - "y": 520 + "y": 504 }, - "id": 219, + "id": 222, "legend": { "alignAsTable": true, "avg": true, @@ -18305,9 +18588,9 @@ "h": 8, "w": 6, "x": 12, - "y": 520 + "y": 504 }, - "id": 220, + "id": 223, "legend": { "alignAsTable": true, "avg": true, @@ -18392,9 +18675,9 @@ "h": 8, "w": 6, "x": 18, - "y": 520 + "y": 504 }, - "id": 221, + "id": 224, "legend": { "alignAsTable": true, "avg": true, @@ -18479,9 +18762,9 @@ "h": 8, "w": 6, "x": 0, - "y": 528 + "y": 512 }, - "id": 222, + "id": 225, "legend": { "alignAsTable": true, "avg": true, @@ -18566,9 +18849,9 @@ "h": 8, "w": 6, "x": 6, - "y": 528 + "y": 512 }, - "id": 223, + "id": 226, "legend": { "alignAsTable": true, "avg": true, @@ -18653,9 +18936,9 @@ "h": 8, "w": 6, "x": 12, - "y": 528 + "y": 512 }, - "id": 224, + "id": 227, "legend": { "alignAsTable": true, "avg": true, @@ -18740,9 +19023,9 @@ "h": 8, "w": 6, "x": 18, - "y": 528 + "y": 512 }, - "id": 225, + "id": 228, "legend": { "alignAsTable": true, "avg": true, @@ -18827,9 +19110,9 @@ "h": 8, "w": 6, "x": 0, - "y": 536 + "y": 520 }, - "id": 226, + "id": 229, "legend": { "alignAsTable": true, "avg": true, @@ -18914,9 +19197,9 @@ "h": 8, "w": 6, "x": 6, - "y": 536 + "y": 520 }, - "id": 227, + "id": 230, "legend": { "alignAsTable": true, "avg": true, @@ -19001,9 +19284,9 @@ "h": 8, "w": 6, "x": 12, - "y": 536 + "y": 520 }, - "id": 228, + "id": 231, "legend": { "alignAsTable": true, "avg": true, @@ -19088,9 +19371,9 @@ "h": 8, "w": 6, "x": 18, - "y": 536 + "y": 520 }, - "id": 229, + "id": 232, "legend": { "alignAsTable": true, "avg": true, @@ -19175,9 +19458,9 @@ "h": 8, "w": 6, "x": 0, - "y": 544 + "y": 528 }, - "id": 230, + "id": 233, "legend": { "alignAsTable": true, "avg": true, @@ -19262,9 +19545,9 @@ "h": 8, "w": 6, "x": 6, - "y": 544 + "y": 528 }, - "id": 231, + "id": 234, "legend": { "alignAsTable": true, "avg": true, @@ -19349,9 +19632,9 @@ "h": 8, "w": 6, "x": 12, - "y": 544 + "y": 528 }, - "id": 232, + "id": 235, "legend": { "alignAsTable": true, "avg": true, @@ -19436,9 +19719,9 @@ "h": 8, "w": 6, "x": 18, - "y": 544 + "y": 528 }, - "id": 233, + "id": 236, "legend": { "alignAsTable": true, "avg": true, @@ -19523,9 +19806,9 @@ "h": 8, "w": 6, "x": 0, - "y": 552 + "y": 536 }, - "id": 234, + "id": 237, "legend": { "alignAsTable": true, "avg": true, @@ -19610,9 +19893,9 @@ "h": 8, "w": 6, "x": 6, - "y": 552 + "y": 536 }, - "id": 235, + "id": 238, "legend": { "alignAsTable": true, "avg": true, @@ -19697,9 +19980,9 @@ "h": 8, "w": 6, "x": 12, - "y": 552 + "y": 536 }, - "id": 236, + "id": 239, "legend": { "alignAsTable": true, "avg": true, @@ -19784,9 +20067,9 @@ "h": 8, "w": 6, "x": 18, - "y": 552 + "y": 536 }, - "id": 237, + "id": 240, "legend": { "alignAsTable": true, "avg": true, @@ -19875,9 +20158,9 @@ "h": 1, "w": 24, "x": 0, - "y": 560 + "y": 544 }, - "id": 238, + "id": 241, "panels": [ { "aliasColors": { }, @@ -19891,9 +20174,9 @@ "h": 8, "w": 12, "x": 0, - "y": 561 + "y": 545 }, - "id": 239, + "id": 242, "legend": { "alignAsTable": true, "avg": true, @@ -19978,9 +20261,9 @@ "h": 8, "w": 12, "x": 12, - "y": 561 + "y": 545 }, - "id": 240, + "id": 243, "legend": { "alignAsTable": true, "avg": true, @@ -20066,9 +20349,9 @@ "h": 8, "w": 12, "x": 0, - "y": 569 + "y": 553 }, - "id": 241, + "id": 244, "legend": { "alignAsTable": true, "avg": true, @@ -20155,9 +20438,9 @@ "h": 8, "w": 12, "x": 12, - "y": 569 + "y": 553 }, - "id": 242, + "id": 245, "legend": { "alignAsTable": true, "avg": true, diff --git a/tests/Prometheus/dashboard_with_custom_panels_compiled.json b/tests/Prometheus/dashboard_with_custom_panels_compiled.json index e2689df..8625c7f 100644 --- a/tests/Prometheus/dashboard_with_custom_panels_compiled.json +++ b/tests/Prometheus/dashboard_with_custom_panels_compiled.json @@ -1580,6 +1580,289 @@ "y": 33 }, "id": 19, + "panels": [ + { + "columns": [ ], + "datasource": "$prometheus", + "fieldConfig": { + "defaults": { + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "footer": { + "reducers": [ ] + }, + "inspect": false + }, + "mappings": [ ], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "green", + "value": 0 + }, + { + "color": "red", + "value": 80 + } + ] + } + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "status" + }, + "properties": [ + { + "id": "custom.cellOptions", + "value": { + "type": "color-text" + } + }, + { + "id": "mappings", + "value": [ + { + "options": { + "0": { + "color": "yellow", + "text": "passive" + }, + "1": { + "color": "green", + "text": "active" + } + }, + "type": "value" + }, + { + "options": { + "match": "null", + "result": { + "color": "red", + "text": "disconnected" + } + }, + "type": "special" + } + ] + } + ] + } + ] + }, + "gridPos": { + "h": 14, + "w": 10, + "x": 0, + "y": 3 + }, + "id": 20, + "links": [ ], + "options": { + "cellHeight": "sm", + "showHeader": true + }, + "styles": [ ], + "targets": [ + { + "expr": "tarantool_coordinator_active{job=~\"$job\"}", + "format": "table", + "instant": true, + "intervalFactor": 2, + "legendFormat": "", + "refId": "A" + } + ], + "timeFrom": null, + "timeShift": null, + "title": "Coordinators status", + "transform": "table", + "transformations": [ + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "__name__": true, + "instance": true, + "job": true + }, + "indexByName": { + "Value": 1, + "alias": 0 + }, + "renameByName": { + "Value": "status", + "alias": "uuid" + } + } + } + ], + "type": "table" + }, + { + "columns": [ ], + "datasource": "$prometheus", + "fieldConfig": { + "defaults": { + "custom": { + "align": "auto", + "cellOptions": { + "type": "auto" + }, + "footer": { + "reducers": [ ] + }, + "inspect": false + }, + "mappings": [ ], + "thresholds": { + "mode": "absolute", + "steps": [ + { + "color": "red", + "value": null + }, + { + "color": "green", + "value": 1 + } + ] + } + }, + "overrides": [ + { + "matcher": { + "id": "byName", + "options": "status" + }, + "properties": [ + { + "id": "custom.cellOptions", + "value": { + "type": "color-text" + } + }, + { + "id": "mappings", + "value": [ + { + "options": { + "0": { + "color": "red", + "text": "down" + }, + "1": { + "color": "green", + "text": "alive" + } + }, + "type": "value" + }, + { + "options": { + "match": "nan", + "result": { + "color": "red", + "text": "unknown" + } + }, + "type": "special" + } + ] + } + ] + } + ] + }, + "gridPos": { + "h": 14, + "w": 14, + "x": 10, + "y": 3 + }, + "id": 21, + "links": [ ], + "options": { + "cellHeight": "sm", + "showHeader": true + }, + "styles": [ ], + "targets": [ + { + "expr": "tarantool_instance_status{job=~\"$job\"}", + "format": "table", + "instant": true, + "intervalFactor": 2, + "legendFormat": "", + "refId": "A" + } + ], + "timeFrom": null, + "timeShift": null, + "title": "Instances seen by coordinators", + "transform": "table", + "transformations": [ + { + "id": "organize", + "options": { + "excludeByName": { + "Time": true, + "__name__": true, + "endpoint": true, + "exported_job": true, + "instance": true, + "job": true, + "namespace": true, + "pod": true, + "service": true + }, + "renameByName": { + "Value": "status", + "alias": "coordinator uuid", + "exported_instance": "instance" + } + } + }, + { + "id": "organize", + "options": { + "indexByName": { + "coordinator uuid": 0, + "instance": 2, + "replicaset": 1, + "status": 3 + } + } + } + ], + "type": "table" + } + ], + "repeat": null, + "repeatIteration": null, + "repeatRowId": null, + "showTitle": true, + "title": "Failover coordinator", + "titleSize": "h6", + "type": "row" + }, + { + "collapse": true, + "collapsed": true, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 17 + }, + "id": 22, "panels": [ { "datasource": "$prometheus", @@ -1663,9 +1946,9 @@ "h": 8, "w": 12, "x": 0, - "y": 34 + "y": 18 }, - "id": 20, + "id": 23, "options": { "legend": { "calcs": [ @@ -1702,9 +1985,9 @@ "h": 8, "w": 12, "x": 12, - "y": 34 + "y": 18 }, - "id": 21, + "id": 24, "legend": { "alignAsTable": true, "avg": false, @@ -1790,9 +2073,9 @@ "h": 8, "w": 6, "x": 0, - "y": 42 + "y": 26 }, - "id": 22, + "id": 25, "legend": { "alignAsTable": true, "avg": false, @@ -1880,9 +2163,9 @@ "h": 8, "w": 6, "x": 6, - "y": 42 + "y": 26 }, - "id": 23, + "id": 26, "legend": { "alignAsTable": true, "avg": false, @@ -1969,9 +2252,9 @@ "h": 8, "w": 6, "x": 12, - "y": 42 + "y": 26 }, - "id": 24, + "id": 27, "legend": { "alignAsTable": true, "avg": true, @@ -2126,9 +2409,9 @@ "h": 8, "w": 6, "x": 18, - "y": 42 + "y": 26 }, - "id": 25, + "id": 28, "options": { "legend": { "calcs": [ @@ -2169,9 +2452,9 @@ "h": 1, "w": 24, "x": 0, - "y": 50 + "y": 34 }, - "id": 26, + "id": 29, "panels": [ { "aliasColors": { }, @@ -2185,9 +2468,9 @@ "h": 8, "w": 8, "x": 0, - "y": 51 + "y": 35 }, - "id": 27, + "id": 30, "legend": { "alignAsTable": true, "avg": true, @@ -2272,9 +2555,9 @@ "h": 8, "w": 8, "x": 8, - "y": 51 + "y": 35 }, - "id": 28, + "id": 31, "legend": { "alignAsTable": true, "avg": true, @@ -2359,9 +2642,9 @@ "h": 8, "w": 8, "x": 16, - "y": 51 + "y": 35 }, - "id": 29, + "id": 32, "legend": { "alignAsTable": true, "avg": true, @@ -2446,9 +2729,9 @@ "h": 8, "w": 8, "x": 0, - "y": 59 + "y": 43 }, - "id": 30, + "id": 33, "legend": { "alignAsTable": true, "avg": true, @@ -2533,9 +2816,9 @@ "h": 8, "w": 8, "x": 8, - "y": 59 + "y": 43 }, - "id": 31, + "id": 34, "legend": { "alignAsTable": true, "avg": true, @@ -2620,9 +2903,9 @@ "h": 8, "w": 8, "x": 16, - "y": 59 + "y": 43 }, - "id": 32, + "id": 35, "legend": { "alignAsTable": true, "avg": true, @@ -2711,9 +2994,9 @@ "h": 1, "w": 24, "x": 0, - "y": 67 + "y": 51 }, - "id": 33, + "id": 36, "panels": [ { "aliasColors": { }, @@ -2727,9 +3010,9 @@ "h": 8, "w": 8, "x": 0, - "y": 68 + "y": 52 }, - "id": 34, + "id": 37, "legend": { "alignAsTable": true, "avg": true, @@ -2814,9 +3097,9 @@ "h": 8, "w": 8, "x": 8, - "y": 68 + "y": 52 }, - "id": 35, + "id": 38, "legend": { "alignAsTable": true, "avg": true, @@ -2901,9 +3184,9 @@ "h": 8, "w": 8, "x": 16, - "y": 68 + "y": 52 }, - "id": 36, + "id": 39, "legend": { "alignAsTable": true, "avg": true, @@ -2988,9 +3271,9 @@ "h": 8, "w": 12, "x": 0, - "y": 76 + "y": 60 }, - "id": 37, + "id": 40, "legend": { "alignAsTable": true, "avg": true, @@ -3076,9 +3359,9 @@ "h": 8, "w": 12, "x": 12, - "y": 76 + "y": 60 }, - "id": 38, + "id": 41, "legend": { "alignAsTable": true, "avg": true, @@ -3165,9 +3448,9 @@ "h": 8, "w": 6, "x": 0, - "y": 84 + "y": 68 }, - "id": 39, + "id": 42, "legend": { "alignAsTable": true, "avg": true, @@ -3253,9 +3536,9 @@ "h": 8, "w": 6, "x": 6, - "y": 84 + "y": 68 }, - "id": 40, + "id": 43, "legend": { "alignAsTable": true, "avg": true, @@ -3342,9 +3625,9 @@ "h": 8, "w": 6, "x": 12, - "y": 84 + "y": 68 }, - "id": 41, + "id": 44, "legend": { "alignAsTable": true, "avg": true, @@ -3430,9 +3713,9 @@ "h": 8, "w": 6, "x": 18, - "y": 84 + "y": 68 }, - "id": 42, + "id": 45, "legend": { "alignAsTable": true, "avg": true, @@ -3519,9 +3802,9 @@ "h": 8, "w": 12, "x": 0, - "y": 92 + "y": 76 }, - "id": 43, + "id": 46, "legend": { "alignAsTable": true, "avg": true, @@ -3607,9 +3890,9 @@ "h": 8, "w": 12, "x": 12, - "y": 92 + "y": 76 }, - "id": 44, + "id": 47, "legend": { "alignAsTable": true, "avg": true, @@ -3696,9 +3979,9 @@ "h": 8, "w": 12, "x": 0, - "y": 100 + "y": 84 }, - "id": 45, + "id": 48, "legend": { "alignAsTable": true, "avg": true, @@ -3783,9 +4066,9 @@ "h": 8, "w": 12, "x": 12, - "y": 100 + "y": 84 }, - "id": 46, + "id": 49, "legend": { "alignAsTable": true, "avg": true, @@ -3870,9 +4153,9 @@ "h": 8, "w": 12, "x": 0, - "y": 108 + "y": 92 }, - "id": 47, + "id": 50, "legend": { "alignAsTable": true, "avg": true, @@ -3958,9 +4241,9 @@ "h": 8, "w": 12, "x": 12, - "y": 108 + "y": 92 }, - "id": 48, + "id": 51, "legend": { "alignAsTable": true, "avg": true, @@ -4047,9 +4330,9 @@ "h": 8, "w": 8, "x": 0, - "y": 116 + "y": 100 }, - "id": 49, + "id": 52, "legend": { "alignAsTable": true, "avg": true, @@ -4134,9 +4417,9 @@ "h": 8, "w": 8, "x": 8, - "y": 116 + "y": 100 }, - "id": 50, + "id": 53, "legend": { "alignAsTable": true, "avg": true, @@ -4221,9 +4504,9 @@ "h": 8, "w": 8, "x": 16, - "y": 116 + "y": 100 }, - "id": 51, + "id": 54, "legend": { "alignAsTable": true, "avg": true, @@ -4309,9 +4592,9 @@ "h": 8, "w": 8, "x": 0, - "y": 124 + "y": 108 }, - "id": 52, + "id": 55, "legend": { "alignAsTable": true, "avg": true, @@ -4399,9 +4682,9 @@ "h": 8, "w": 8, "x": 8, - "y": 124 + "y": 108 }, - "id": 53, + "id": 56, "legend": { "alignAsTable": true, "avg": true, @@ -4489,9 +4772,9 @@ "h": 8, "w": 8, "x": 16, - "y": 124 + "y": 108 }, - "id": 54, + "id": 57, "legend": { "alignAsTable": true, "avg": true, @@ -4582,9 +4865,9 @@ "h": 1, "w": 24, "x": 0, - "y": 132 + "y": 116 }, - "id": 55, + "id": 58, "panels": [ { "content": "`quota_used_ratio` > 90%, `arena_used_ratio` > 90%, 50% < `items_used_ratio` < 90% – your memory is highly fragmented. See [docs](https://www.tarantool.io/en/doc/1.10/reference/reference_lua/box_slab/#lua-function.box.slab.info) for more info.\n\n`quota_used_ratio` > 90%, `arena_used_ratio` > 90%, `items_used_ratio` > 90% – you are running out of memory. You should consider increasing Tarantool’s memory limit (*box.cfg.memtx_memory*).\n", @@ -4593,9 +4876,9 @@ "h": 3, "w": 24, "x": 0, - "y": 133 + "y": 117 }, - "id": 56, + "id": 59, "mode": "markdown", "title": "Slab allocator monitoring information", "type": "text" @@ -4612,9 +4895,9 @@ "h": 8, "w": 8, "x": 0, - "y": 136 + "y": 120 }, - "id": 57, + "id": 60, "legend": { "alignAsTable": true, "avg": false, @@ -4699,9 +4982,9 @@ "h": 8, "w": 8, "x": 8, - "y": 136 + "y": 120 }, - "id": 58, + "id": 61, "legend": { "alignAsTable": true, "avg": false, @@ -4786,9 +5069,9 @@ "h": 8, "w": 8, "x": 16, - "y": 136 + "y": 120 }, - "id": 59, + "id": 62, "legend": { "alignAsTable": true, "avg": false, @@ -4873,9 +5156,9 @@ "h": 8, "w": 8, "x": 0, - "y": 144 + "y": 128 }, - "id": 60, + "id": 63, "legend": { "alignAsTable": true, "avg": false, @@ -4960,9 +5243,9 @@ "h": 8, "w": 8, "x": 8, - "y": 144 + "y": 128 }, - "id": 61, + "id": 64, "legend": { "alignAsTable": true, "avg": false, @@ -5047,9 +5330,9 @@ "h": 8, "w": 8, "x": 16, - "y": 144 + "y": 128 }, - "id": 62, + "id": 65, "legend": { "alignAsTable": true, "avg": false, @@ -5134,9 +5417,9 @@ "h": 8, "w": 8, "x": 0, - "y": 152 + "y": 136 }, - "id": 63, + "id": 66, "legend": { "alignAsTable": true, "avg": false, @@ -5221,9 +5504,9 @@ "h": 8, "w": 8, "x": 8, - "y": 152 + "y": 136 }, - "id": 64, + "id": 67, "legend": { "alignAsTable": true, "avg": false, @@ -5308,9 +5591,9 @@ "h": 8, "w": 8, "x": 16, - "y": 152 + "y": 136 }, - "id": 65, + "id": 68, "legend": { "alignAsTable": true, "avg": false, @@ -5399,9 +5682,9 @@ "h": 1, "w": 24, "x": 0, - "y": 160 + "y": 144 }, - "id": 66, + "id": 69, "panels": [ { "aliasColors": { }, @@ -5415,9 +5698,9 @@ "h": 8, "w": 8, "x": 0, - "y": 161 + "y": 145 }, - "id": 67, + "id": 70, "legend": { "alignAsTable": true, "avg": true, @@ -5502,9 +5785,9 @@ "h": 8, "w": 8, "x": 8, - "y": 161 + "y": 145 }, - "id": 68, + "id": 71, "legend": { "alignAsTable": true, "avg": true, @@ -5589,9 +5872,9 @@ "h": 8, "w": 8, "x": 16, - "y": 161 + "y": 145 }, - "id": 69, + "id": 72, "legend": { "alignAsTable": true, "avg": true, @@ -5676,9 +5959,9 @@ "h": 8, "w": 8, "x": 0, - "y": 169 + "y": 153 }, - "id": 70, + "id": 73, "legend": { "alignAsTable": true, "avg": true, @@ -5763,9 +6046,9 @@ "h": 8, "w": 8, "x": 8, - "y": 169 + "y": 153 }, - "id": 71, + "id": 74, "legend": { "alignAsTable": true, "avg": true, @@ -5850,9 +6133,9 @@ "h": 8, "w": 8, "x": 16, - "y": 169 + "y": 153 }, - "id": 72, + "id": 75, "legend": { "alignAsTable": true, "avg": true, @@ -5937,9 +6220,9 @@ "h": 8, "w": 8, "x": 0, - "y": 177 + "y": 161 }, - "id": 73, + "id": 76, "legend": { "alignAsTable": true, "avg": true, @@ -6024,9 +6307,9 @@ "h": 8, "w": 8, "x": 8, - "y": 177 + "y": 161 }, - "id": 74, + "id": 77, "legend": { "alignAsTable": true, "avg": true, @@ -6111,9 +6394,9 @@ "h": 8, "w": 8, "x": 16, - "y": 177 + "y": 161 }, - "id": 75, + "id": 78, "legend": { "alignAsTable": true, "avg": true, @@ -6198,9 +6481,9 @@ "h": 8, "w": 8, "x": 0, - "y": 185 + "y": 169 }, - "id": 76, + "id": 79, "legend": { "alignAsTable": true, "avg": true, @@ -6285,9 +6568,9 @@ "h": 8, "w": 8, "x": 8, - "y": 185 + "y": 169 }, - "id": 77, + "id": 80, "legend": { "alignAsTable": true, "avg": true, @@ -6372,9 +6655,9 @@ "h": 8, "w": 8, "x": 16, - "y": 185 + "y": 169 }, - "id": 78, + "id": 81, "legend": { "alignAsTable": true, "avg": true, @@ -6459,9 +6742,9 @@ "h": 8, "w": 8, "x": 0, - "y": 193 + "y": 177 }, - "id": 79, + "id": 82, "legend": { "alignAsTable": true, "avg": true, @@ -6546,9 +6829,9 @@ "h": 8, "w": 8, "x": 8, - "y": 193 + "y": 177 }, - "id": 80, + "id": 83, "legend": { "alignAsTable": true, "avg": true, @@ -6633,9 +6916,9 @@ "h": 8, "w": 8, "x": 16, - "y": 193 + "y": 177 }, - "id": 81, + "id": 84, "legend": { "alignAsTable": true, "avg": true, @@ -6721,9 +7004,9 @@ "h": 8, "w": 6, "x": 0, - "y": 201 + "y": 185 }, - "id": 82, + "id": 85, "legend": { "alignAsTable": true, "avg": true, @@ -6810,9 +7093,9 @@ "h": 8, "w": 6, "x": 6, - "y": 201 + "y": 185 }, - "id": 83, + "id": 86, "legend": { "alignAsTable": true, "avg": true, @@ -6898,9 +7181,9 @@ "h": 8, "w": 6, "x": 12, - "y": 201 + "y": 185 }, - "id": 84, + "id": 87, "legend": { "alignAsTable": true, "avg": true, @@ -6987,9 +7270,9 @@ "h": 8, "w": 6, "x": 18, - "y": 201 + "y": 185 }, - "id": 85, + "id": 88, "legend": { "alignAsTable": true, "avg": true, @@ -7075,9 +7358,9 @@ "h": 8, "w": 6, "x": 0, - "y": 209 + "y": 193 }, - "id": 86, + "id": 89, "legend": { "alignAsTable": true, "avg": true, @@ -7164,9 +7447,9 @@ "h": 8, "w": 6, "x": 6, - "y": 209 + "y": 193 }, - "id": 87, + "id": 90, "legend": { "alignAsTable": true, "avg": true, @@ -7252,9 +7535,9 @@ "h": 8, "w": 6, "x": 12, - "y": 209 + "y": 193 }, - "id": 88, + "id": 91, "legend": { "alignAsTable": true, "avg": true, @@ -7341,9 +7624,9 @@ "h": 8, "w": 6, "x": 18, - "y": 209 + "y": 193 }, - "id": 89, + "id": 92, "legend": { "alignAsTable": true, "avg": true, @@ -7429,9 +7712,9 @@ "h": 8, "w": 6, "x": 0, - "y": 217 + "y": 201 }, - "id": 90, + "id": 93, "legend": { "alignAsTable": true, "avg": true, @@ -7518,9 +7801,9 @@ "h": 8, "w": 6, "x": 6, - "y": 217 + "y": 201 }, - "id": 91, + "id": 94, "legend": { "alignAsTable": true, "avg": true, @@ -7606,9 +7889,9 @@ "h": 8, "w": 6, "x": 12, - "y": 217 + "y": 201 }, - "id": 92, + "id": 95, "legend": { "alignAsTable": true, "avg": true, @@ -7695,9 +7978,9 @@ "h": 8, "w": 6, "x": 18, - "y": 217 + "y": 201 }, - "id": 93, + "id": 96, "legend": { "alignAsTable": true, "avg": true, @@ -7786,9 +8069,9 @@ "h": 1, "w": 24, "x": 0, - "y": 225 + "y": 209 }, - "id": 94, + "id": 97, "panels": [ { "aliasColors": { }, @@ -7803,9 +8086,9 @@ "h": 8, "w": 12, "x": 0, - "y": 226 + "y": 210 }, - "id": 95, + "id": 98, "legend": { "alignAsTable": true, "avg": false, @@ -7893,9 +8176,9 @@ "h": 8, "w": 12, "x": 12, - "y": 226 + "y": 210 }, - "id": 96, + "id": 99, "legend": { "alignAsTable": true, "avg": false, @@ -7982,9 +8265,9 @@ "h": 8, "w": 8, "x": 0, - "y": 234 + "y": 218 }, - "id": 97, + "id": 100, "legend": { "alignAsTable": true, "avg": false, @@ -8069,9 +8352,9 @@ "h": 8, "w": 8, "x": 8, - "y": 234 + "y": 218 }, - "id": 98, + "id": 101, "legend": { "alignAsTable": true, "avg": false, @@ -8156,9 +8439,9 @@ "h": 8, "w": 8, "x": 16, - "y": 234 + "y": 218 }, - "id": 99, + "id": 102, "legend": { "alignAsTable": true, "avg": false, @@ -8247,9 +8530,9 @@ "h": 1, "w": 24, "x": 0, - "y": 242 + "y": 226 }, - "id": 100, + "id": 103, "panels": [ { "aliasColors": { }, @@ -8263,9 +8546,9 @@ "h": 8, "w": 12, "x": 0, - "y": 243 + "y": 227 }, - "id": 101, + "id": 104, "legend": { "alignAsTable": true, "avg": false, @@ -8350,9 +8633,9 @@ "h": 8, "w": 12, "x": 12, - "y": 243 + "y": 227 }, - "id": 102, + "id": 105, "legend": { "alignAsTable": true, "avg": false, @@ -8437,9 +8720,9 @@ "h": 8, "w": 8, "x": 0, - "y": 251 + "y": 235 }, - "id": 103, + "id": 106, "legend": { "alignAsTable": true, "avg": true, @@ -8524,9 +8807,9 @@ "h": 8, "w": 8, "x": 8, - "y": 251 + "y": 235 }, - "id": 104, + "id": 107, "legend": { "alignAsTable": true, "avg": true, @@ -8611,9 +8894,9 @@ "h": 8, "w": 8, "x": 16, - "y": 251 + "y": 235 }, - "id": 105, + "id": 108, "legend": { "alignAsTable": true, "avg": true, @@ -8698,9 +8981,9 @@ "h": 8, "w": 8, "x": 0, - "y": 259 + "y": 243 }, - "id": 106, + "id": 109, "legend": { "alignAsTable": true, "avg": true, @@ -8785,9 +9068,9 @@ "h": 8, "w": 8, "x": 8, - "y": 259 + "y": 243 }, - "id": 107, + "id": 110, "legend": { "alignAsTable": true, "avg": true, @@ -8872,9 +9155,9 @@ "h": 8, "w": 8, "x": 16, - "y": 259 + "y": 243 }, - "id": 108, + "id": 111, "legend": { "alignAsTable": true, "avg": true, @@ -8959,9 +9242,9 @@ "h": 8, "w": 8, "x": 0, - "y": 267 + "y": 251 }, - "id": 109, + "id": 112, "legend": { "alignAsTable": true, "avg": false, @@ -9046,9 +9329,9 @@ "h": 8, "w": 8, "x": 8, - "y": 267 + "y": 251 }, - "id": 110, + "id": 113, "legend": { "alignAsTable": true, "avg": false, @@ -9133,9 +9416,9 @@ "h": 8, "w": 8, "x": 16, - "y": 267 + "y": 251 }, - "id": 111, + "id": 114, "legend": { "alignAsTable": true, "avg": false, @@ -9220,9 +9503,9 @@ "h": 8, "w": 6, "x": 0, - "y": 275 + "y": 259 }, - "id": 112, + "id": 115, "legend": { "alignAsTable": true, "avg": true, @@ -9307,9 +9590,9 @@ "h": 8, "w": 6, "x": 6, - "y": 275 + "y": 259 }, - "id": 113, + "id": 116, "legend": { "alignAsTable": true, "avg": true, @@ -9394,9 +9677,9 @@ "h": 8, "w": 6, "x": 12, - "y": 275 + "y": 259 }, - "id": 114, + "id": 117, "legend": { "alignAsTable": true, "avg": true, @@ -9482,9 +9765,9 @@ "h": 8, "w": 6, "x": 18, - "y": 275 + "y": 259 }, - "id": 115, + "id": 118, "legend": { "alignAsTable": true, "avg": true, @@ -9571,9 +9854,9 @@ "h": 8, "w": 6, "x": 0, - "y": 283 + "y": 267 }, - "id": 116, + "id": 119, "legend": { "alignAsTable": true, "avg": false, @@ -9658,9 +9941,9 @@ "h": 8, "w": 6, "x": 6, - "y": 283 + "y": 267 }, - "id": 117, + "id": 120, "legend": { "alignAsTable": true, "avg": false, @@ -9745,9 +10028,9 @@ "h": 8, "w": 6, "x": 12, - "y": 283 + "y": 267 }, - "id": 118, + "id": 121, "legend": { "alignAsTable": true, "avg": true, @@ -9832,9 +10115,9 @@ "h": 8, "w": 6, "x": 18, - "y": 283 + "y": 267 }, - "id": 119, + "id": 122, "legend": { "alignAsTable": true, "avg": true, @@ -9923,9 +10206,9 @@ "h": 1, "w": 24, "x": 0, - "y": 291 + "y": 275 }, - "id": 120, + "id": 123, "panels": [ { "aliasColors": { }, @@ -9939,9 +10222,9 @@ "h": 8, "w": 8, "x": 0, - "y": 292 + "y": 276 }, - "id": 121, + "id": 124, "legend": { "alignAsTable": true, "avg": true, @@ -10027,9 +10310,9 @@ "h": 8, "w": 8, "x": 8, - "y": 292 + "y": 276 }, - "id": 122, + "id": 125, "legend": { "alignAsTable": true, "avg": true, @@ -10115,9 +10398,9 @@ "h": 8, "w": 8, "x": 16, - "y": 292 + "y": 276 }, - "id": 123, + "id": 126, "legend": { "alignAsTable": true, "avg": true, @@ -10203,9 +10486,9 @@ "h": 8, "w": 8, "x": 0, - "y": 300 + "y": 284 }, - "id": 124, + "id": 127, "legend": { "alignAsTable": true, "avg": true, @@ -10291,9 +10574,9 @@ "h": 8, "w": 8, "x": 8, - "y": 300 + "y": 284 }, - "id": 125, + "id": 128, "legend": { "alignAsTable": true, "avg": true, @@ -10379,9 +10662,9 @@ "h": 8, "w": 8, "x": 16, - "y": 300 + "y": 284 }, - "id": 126, + "id": 129, "legend": { "alignAsTable": true, "avg": true, @@ -10471,9 +10754,9 @@ "h": 1, "w": 24, "x": 0, - "y": 308 + "y": 292 }, - "id": 127, + "id": 130, "panels": [ { "aliasColors": { }, @@ -10487,9 +10770,9 @@ "h": 8, "w": 8, "x": 0, - "y": 309 + "y": 293 }, - "id": 128, + "id": 131, "legend": { "alignAsTable": true, "avg": true, @@ -10574,9 +10857,9 @@ "h": 8, "w": 8, "x": 8, - "y": 309 + "y": 293 }, - "id": 129, + "id": 132, "legend": { "alignAsTable": true, "avg": true, @@ -10661,9 +10944,9 @@ "h": 8, "w": 8, "x": 16, - "y": 309 + "y": 293 }, - "id": 130, + "id": 133, "legend": { "alignAsTable": true, "avg": true, @@ -10748,9 +11031,9 @@ "h": 8, "w": 8, "x": 0, - "y": 317 + "y": 301 }, - "id": 131, + "id": 134, "legend": { "alignAsTable": true, "avg": true, @@ -10835,9 +11118,9 @@ "h": 8, "w": 8, "x": 8, - "y": 317 + "y": 301 }, - "id": 132, + "id": 135, "legend": { "alignAsTable": true, "avg": true, @@ -10922,9 +11205,9 @@ "h": 8, "w": 8, "x": 16, - "y": 317 + "y": 301 }, - "id": 133, + "id": 136, "legend": { "alignAsTable": true, "avg": true, @@ -11009,9 +11292,9 @@ "h": 8, "w": 8, "x": 0, - "y": 325 + "y": 309 }, - "id": 134, + "id": 137, "legend": { "alignAsTable": true, "avg": true, @@ -11096,9 +11379,9 @@ "h": 8, "w": 8, "x": 8, - "y": 325 + "y": 309 }, - "id": 135, + "id": 138, "legend": { "alignAsTable": true, "avg": false, @@ -11183,9 +11466,9 @@ "h": 8, "w": 8, "x": 16, - "y": 325 + "y": 309 }, - "id": 136, + "id": 139, "legend": { "alignAsTable": true, "avg": true, @@ -11270,9 +11553,9 @@ "h": 8, "w": 12, "x": 0, - "y": 333 + "y": 317 }, - "id": 137, + "id": 140, "legend": { "alignAsTable": true, "avg": true, @@ -11357,9 +11640,9 @@ "h": 8, "w": 12, "x": 12, - "y": 333 + "y": 317 }, - "id": 138, + "id": 141, "legend": { "alignAsTable": true, "avg": true, @@ -11445,9 +11728,9 @@ "h": 8, "w": 8, "x": 0, - "y": 341 + "y": 325 }, - "id": 139, + "id": 142, "legend": { "alignAsTable": true, "avg": false, @@ -11534,9 +11817,9 @@ "h": 8, "w": 8, "x": 8, - "y": 341 + "y": 325 }, - "id": 140, + "id": 143, "legend": { "alignAsTable": true, "avg": true, @@ -11621,9 +11904,9 @@ "h": 8, "w": 8, "x": 16, - "y": 341 + "y": 325 }, - "id": 141, + "id": 144, "legend": { "alignAsTable": true, "avg": true, @@ -11712,9 +11995,9 @@ "h": 1, "w": 24, "x": 0, - "y": 349 + "y": 333 }, - "id": 142, + "id": 145, "panels": [ { "aliasColors": { }, @@ -11728,9 +12011,9 @@ "h": 8, "w": 6, "x": 0, - "y": 350 + "y": 334 }, - "id": 143, + "id": 146, "legend": { "alignAsTable": true, "avg": true, @@ -11815,9 +12098,9 @@ "h": 8, "w": 6, "x": 6, - "y": 350 + "y": 334 }, - "id": 144, + "id": 147, "legend": { "alignAsTable": true, "avg": true, @@ -11902,9 +12185,9 @@ "h": 8, "w": 6, "x": 12, - "y": 350 + "y": 334 }, - "id": 145, + "id": 148, "legend": { "alignAsTable": true, "avg": true, @@ -11989,9 +12272,9 @@ "h": 8, "w": 6, "x": 18, - "y": 350 + "y": 334 }, - "id": 146, + "id": 149, "legend": { "alignAsTable": true, "avg": true, @@ -12076,9 +12359,9 @@ "h": 8, "w": 12, "x": 0, - "y": 358 + "y": 342 }, - "id": 147, + "id": 150, "legend": { "alignAsTable": true, "avg": true, @@ -12163,9 +12446,9 @@ "h": 8, "w": 12, "x": 12, - "y": 358 + "y": 342 }, - "id": 148, + "id": 151, "legend": { "alignAsTable": true, "avg": true, @@ -12250,9 +12533,9 @@ "h": 8, "w": 8, "x": 0, - "y": 366 + "y": 350 }, - "id": 149, + "id": 152, "legend": { "alignAsTable": true, "avg": true, @@ -12337,9 +12620,9 @@ "h": 8, "w": 8, "x": 8, - "y": 366 + "y": 350 }, - "id": 150, + "id": 153, "legend": { "alignAsTable": true, "avg": true, @@ -12424,9 +12707,9 @@ "h": 8, "w": 8, "x": 16, - "y": 366 + "y": 350 }, - "id": 151, + "id": 154, "legend": { "alignAsTable": true, "avg": true, @@ -12511,9 +12794,9 @@ "h": 8, "w": 8, "x": 0, - "y": 374 + "y": 358 }, - "id": 152, + "id": 155, "legend": { "alignAsTable": true, "avg": true, @@ -12598,9 +12881,9 @@ "h": 8, "w": 8, "x": 8, - "y": 374 + "y": 358 }, - "id": 153, + "id": 156, "legend": { "alignAsTable": true, "avg": true, @@ -12685,9 +12968,9 @@ "h": 8, "w": 8, "x": 16, - "y": 374 + "y": 358 }, - "id": 154, + "id": 157, "legend": { "alignAsTable": true, "avg": true, @@ -12773,9 +13056,9 @@ "h": 8, "w": 6, "x": 0, - "y": 382 + "y": 366 }, - "id": 155, + "id": 158, "legend": { "alignAsTable": true, "avg": true, @@ -12863,9 +13146,9 @@ "h": 8, "w": 6, "x": 6, - "y": 382 + "y": 366 }, - "id": 156, + "id": 159, "legend": { "alignAsTable": true, "avg": true, @@ -12953,9 +13236,9 @@ "h": 8, "w": 6, "x": 12, - "y": 382 + "y": 366 }, - "id": 157, + "id": 160, "legend": { "alignAsTable": true, "avg": true, @@ -13043,9 +13326,9 @@ "h": 8, "w": 6, "x": 18, - "y": 382 + "y": 366 }, - "id": 158, + "id": 161, "legend": { "alignAsTable": true, "avg": true, @@ -13132,9 +13415,9 @@ "h": 8, "w": 8, "x": 0, - "y": 390 + "y": 374 }, - "id": 159, + "id": 162, "legend": { "alignAsTable": true, "avg": true, @@ -13219,9 +13502,9 @@ "h": 8, "w": 8, "x": 8, - "y": 390 + "y": 374 }, - "id": 160, + "id": 163, "legend": { "alignAsTable": true, "avg": true, @@ -13306,9 +13589,9 @@ "h": 8, "w": 8, "x": 16, - "y": 390 + "y": 374 }, - "id": 161, + "id": 164, "legend": { "alignAsTable": true, "avg": true, @@ -13397,9 +13680,9 @@ "h": 1, "w": 24, "x": 0, - "y": 398 + "y": 382 }, - "id": 162, + "id": 165, "panels": [ { "aliasColors": { }, @@ -13413,9 +13696,9 @@ "h": 8, "w": 8, "x": 0, - "y": 399 + "y": 383 }, - "id": 163, + "id": 166, "legend": { "alignAsTable": true, "avg": true, @@ -13500,9 +13783,9 @@ "h": 8, "w": 8, "x": 8, - "y": 399 + "y": 383 }, - "id": 164, + "id": 167, "legend": { "alignAsTable": true, "avg": true, @@ -13587,9 +13870,9 @@ "h": 8, "w": 8, "x": 16, - "y": 399 + "y": 383 }, - "id": 165, + "id": 168, "legend": { "alignAsTable": true, "avg": true, @@ -13674,9 +13957,9 @@ "h": 8, "w": 8, "x": 0, - "y": 407 + "y": 391 }, - "id": 166, + "id": 169, "legend": { "alignAsTable": true, "avg": true, @@ -13761,9 +14044,9 @@ "h": 8, "w": 8, "x": 8, - "y": 407 + "y": 391 }, - "id": 167, + "id": 170, "legend": { "alignAsTable": true, "avg": true, @@ -13848,9 +14131,9 @@ "h": 8, "w": 8, "x": 16, - "y": 407 + "y": 391 }, - "id": 168, + "id": 171, "legend": { "alignAsTable": true, "avg": true, @@ -13935,9 +14218,9 @@ "h": 8, "w": 8, "x": 0, - "y": 415 + "y": 399 }, - "id": 169, + "id": 172, "legend": { "alignAsTable": true, "avg": true, @@ -14022,9 +14305,9 @@ "h": 8, "w": 8, "x": 8, - "y": 415 + "y": 399 }, - "id": 170, + "id": 173, "legend": { "alignAsTable": true, "avg": true, @@ -14109,9 +14392,9 @@ "h": 8, "w": 8, "x": 16, - "y": 415 + "y": 399 }, - "id": 171, + "id": 174, "legend": { "alignAsTable": true, "avg": true, @@ -14196,9 +14479,9 @@ "h": 8, "w": 8, "x": 0, - "y": 423 + "y": 407 }, - "id": 172, + "id": 175, "legend": { "alignAsTable": true, "avg": true, @@ -14283,9 +14566,9 @@ "h": 8, "w": 8, "x": 8, - "y": 423 + "y": 407 }, - "id": 173, + "id": 176, "legend": { "alignAsTable": true, "avg": true, @@ -14370,9 +14653,9 @@ "h": 8, "w": 8, "x": 16, - "y": 423 + "y": 407 }, - "id": 174, + "id": 177, "legend": { "alignAsTable": true, "avg": true, @@ -14457,9 +14740,9 @@ "h": 8, "w": 8, "x": 0, - "y": 431 + "y": 415 }, - "id": 175, + "id": 178, "legend": { "alignAsTable": true, "avg": true, @@ -14544,9 +14827,9 @@ "h": 8, "w": 8, "x": 8, - "y": 431 + "y": 415 }, - "id": 176, + "id": 179, "legend": { "alignAsTable": true, "avg": true, @@ -14631,9 +14914,9 @@ "h": 8, "w": 8, "x": 16, - "y": 431 + "y": 415 }, - "id": 177, + "id": 180, "legend": { "alignAsTable": true, "avg": true, @@ -14722,9 +15005,9 @@ "h": 1, "w": 24, "x": 0, - "y": 439 + "y": 423 }, - "id": 178, + "id": 181, "panels": [ { "aliasColors": { }, @@ -14738,9 +15021,9 @@ "h": 8, "w": 6, "x": 0, - "y": 440 + "y": 424 }, - "id": 179, + "id": 182, "legend": { "alignAsTable": true, "avg": true, @@ -14825,9 +15108,9 @@ "h": 8, "w": 6, "x": 6, - "y": 440 + "y": 424 }, - "id": 180, + "id": 183, "legend": { "alignAsTable": true, "avg": true, @@ -14912,9 +15195,9 @@ "h": 8, "w": 6, "x": 12, - "y": 440 + "y": 424 }, - "id": 181, + "id": 184, "legend": { "alignAsTable": true, "avg": true, @@ -14999,9 +15282,9 @@ "h": 8, "w": 6, "x": 18, - "y": 440 + "y": 424 }, - "id": 182, + "id": 185, "legend": { "alignAsTable": true, "avg": true, @@ -15086,9 +15369,9 @@ "h": 8, "w": 8, "x": 0, - "y": 448 + "y": 432 }, - "id": 183, + "id": 186, "legend": { "alignAsTable": true, "avg": true, @@ -15173,9 +15456,9 @@ "h": 8, "w": 8, "x": 8, - "y": 448 + "y": 432 }, - "id": 184, + "id": 187, "legend": { "alignAsTable": true, "avg": true, @@ -15260,9 +15543,9 @@ "h": 8, "w": 8, "x": 16, - "y": 448 + "y": 432 }, - "id": 185, + "id": 188, "legend": { "alignAsTable": true, "avg": true, @@ -15347,9 +15630,9 @@ "h": 8, "w": 6, "x": 0, - "y": 456 + "y": 440 }, - "id": 186, + "id": 189, "legend": { "alignAsTable": true, "avg": true, @@ -15434,9 +15717,9 @@ "h": 8, "w": 6, "x": 6, - "y": 456 + "y": 440 }, - "id": 187, + "id": 190, "legend": { "alignAsTable": true, "avg": true, @@ -15521,9 +15804,9 @@ "h": 8, "w": 6, "x": 12, - "y": 456 + "y": 440 }, - "id": 188, + "id": 191, "legend": { "alignAsTable": true, "avg": true, @@ -15608,9 +15891,9 @@ "h": 8, "w": 6, "x": 18, - "y": 456 + "y": 440 }, - "id": 189, + "id": 192, "legend": { "alignAsTable": true, "avg": true, @@ -15695,9 +15978,9 @@ "h": 8, "w": 6, "x": 0, - "y": 464 + "y": 448 }, - "id": 190, + "id": 193, "legend": { "alignAsTable": true, "avg": true, @@ -15782,9 +16065,9 @@ "h": 8, "w": 6, "x": 6, - "y": 464 + "y": 448 }, - "id": 191, + "id": 194, "legend": { "alignAsTable": true, "avg": true, @@ -15869,9 +16152,9 @@ "h": 8, "w": 6, "x": 12, - "y": 464 + "y": 448 }, - "id": 192, + "id": 195, "legend": { "alignAsTable": true, "avg": true, @@ -15956,9 +16239,9 @@ "h": 8, "w": 6, "x": 18, - "y": 464 + "y": 448 }, - "id": 193, + "id": 196, "legend": { "alignAsTable": true, "avg": true, @@ -16043,9 +16326,9 @@ "h": 8, "w": 6, "x": 0, - "y": 472 + "y": 456 }, - "id": 194, + "id": 197, "legend": { "alignAsTable": true, "avg": true, @@ -16130,9 +16413,9 @@ "h": 8, "w": 6, "x": 6, - "y": 472 + "y": 456 }, - "id": 195, + "id": 198, "legend": { "alignAsTable": true, "avg": true, @@ -16217,9 +16500,9 @@ "h": 8, "w": 6, "x": 12, - "y": 472 + "y": 456 }, - "id": 196, + "id": 199, "legend": { "alignAsTable": true, "avg": true, @@ -16304,9 +16587,9 @@ "h": 8, "w": 6, "x": 18, - "y": 472 + "y": 456 }, - "id": 197, + "id": 200, "legend": { "alignAsTable": true, "avg": true, @@ -16391,9 +16674,9 @@ "h": 8, "w": 6, "x": 0, - "y": 480 + "y": 464 }, - "id": 198, + "id": 201, "legend": { "alignAsTable": true, "avg": true, @@ -16478,9 +16761,9 @@ "h": 8, "w": 6, "x": 6, - "y": 480 + "y": 464 }, - "id": 199, + "id": 202, "legend": { "alignAsTable": true, "avg": true, @@ -16565,9 +16848,9 @@ "h": 8, "w": 6, "x": 12, - "y": 480 + "y": 464 }, - "id": 200, + "id": 203, "legend": { "alignAsTable": true, "avg": true, @@ -16652,9 +16935,9 @@ "h": 8, "w": 6, "x": 18, - "y": 480 + "y": 464 }, - "id": 201, + "id": 204, "legend": { "alignAsTable": true, "avg": true, @@ -16739,9 +17022,9 @@ "h": 8, "w": 6, "x": 0, - "y": 488 + "y": 472 }, - "id": 202, + "id": 205, "legend": { "alignAsTable": true, "avg": true, @@ -16826,9 +17109,9 @@ "h": 8, "w": 6, "x": 6, - "y": 488 + "y": 472 }, - "id": 203, + "id": 206, "legend": { "alignAsTable": true, "avg": true, @@ -16913,9 +17196,9 @@ "h": 8, "w": 6, "x": 12, - "y": 488 + "y": 472 }, - "id": 204, + "id": 207, "legend": { "alignAsTable": true, "avg": true, @@ -17000,9 +17283,9 @@ "h": 8, "w": 6, "x": 18, - "y": 488 + "y": 472 }, - "id": 205, + "id": 208, "legend": { "alignAsTable": true, "avg": true, @@ -17087,9 +17370,9 @@ "h": 8, "w": 6, "x": 0, - "y": 496 + "y": 480 }, - "id": 206, + "id": 209, "legend": { "alignAsTable": true, "avg": true, @@ -17174,9 +17457,9 @@ "h": 8, "w": 6, "x": 6, - "y": 496 + "y": 480 }, - "id": 207, + "id": 210, "legend": { "alignAsTable": true, "avg": true, @@ -17261,9 +17544,9 @@ "h": 8, "w": 6, "x": 12, - "y": 496 + "y": 480 }, - "id": 208, + "id": 211, "legend": { "alignAsTable": true, "avg": true, @@ -17348,9 +17631,9 @@ "h": 8, "w": 6, "x": 18, - "y": 496 + "y": 480 }, - "id": 209, + "id": 212, "legend": { "alignAsTable": true, "avg": true, @@ -17435,9 +17718,9 @@ "h": 8, "w": 6, "x": 0, - "y": 504 + "y": 488 }, - "id": 210, + "id": 213, "legend": { "alignAsTable": true, "avg": true, @@ -17522,9 +17805,9 @@ "h": 8, "w": 6, "x": 6, - "y": 504 + "y": 488 }, - "id": 211, + "id": 214, "legend": { "alignAsTable": true, "avg": true, @@ -17609,9 +17892,9 @@ "h": 8, "w": 6, "x": 12, - "y": 504 + "y": 488 }, - "id": 212, + "id": 215, "legend": { "alignAsTable": true, "avg": true, @@ -17696,9 +17979,9 @@ "h": 8, "w": 6, "x": 18, - "y": 504 + "y": 488 }, - "id": 213, + "id": 216, "legend": { "alignAsTable": true, "avg": true, @@ -17783,9 +18066,9 @@ "h": 8, "w": 6, "x": 0, - "y": 512 + "y": 496 }, - "id": 214, + "id": 217, "legend": { "alignAsTable": true, "avg": true, @@ -17870,9 +18153,9 @@ "h": 8, "w": 6, "x": 6, - "y": 512 + "y": 496 }, - "id": 215, + "id": 218, "legend": { "alignAsTable": true, "avg": true, @@ -17957,9 +18240,9 @@ "h": 8, "w": 6, "x": 12, - "y": 512 + "y": 496 }, - "id": 216, + "id": 219, "legend": { "alignAsTable": true, "avg": true, @@ -18044,9 +18327,9 @@ "h": 8, "w": 6, "x": 18, - "y": 512 + "y": 496 }, - "id": 217, + "id": 220, "legend": { "alignAsTable": true, "avg": true, @@ -18131,9 +18414,9 @@ "h": 8, "w": 6, "x": 0, - "y": 520 + "y": 504 }, - "id": 218, + "id": 221, "legend": { "alignAsTable": true, "avg": true, @@ -18218,9 +18501,9 @@ "h": 8, "w": 6, "x": 6, - "y": 520 + "y": 504 }, - "id": 219, + "id": 222, "legend": { "alignAsTable": true, "avg": true, @@ -18305,9 +18588,9 @@ "h": 8, "w": 6, "x": 12, - "y": 520 + "y": 504 }, - "id": 220, + "id": 223, "legend": { "alignAsTable": true, "avg": true, @@ -18392,9 +18675,9 @@ "h": 8, "w": 6, "x": 18, - "y": 520 + "y": 504 }, - "id": 221, + "id": 224, "legend": { "alignAsTable": true, "avg": true, @@ -18479,9 +18762,9 @@ "h": 8, "w": 6, "x": 0, - "y": 528 + "y": 512 }, - "id": 222, + "id": 225, "legend": { "alignAsTable": true, "avg": true, @@ -18566,9 +18849,9 @@ "h": 8, "w": 6, "x": 6, - "y": 528 + "y": 512 }, - "id": 223, + "id": 226, "legend": { "alignAsTable": true, "avg": true, @@ -18653,9 +18936,9 @@ "h": 8, "w": 6, "x": 12, - "y": 528 + "y": 512 }, - "id": 224, + "id": 227, "legend": { "alignAsTable": true, "avg": true, @@ -18740,9 +19023,9 @@ "h": 8, "w": 6, "x": 18, - "y": 528 + "y": 512 }, - "id": 225, + "id": 228, "legend": { "alignAsTable": true, "avg": true, @@ -18827,9 +19110,9 @@ "h": 8, "w": 6, "x": 0, - "y": 536 + "y": 520 }, - "id": 226, + "id": 229, "legend": { "alignAsTable": true, "avg": true, @@ -18914,9 +19197,9 @@ "h": 8, "w": 6, "x": 6, - "y": 536 + "y": 520 }, - "id": 227, + "id": 230, "legend": { "alignAsTable": true, "avg": true, @@ -19001,9 +19284,9 @@ "h": 8, "w": 6, "x": 12, - "y": 536 + "y": 520 }, - "id": 228, + "id": 231, "legend": { "alignAsTable": true, "avg": true, @@ -19088,9 +19371,9 @@ "h": 8, "w": 6, "x": 18, - "y": 536 + "y": 520 }, - "id": 229, + "id": 232, "legend": { "alignAsTable": true, "avg": true, @@ -19175,9 +19458,9 @@ "h": 8, "w": 6, "x": 0, - "y": 544 + "y": 528 }, - "id": 230, + "id": 233, "legend": { "alignAsTable": true, "avg": true, @@ -19262,9 +19545,9 @@ "h": 8, "w": 6, "x": 6, - "y": 544 + "y": 528 }, - "id": 231, + "id": 234, "legend": { "alignAsTable": true, "avg": true, @@ -19349,9 +19632,9 @@ "h": 8, "w": 6, "x": 12, - "y": 544 + "y": 528 }, - "id": 232, + "id": 235, "legend": { "alignAsTable": true, "avg": true, @@ -19436,9 +19719,9 @@ "h": 8, "w": 6, "x": 18, - "y": 544 + "y": 528 }, - "id": 233, + "id": 236, "legend": { "alignAsTable": true, "avg": true, @@ -19523,9 +19806,9 @@ "h": 8, "w": 6, "x": 0, - "y": 552 + "y": 536 }, - "id": 234, + "id": 237, "legend": { "alignAsTable": true, "avg": true, @@ -19610,9 +19893,9 @@ "h": 8, "w": 6, "x": 6, - "y": 552 + "y": 536 }, - "id": 235, + "id": 238, "legend": { "alignAsTable": true, "avg": true, @@ -19697,9 +19980,9 @@ "h": 8, "w": 6, "x": 12, - "y": 552 + "y": 536 }, - "id": 236, + "id": 239, "legend": { "alignAsTable": true, "avg": true, @@ -19784,9 +20067,9 @@ "h": 8, "w": 6, "x": 18, - "y": 552 + "y": 536 }, - "id": 237, + "id": 240, "legend": { "alignAsTable": true, "avg": true, @@ -19875,9 +20158,9 @@ "h": 1, "w": 24, "x": 0, - "y": 560 + "y": 544 }, - "id": 238, + "id": 241, "panels": [ { "aliasColors": { }, @@ -19891,9 +20174,9 @@ "h": 8, "w": 12, "x": 0, - "y": 561 + "y": 545 }, - "id": 239, + "id": 242, "legend": { "alignAsTable": true, "avg": true, @@ -19978,9 +20261,9 @@ "h": 8, "w": 12, "x": 12, - "y": 561 + "y": 545 }, - "id": 240, + "id": 243, "legend": { "alignAsTable": true, "avg": true, @@ -20066,9 +20349,9 @@ "h": 8, "w": 12, "x": 0, - "y": 569 + "y": 553 }, - "id": 241, + "id": 244, "legend": { "alignAsTable": true, "avg": true, @@ -20155,9 +20438,9 @@ "h": 8, "w": 12, "x": 12, - "y": 569 + "y": 553 }, - "id": 242, + "id": 245, "legend": { "alignAsTable": true, "avg": true, @@ -20246,9 +20529,9 @@ "h": 1, "w": 24, "x": 0, - "y": 577 + "y": 561 }, - "id": 243, + "id": 246, "panels": [ { "aliasColors": { }, @@ -20262,9 +20545,9 @@ "h": 6, "w": 24, "x": 0, - "y": 578 + "y": 562 }, - "id": 244, + "id": 247, "legend": { "alignAsTable": true, "avg": true, @@ -20349,9 +20632,9 @@ "h": 8, "w": 12, "x": 0, - "y": 584 + "y": 568 }, - "id": 245, + "id": 248, "legend": { "alignAsTable": true, "avg": true, @@ -20436,9 +20719,9 @@ "h": 8, "w": 12, "x": 12, - "y": 584 + "y": 568 }, - "id": 246, + "id": 249, "legend": { "alignAsTable": true, "avg": true, diff --git a/tests/unit/config_compiled.json b/tests/unit/config_compiled.json index c7e9aab..a2865d9 100644 --- a/tests/unit/config_compiled.json +++ b/tests/unit/config_compiled.json @@ -38,6 +38,7 @@ "metrics_prefix": "", "sections": [ "cluster_tarantool3", + "failover_coordinator", "replication_tarantool3", "http", "net", @@ -74,6 +75,7 @@ "metrics_prefix": "", "sections": [ "cluster_tarantool3", + "failover_coordinator", "replication_tarantool3", "http", "net", @@ -173,6 +175,7 @@ "metrics_prefix": "", "sections": [ "cluster_tarantool3", + "failover_coordinator", "replication_tarantool3", "http", "net", @@ -249,6 +252,7 @@ "metrics_prefix": "", "sections": [ "cluster_tarantool3", + "failover_coordinator", "replication_tarantool3", "http", "net", @@ -285,6 +289,7 @@ "metrics_prefix": "", "sections": [ "cluster_tarantool3", + "failover_coordinator", "replication_tarantool3", "http", "net",