diff --git a/docs/lakehouse/catalogs/iceberg-catalog.mdx b/docs/lakehouse/catalogs/iceberg-catalog.mdx index cc96ddd422cd8..4acea18cc24de 100644 --- a/docs/lakehouse/catalogs/iceberg-catalog.mdx +++ b/docs/lakehouse/catalogs/iceberg-catalog.mdx @@ -83,6 +83,16 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES ( If set to `false`, Doris will check the type of each table one by one and only return Iceberg type tables. This mode will have poor performance when there are many tables. + - `iceberg.rest.view-enabled` + + Supported since version 4.0.6. + + Only effective for Iceberg REST Catalog. Whether to enable View-related operations (including `listViews`, `loadView`, `viewExists`, `dropView`, etc.). Default is `true`. + + Some Iceberg REST Catalog implementations expose Table APIs but the View APIs are unavailable or return errors. When executing `SHOW TABLES`, Doris calls `ViewCatalog.listViews()` to filter Views out of the Table list, so such REST services may cause `SHOW TABLES` and table metadata loading to fail. + + In this case, set this parameter to `false`, and Doris will skip all View-related operations, allowing metadata operations such as `SHOW TABLES` to work normally. + * `{CommonProperties}` The CommonProperties section is for entering general properties. See the [Catalog Overview](../catalog-overview.md) for details on common properties. diff --git a/docusaurus.config.js b/docusaurus.config.js index 6f110a51c584a..2a29308f75b94 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -383,6 +383,7 @@ const config = { searchResultLimits: 100, searchContextByPaths: ['docs'], useAllContextsWithNoSearchContext: false, + ignoreFiles: [/^docs\/(?:[^/]+\/)?key-features\//], }, ], ], diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/iceberg-catalog.mdx b/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/iceberg-catalog.mdx index 86714c1521330..8a12d1374262c 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/iceberg-catalog.mdx +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/lakehouse/catalogs/iceberg-catalog.mdx @@ -83,6 +83,16 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES ( 这种方式性能最好。如果设置为 `false`,则 Doris 会逐一检查每个 Table 的类型,并只返回 Iceberg 类型的 Table。该模式在表很多的情况下,性能会比较差。 + - `iceberg.rest.view-enabled` + + 自 4.0.6 版本支持。 + + 仅对 Iceberg REST Catalog 生效。是否启用 View 相关操作(包括 `listViews`、`loadView`、`viewExists`、`dropView` 等)。默认为 `true`。 + + 部分 Iceberg REST Catalog 实现虽然暴露了 Table 相关 API,但 View 相关 API 不可用或会返回错误。由于 Doris 在执行 `SHOW TABLES` 时会调用 `ViewCatalog.listViews()` 以将 View 从 Table 列表中过滤掉,因此此类 REST 服务可能导致 `SHOW TABLES` 及表元数据加载失败。 + + 遇到上述情况时,可将该参数设置为 `false`,Doris 将跳过所有 View 相关操作,使 `SHOW TABLES` 等元数据操作可以正常工作。 + * `{CommonProperties}` CommonProperties 部分用于填写通用属性。请参阅[数据目录概述](../catalog-overview.md)中【通用属性】部分。 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/lakehouse/catalogs/iceberg-catalog.mdx b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/lakehouse/catalogs/iceberg-catalog.mdx index 86714c1521330..8a12d1374262c 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/lakehouse/catalogs/iceberg-catalog.mdx +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-4.x/lakehouse/catalogs/iceberg-catalog.mdx @@ -83,6 +83,16 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES ( 这种方式性能最好。如果设置为 `false`,则 Doris 会逐一检查每个 Table 的类型,并只返回 Iceberg 类型的 Table。该模式在表很多的情况下,性能会比较差。 + - `iceberg.rest.view-enabled` + + 自 4.0.6 版本支持。 + + 仅对 Iceberg REST Catalog 生效。是否启用 View 相关操作(包括 `listViews`、`loadView`、`viewExists`、`dropView` 等)。默认为 `true`。 + + 部分 Iceberg REST Catalog 实现虽然暴露了 Table 相关 API,但 View 相关 API 不可用或会返回错误。由于 Doris 在执行 `SHOW TABLES` 时会调用 `ViewCatalog.listViews()` 以将 View 从 Table 列表中过滤掉,因此此类 REST 服务可能导致 `SHOW TABLES` 及表元数据加载失败。 + + 遇到上述情况时,可将该参数设置为 `false`,Doris 将跳过所有 View 相关操作,使 `SHOW TABLES` 等元数据操作可以正常工作。 + * `{CommonProperties}` CommonProperties 部分用于填写通用属性。请参阅[数据目录概述](../catalog-overview.md)中【通用属性】部分。 diff --git a/sidebars.ts b/sidebars.ts index 3b01b40589340..358390179c219 100644 --- a/sidebars.ts +++ b/sidebars.ts @@ -716,7 +716,6 @@ const sidebars: SidebarsConfig = { label: 'Lakehouse Best Practices', items: [ 'lakehouse/best-practices/optimization', - 'lakehouse/best-practices/doris-snowflake-catalog', 'lakehouse/best-practices/kerberos', 'lakehouse/best-practices/tpch', 'lakehouse/best-practices/tpcds', diff --git a/static/files/doris-grafana-dashboard-cloud.json b/static/files/doris-grafana-dashboard-cloud.json index 74f4f20b73b65..161ba449681fa 100644 --- a/static/files/doris-grafana-dashboard-cloud.json +++ b/static/files/doris-grafana-dashboard-cloud.json @@ -20,7 +20,7 @@ } ] }, - "description": "Dashboard for Doris Cloud", + "description": "Default Custom Dashboard for Doris Cloud", "editable": true, "fiscalYearStartMonth": 0, "gnetId": 9734, @@ -41,9 +41,10 @@ "x": 0, "y": 0 }, - "id": 46, + "id": 1, "panels": [], "repeat": "cluster_name", + "repeatDirection": "h", "targets": [ { "datasource": { @@ -52,15 +53,12 @@ "refId": "A" } ], - "title": "Cluster Overview", + "title": "[Example] Custom Cluster Overview Monitor", "type": "row" }, { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Total Frontends node number", + "datasource": {}, + "description": "", "fieldConfig": { "defaults": { "color": { @@ -90,17 +88,17 @@ } ] }, - "unit": "none" + "unit": "bytes" }, "overrides": [] }, "gridPos": { - "h": 4, - "w": 6, + "h": 6, + "w": 11, "x": 0, "y": 1 }, - "id": 10, + "id": 2, "links": [], "maxDataPoints": 100, "options": { @@ -110,7 +108,7 @@ "orientation": "horizontal", "reduceOptions": { "calcs": [ - "mean" + "lastNotNull" ], "fields": "", "values": false @@ -125,14 +123,15 @@ "uid": "" }, "editorMode": "code", - "expr": "count(up{group=\"fe\", job=\"$cluster_id\"})", + "expr": "sum(doris_fe_table_data_size{job=\"$cluster_id\"}) / count(up{group=\"fe\"})", "format": "time_series", - "instant": true, "intervalFactor": 1, + "legendFormat": "sum", + "range": true, "refId": "A" } ], - "title": "FE Node Number", + "title": "Data Size", "type": "stat" }, { @@ -140,23 +139,43 @@ "type": "prometheus", "uid": "" }, - "description": "Total not alive number of Frontends.", "fieldConfig": { "defaults": { "color": { - "mode": "thresholds" + "mode": "palette-classic" }, - "mappings": [ - { - "options": { - "match": "null", - "result": { - "text": "N/A" - } - }, - "type": "special" + "custom": { + "axisCenteredZero": false, + "axisColorMode": "text", + "axisLabel": "", + "axisPlacement": "auto", + "axisSoftMax": -1, + "barAlignment": 0, + "drawStyle": "line", + "fillOpacity": 0, + "gradientMode": "none", + "hideFrom": { + "legend": false, + "tooltip": false, + "viz": false + }, + "lineInterpolation": "linear", + "lineWidth": 1, + "pointSize": 5, + "scaleDistribution": { + "type": "linear" + }, + "showPoints": "auto", + "spanNulls": false, + "stacking": { + "group": "A", + "mode": "none" + }, + "thresholdsStyle": { + "mode": "off" } - ], + }, + "mappings": [], "thresholds": { "mode": "absolute", "steps": [ @@ -170,34 +189,33 @@ } ] }, - "unit": "none" + "unit": "bytes" }, "overrides": [] }, "gridPos": { - "h": 4, - "w": 5, - "x": 6, + "h": 6, + "w": 13, + "x": 11, "y": 1 }, - "id": 12, - "links": [], - "maxDataPoints": 100, + "id": 3, "options": { - "colorMode": "none", - "graphMode": "none", - "justifyMode": "auto", - "orientation": "horizontal", - "reduceOptions": { + "legend": { "calcs": [ - "mean" + "last" ], - "fields": "", - "values": false + "displayMode": "table", + "placement": "right", + "showLegend": true, + "sortBy": "Last", + "sortDesc": true }, - "textMode": "auto" + "tooltip": { + "mode": "single", + "sort": "none" + } }, - "pluginVersion": "9.5.21", "targets": [ { "datasource": { @@ -205,163 +223,78 @@ "uid": "" }, "editorMode": "code", - "exemplar": false, - "expr": "count(up{group=\"fe\", job=\"$cluster_id\"}) - sum(up{group=\"fe\", job=\"$cluster_id\"})", - "format": "time_series", - "hide": false, - "instant": true, - "intervalFactor": 2, - "legendFormat": "__auto", - "range": false, + "expr": "sum(doris_fe_table_data_size{job=\"$cluster_id\"})/2", + "hide": true, + "legendFormat": "sum", + "range": true, "refId": "A" - } - ], - "title": "FE Not Alive Number", - "type": "stat" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Total Backends node number", - "fieldConfig": { - "defaults": { - "color": { - "mode": "thresholds" - }, - "mappings": [ - { - "options": { - "match": "null", - "result": { - "text": "N/A" - } - }, - "type": "special" - } - ], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green", - "value": null - }, - { - "color": "red", - "value": 80 - } - ] - }, - "unit": "none" - }, - "overrides": [] - }, - "gridPos": { - "h": 4, - "w": 6, - "x": 11, - "y": 1 - }, - "id": 11, - "links": [], - "maxDataPoints": 100, - "options": { - "colorMode": "none", - "graphMode": "none", - "justifyMode": "auto", - "orientation": "horizontal", - "reduceOptions": { - "calcs": [ - "mean" - ], - "fields": "", - "values": false }, - "textMode": "auto" - }, - "pluginVersion": "9.5.21", - "targets": [ { "datasource": { "type": "prometheus", "uid": "" }, "editorMode": "code", - "expr": "count(up{group=\"be\", job=\"$cluster_id\"})", - "format": "time_series", - "instant": true, - "intervalFactor": 1, - "refId": "A" + "expr": "max by (db_name, table_name) (doris_fe_table_data_size{job=\"$cluster_id\"})", + "hide": false, + "legendFormat": "{{db_name}}:{{table_name}}", + "range": true, + "refId": "B" } ], - "title": "BE Node Number", - "type": "stat" + "title": "Data size per table", + "type": "timeseries" }, { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, "datasource": { "type": "prometheus", "uid": "" }, - "description": "Total not alive number of Backends.", - "fieldConfig": { - "defaults": { - "color": { - "mode": "thresholds" - }, - "mappings": [ - { - "options": { - "match": "null", - "result": { - "text": "N/A" - } - }, - "type": "special" - } - ], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green", - "value": null - }, - { - "color": "red", - "value": 80 - } - ] - }, - "unit": "none" - }, - "overrides": [] - }, + "description": "Queries per seconds on each Frontends.\nQueries only include Select requests.", + "fill": 1, + "fillGradient": 0, + "format": "time_series", "gridPos": { - "h": 4, - "w": 7, - "x": 17, - "y": 1 + "h": 7, + "w": 8, + "x": 0, + "y": 7 }, - "id": 14, + "hiddenSeries": false, + "id": 4, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "hideEmpty": false, + "hideZero": false, + "max": true, + "min": false, + "rightSide": false, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 1, "links": [], - "maxDataPoints": 100, + "nullPointMode": "null", "options": { - "colorMode": "none", - "graphMode": "none", - "justifyMode": "auto", - "orientation": "horizontal", - "reduceOptions": { - "calcs": [ - "mean" - ], - "fields": "", - "values": false - }, - "textMode": "auto" + "alertThreshold": true }, + "percentage": false, "pluginVersion": "9.5.21", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, "targets": [ { "datasource": { @@ -369,209 +302,49 @@ "uid": "" }, "editorMode": "code", - "expr": "count(up{group=\"be\", job=\"$cluster_id\"}) - sum(up{group=\"be\", job=\"$cluster_id\"})", - "format": "time_series", - "instant": true, - "intervalFactor": 1, + "expr": "rate(doris_fe_query_total{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", user=\"\", cluster_id=\"\"}[$__rate_interval])", + "hide": false, + "legendFormat": "{{instance}}", + "range": true, "refId": "A" } ], - "title": "BE Not Alive Number", - "type": "stat" - }, - { - "datasource": {}, - "description": "", - "fieldConfig": { - "defaults": { - "color": { - "mode": "thresholds" - }, - "mappings": [ - { - "options": { - "match": "null", - "result": { - "text": "N/A" - } - }, - "type": "special" - } - ], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green", - "value": null - }, - { - "color": "red", - "value": 80 - } - ] - }, - "unit": "bytes" - }, - "overrides": [] - }, - "gridPos": { - "h": 6, - "w": 11, - "x": 0, - "y": 5 - }, - "id": 59, - "links": [], - "maxDataPoints": 100, - "options": { - "colorMode": "none", - "graphMode": "none", - "justifyMode": "auto", - "orientation": "horizontal", - "reduceOptions": { - "calcs": [ - "lastNotNull" - ], - "fields": "", - "values": false - }, - "textMode": "auto" - }, - "pluginVersion": "9.5.21", - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_fe_table_data_size{job=\"$cluster_id\"}) / count(up{group=\"fe\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "sum", - "range": true, - "refId": "A" - } - ], - "title": "Data Size", - "type": "stat" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "axisSoftMax": -1, - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green", - "value": null - }, - { - "color": "red", - "value": 80 - } - ] - }, - "unit": "bytes" - }, - "overrides": [] - }, - "gridPos": { - "h": 6, - "w": 13, - "x": 11, - "y": 5 + "thresholds": [], + "timeRegions": [], + "title": "QPS", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" }, - "id": 402, - "options": { - "legend": { - "calcs": [ - "last" - ], - "displayMode": "table", - "placement": "right", - "showLegend": true, - "sortBy": "Last", - "sortDesc": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } + "type": "graph", + "xaxis": { + "mode": "time", + "show": true, + "values": [] }, - "targets": [ + "yaxes": [ { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_fe_table_data_size{job=\"$cluster_id\"})/2", - "hide": true, - "legendFormat": "sum", - "range": true, - "refId": "A" + "$$hashKey": "object:1179", + "decimals": 2, + "format": "ops", + "logBase": 1, + "min": "0", + "show": true }, { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "max by (db_name, table_name) (doris_fe_table_data_size{job=\"$cluster_id\"})", - "hide": false, - "legendFormat": "{{db_name}}:{{table_name}}", - "range": true, - "refId": "B" + "$$hashKey": "object:1180", + "format": "short", + "logBase": 1, + "show": false } ], - "title": "Data size per table", - "type": "timeseries" + "yaxis": { + "align": false + } }, { - "aliasColors": { - "percentage": "#890f02" - }, + "aliasColors": {}, "bars": false, "dashLength": 10, "dashes": false, @@ -579,24 +352,26 @@ "type": "prometheus", "uid": "" }, - "description": "JVM Heap usage of specified Frontend.\nLeft Y Axes shows the used/max heap size.\nRight Y Axes shows the used percentage.", + "description": "99 quantiles of query latency on each Frontends.", "fill": 1, "fillGradient": 0, - "format": "time_series", "gridPos": { "h": 7, "w": 8, - "x": 0, - "y": 11 + "x": 8, + "y": 7 }, "hiddenSeries": false, - "id": 172, + "id": 5, "legend": { "alignAsTable": true, - "avg": false, - "current": true, - "max": false, + "avg": true, + "current": false, + "hideEmpty": false, + "hideZero": false, + "max": true, "min": false, + "rightSide": false, "show": true, "total": false, "values": true @@ -613,13 +388,7 @@ "pointradius": 5, "points": false, "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:263", - "alias": "percentage", - "yaxis": 2 - } - ], + "seriesOverrides": [], "spaceLength": 10, "stack": false, "steppedLine": false, @@ -630,16 +399,17 @@ "uid": "" }, "editorMode": "code", - "expr": "sum(jvm_heap_size_bytes{group=\"fe\", type=\"used\", instance=~\"$fe_instance\", job=\"$cluster_id\"} * 100) by (instance, job) / sum(jvm_heap_size_bytes{group=\"fe\", instance=~\"$fe_instance\", type=\"max\", job=\"$cluster_id\"}) by (instance, job)", - "hide": false, + "expr": "max by (instance) (doris_fe_query_latency_ms{job=\"$cluster_id\", quantile=\"0.99\", group=\"fe\", instance=~\"$fe_instance\", user=\"\"})", + "format": "time_series", + "intervalFactor": 1, "legendFormat": "{{instance}}", "range": true, - "refId": "A" + "refId": "B" } ], "thresholds": [], "timeRegions": [], - "title": "FE JVM Heap Used Rate", + "title": "99th Latency", "tooltip": { "shared": true, "sort": 0, @@ -653,18 +423,16 @@ }, "yaxes": [ { - "$$hashKey": "object:2307", - "format": "percent", + "$$hashKey": "object:1557", + "format": "ms", "logBase": 1, "show": true }, { - "$$hashKey": "object:2308", - "format": "percent", + "$$hashKey": "object:1558", + "format": "short", "logBase": 1, - "max": "100", - "min": "0", - "show": false + "show": true } ], "yaxis": { @@ -676,28 +444,38 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": {}, - "description": "The compaction score of each BE", - "fill": 0, + "datasource": { + "type": "prometheus", + "uid": "" + }, + "description": "", + "fieldConfig": { + "defaults": { + "unit": "percentunit" + }, + "overrides": [] + }, + "fill": 1, "fillGradient": 0, + "format": "time_series", "gridPos": { "h": 7, "w": 8, - "x": 8, - "y": 11 + "x": 16, + "y": 7 }, "hiddenSeries": false, - "id": 142, + "id": 6, "legend": { "alignAsTable": true, "avg": true, "current": false, + "hideEmpty": false, + "hideZero": false, "max": true, "min": false, "rightSide": false, "show": true, - "sort": "avg", - "sortDesc": true, "total": false, "values": true }, @@ -724,123 +502,28 @@ "uid": "" }, "editorMode": "code", - "expr": "max by(backend) (doris_fe_tablet_max_compaction_score{job=\"$cluster_id\", group=\"fe\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "backend-{{backend}}", + "expr": "doris_fe_cache_hit{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", type=\"partition\"}", + "hide": false, + "legendFormat": "partition-{{instance}}", "range": true, "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Compaction Score", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:214", - "decimals": 0, - "format": "none", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:215", - "format": "short", - "logBase": 1, - "min": "0", - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": {}, - "description": "Left Y axes indicates the total received bytes rate of txn. Right Y axes indicates the loaded rows rate of txn.", - "fieldConfig": { - "defaults": { - "unit": "ops" }, - "overrides": [] - }, - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 16, - "y": 11 - }, - "hiddenSeries": false, - "id": 180, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:4038", - "alias": "rows", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ { "datasource": { "type": "prometheus", "uid": "" }, "editorMode": "code", - "expr": "sum(rate(doris_be_stream_load{group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", job=\"$cluster_id\", type=\"load_rows\"}[$__rate_interval])) by (instance)", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}-rows", + "expr": "doris_fe_cache_hit{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", type=\"sql\"}", + "hide": false, + "legendFormat": "sql-{{instance}}", "range": true, - "refId": "A" + "refId": "B" } ], "thresholds": [], "timeRegions": [], - "title": "Load Rows Rate", + "title": "FE Cache Hit", "tooltip": { "shared": true, "sort": 0, @@ -854,19 +537,16 @@ }, "yaxes": [ { - "$$hashKey": "object:3114", - "decimals": 1, - "format": "ops", + "$$hashKey": "object:1179", + "format": "percentunit", "logBase": 1, - "min": "0", "show": true }, { - "$$hashKey": "object:3115", - "format": "ops", + "$$hashKey": "object:1180", + "format": "short", "logBase": 1, - "min": "0", - "show": false + "show": true } ], "yaxis": { @@ -882,7 +562,13 @@ "type": "prometheus", "uid": "" }, - "description": "Queries per seconds on each Frontends.\nQueries only include Select requests.", + "description": "", + "fieldConfig": { + "defaults": { + "unit": "percentunit" + }, + "overrides": [] + }, "fill": 1, "fillGradient": 0, "format": "time_series", @@ -890,10 +576,10 @@ "h": 7, "w": 8, "x": 0, - "y": 18 + "y": 14 }, "hiddenSeries": false, - "id": 178, + "id": 7, "legend": { "alignAsTable": true, "avg": true, @@ -930,7 +616,7 @@ "uid": "" }, "editorMode": "code", - "expr": "max by(job, instance) (doris_fe_qps{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", user=\"\", cluster_id=\"\"})", + "expr": "sum by (instance) (rate(doris_be_num_io_bytes_read_from_cache{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", name=~\".*\"}[$__rate_interval])) / (sum by (instance) (rate(doris_be_num_io_bytes_read_total{job=\"$cluster_id\", group=\"be\",compute_group=~\"$compute_group\", name=~\".*\"}[$__rate_interval])) + 1e-10)", "hide": false, "legendFormat": "{{instance}}", "range": true, @@ -939,7 +625,7 @@ ], "thresholds": [], "timeRegions": [], - "title": "QPS", + "title": "BE File Cache Hit Rate", "tooltip": { "shared": true, "sort": 0, @@ -954,112 +640,14 @@ "yaxes": [ { "$$hashKey": "object:1179", - "decimals": 2, - "format": "ops", + "format": "percentunit", "logBase": 1, - "min": "0", "show": true }, { "$$hashKey": "object:1180", "format": "short", "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "99 quantiles of query latency on each Frontends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 8, - "y": 18 - }, - "hiddenSeries": false, - "id": 182, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "hideEmpty": false, - "hideZero": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "max by (job, instance, user) (doris_fe_query_latency_ms{job=\"$cluster_id\", quantile=\"0.99\", group=\"fe\", instance=~\"$fe_instance\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}-{{user}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "99th Latency", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1557", - "format": "ms", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:1558", - "format": "short", - "logBase": 1, "show": true } ], @@ -1072,27 +660,25 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, + "datasource": {}, "description": "", "fieldConfig": { "defaults": { - "unit": "none" + "unit": "MBs" }, "overrides": [] }, "fill": 1, "fillGradient": 0, + "format": "time_series", "gridPos": { "h": 7, "w": 8, - "x": 16, - "y": 18 + "x": 8, + "y": 14 }, "hiddenSeries": false, - "id": 211, + "id": 8, "legend": { "alignAsTable": true, "avg": true, @@ -1129,17 +715,16 @@ "uid": "" }, "editorMode": "code", - "expr": "sum(doris_fe_tablet_status_count{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", type=\"unhealthy\"}) by (instance)", - "format": "time_series", - "intervalFactor": 1, + "expr": "sum(doris_be_disk_bytes_read{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", device=~\".*\"}) by (job, instance) / sum(doris_be_disk_read_time_ms{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", device=~\".*\"}) by (job, instance) / 1048576 ", + "hide": false, "legendFormat": "{{instance}}", "range": true, - "refId": "B" + "refId": "A" } ], "thresholds": [], "timeRegions": [], - "title": "Unhealthy Tablet Number", + "title": "BE Cache Read MB/s", "tooltip": { "shared": true, "sort": 0, @@ -1153,16 +738,17 @@ }, "yaxes": [ { - "$$hashKey": "object:1557", - "format": "none", + "$$hashKey": "object:1179", + "format": "MBs", "logBase": 1, + "min": "0", "show": true }, { - "$$hashKey": "object:1558", + "$$hashKey": "object:1180", "format": "short", "logBase": 1, - "show": true + "show": false } ], "yaxis": { @@ -1181,7 +767,7 @@ "description": "", "fieldConfig": { "defaults": { - "unit": "percentunit" + "unit": "MBs" }, "overrides": [] }, @@ -1191,11 +777,11 @@ "gridPos": { "h": 7, "w": 8, - "x": 0, - "y": 25 + "x": 16, + "y": 14 }, "hiddenSeries": false, - "id": 422, + "id": 9, "legend": { "alignAsTable": true, "avg": true, @@ -1232,7 +818,7 @@ "uid": "" }, "editorMode": "code", - "expr": "sum by (instance) (rate(doris_be_num_io_bytes_read_from_cache{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", name=~\".*\"}[$__rate_interval])) / (sum by (instance) (rate(doris_be_num_io_bytes_read_total{job=\"$cluster_id\", group=\"be\",compute_group=~\"$compute_group\", name=~\".*\"}[$__rate_interval])) + 1e-10)", + "expr": "sum(doris_be_disk_bytes_written{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", device=~\".*\"}) by (job, instance) / sum(doris_be_disk_read_time_ms{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", device=~\".*\"}) by (job, instance) / 1048576 ", "hide": false, "legendFormat": "{{instance}}", "range": true, @@ -1241,7 +827,7 @@ ], "thresholds": [], "timeRegions": [], - "title": "BE File Cache Hit Rate", + "title": "BE Cache Write MB/s", "tooltip": { "shared": true, "sort": 0, @@ -1256,15 +842,16 @@ "yaxes": [ { "$$hashKey": "object:1179", - "format": "percentunit", + "format": "MBs", "logBase": 1, + "min": "0", "show": true }, { "$$hashKey": "object:1180", "format": "short", "logBase": 1, - "show": true + "show": false } ], "yaxis": { @@ -1272,11111 +859,54 @@ } }, { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": {}, - "description": "", - "fieldConfig": { - "defaults": { - "unit": "MBs" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "format": "time_series", + "collapsed": true, "gridPos": { - "h": 7, - "w": 8, - "x": 8, - "y": 25 - }, - "hiddenSeries": false, - "id": 423, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "hideEmpty": false, - "hideZero": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_disk_bytes_read{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", device=~\".*\"}) by (job, instance) / sum(doris_be_disk_read_time_ms{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", device=~\".*\"}) by (job, instance) / 1048576 ", - "hide": false, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Cache Read MB/s", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1179", - "format": "MBs", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1180", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "", - "fieldConfig": { - "defaults": { - "unit": "MBs" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "format": "time_series", - "gridPos": { - "h": 7, - "w": 8, - "x": 16, - "y": 25 - }, - "hiddenSeries": false, - "id": 424, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "hideEmpty": false, - "hideZero": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_disk_bytes_written{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", device=~\".*\"}) by (job, instance) / sum(doris_be_disk_read_time_ms{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", device=~\".*\"}) by (job, instance) / 1048576 ", - "hide": false, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Cache Write MB/s", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1179", - "format": "MBs", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1180", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "", - "fieldConfig": { - "defaults": { - "unit": "percentunit" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "format": "time_series", - "gridPos": { - "h": 7, - "w": 8, - "x": 0, - "y": 32 - }, - "hiddenSeries": false, - "id": 425, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "hideEmpty": false, - "hideZero": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_cache_hit{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", type=\"partition\"}", - "hide": false, - "legendFormat": "partition-{{instance}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_cache_hit{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", type=\"sql\"}", - "hide": false, - "legendFormat": "sql-{{instance}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "FE Cache Hit", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1179", - "format": "percentunit", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:1180", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "collapsed": true, - "gridPos": { - "h": 1, - "w": 24, - "x": 0, - "y": 39 - }, - "id": 184, - "panels": [ - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "CPU Used Rate dashboard includes 'iowait' mode", - "fieldConfig": { - "defaults": { - "unit": "percent" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 2 - }, - "hiddenSeries": false, - "id": 186, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true, - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "100 - sum by(job, instance) (rate(node_cpu_seconds_total{job=~\"$cluster_id.*\",mode=\"idle\",group=~\"$node_exporter_group\"}[$__rate_interval])) / sum by(job, instance) (rate(node_cpu_seconds_total{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"}[$__rate_interval])) * 100", - "hide": false, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "exemplar": false, - "expr": "node:cpu_usage_percent:recorded:1m{job=~\"$cluster_id.*\", group=~\"$node_exporter_group\"}", - "hide": true, - "instant": false, - "interval": "", - "legendFormat": "{{instance}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "CPU Used Rate", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1454", - "format": "percent", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:1455", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "unit": "decgbytes" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 8, - "y": 2 - }, - "hiddenSeries": false, - "id": 190, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true, - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum by(job, instance) (node_memory_MemTotal_bytes{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"} - node_memory_MemFree_bytes{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"} - node_memory_Cached_bytes{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"} - node_memory_Buffers_bytes{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"} - node_memory_SReclaimable_bytes{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"}) / 1.073741824e+09", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Mem Usage", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1393", - "decimals": 2, - "format": "decgbytes", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1394", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "", - "fieldConfig": { - "defaults": { - "unit": "percent" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 16, - "y": 2 - }, - "hiddenSeries": false, - "id": 188, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true, - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum by(job, instance) (node_memory_MemTotal_bytes{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"} - node_memory_MemFree_bytes{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"} - node_memory_Cached_bytes{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"} - node_memory_Buffers_bytes{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"} - node_memory_SReclaimable_bytes{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"}) / sum by(job, instance) (node_memory_MemTotal_bytes{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"}) * 100", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Mem Used Rate", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1574", - "format": "percent", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:1575", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "unit": "percent" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 0, - "y": 8 - }, - "hiddenSeries": false, - "id": 192, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true, - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "avg by(job, instance, device) (rate(node_disk_io_time_seconds_total{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"}[$__rate_interval])) * 100", - "legendFormat": "{{instance}}-{{device}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "avg by(job, instance) (rate(node_disk_io_time_seconds_total{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"}[$__rate_interval])) * 100", - "hide": false, - "legendFormat": "{{instance}}-allDisks", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "I/O Util", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:900", - "format": "percent", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:901", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": {}, - "fieldConfig": { - "defaults": { - "unit": "percent" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 8, - "y": 8 - }, - "hiddenSeries": false, - "id": 202, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true, - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "exemplar": false, - "expr": "sum by (instance, mountpoint) (100 - (node_filesystem_avail_bytes{fstype!~\"rootfs|tmpfs|devtmpfs|proc|sysfs|cgroup|bpf\",job=~\"$cluster_id.*\",mountpoint=~\".*\",group=~\"$node_exporter_group\"} * 100) / (node_filesystem_size_bytes{fstype!~\"rootfs|tmpfs|devtmpfs|proc|sysfs|cgroup|bpf\",job=~\"$cluster_id.*\",mountpoint=~\".*\",group=~\"$node_exporter_group\"}))", - "format": "time_series", - "instant": false, - "interval": "", - "legendFormat": "{{instance}}-{{mountpoint}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Disk Used Rate", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1694", - "format": "percent", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:1695", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "unit": "GBs" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 16, - "y": 8 - }, - "hiddenSeries": false, - "id": 200, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true, - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "avg by(job, instance, device) (rate(node_disk_written_bytes_total{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"}[$__rate_interval])) / 1.048576e+09", - "legendFormat": "{{instance}}-{{device}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "avg by(job, instance) (rate(node_disk_written_bytes_total{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"}[$__rate_interval])) / 1.048576e+09", - "hide": false, - "legendFormat": "{{instance}}-allDisks", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Disk Write Throughput", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "GBs", - "logBase": 1, - "show": true - }, - { - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "unit": "GBs" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 0, - "y": 15 - }, - "hiddenSeries": false, - "id": 198, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true, - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum by(job, instance, device) (rate(node_disk_read_bytes_total{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"}[$__rate_interval])) / 1.048576e+09", - "format": "time_series", - "interval": "", - "legendFormat": "{{instance}}-{{device}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "avg by(job, instance) (rate(node_disk_read_bytes_total{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"}[$__rate_interval])) / 1.048576e+09", - "hide": false, - "legendFormat": "{{instance}}-allDisks", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Disk Read Throughput", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1755", - "format": "GBs", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:1756", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "unit": "GBs" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 8, - "y": 15 - }, - "hiddenSeries": false, - "id": 205, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true, - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum by(job, instance) (rate(node_network_transmit_bytes_total{device!~\"bond.*?|lo\", group=~\"$node_exporter_group\" ,job=~\"$cluster_id.*\"}[$__rate_interval])) / 1.048576e+09", - "format": "time_series", - "interval": "", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Network Outbound Traffic", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1273", - "format": "GBs", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:1274", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "unit": "GBs" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 16, - "y": 15 - }, - "hiddenSeries": false, - "id": 194, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true, - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum by(job, instance) (rate(node_network_receive_bytes_total{device!~\"bond.*?|lo\",job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"}[$__rate_interval])) / 1.048576e+09", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Network Inbound Traffic", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1875", - "format": "GBs", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:1876", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "unit": "none" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 0, - "y": 22 - }, - "hiddenSeries": false, - "id": 204, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true, - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum by(job, instance) (node_filesystem_files_free{fstype!~\"tmpfs|rootfs\",job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"})", - "format": "time_series", - "interval": "", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Inode Free Count", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "none", - "logBase": 1, - "show": true - }, - { - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "unit": "none" - }, - "overrides": [] - }, - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 8, - "y": 22 - }, - "hiddenSeries": false, - "id": 203, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "nullPointMode": "null", - "options": { - "alertThreshold": true, - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 2, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "abs(node_ntp_offset_seconds{job=~\"$cluster_id.*\",group=~\"$node_exporter_group\"})", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "NTP Offset", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "s", - "logBase": 1, - "show": true - }, - { - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - } - ], - "title": "Host Monitor", - "type": "row" - }, - { - "collapsed": true, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "gridPos": { - "h": 1, - "w": 24, - "x": 0, - "y": 40 - }, - "id": 47, - "panels": [ - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Requests per seconds on each Frontends.\nRequests include all requests sending to the Frontends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 9, - "w": 8, - "x": 0, - "y": 3 - }, - "hiddenSeries": false, - "id": 52, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "hideEmpty": false, - "hideZero": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "max by(job, instance, user) (doris_fe_rps{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", cluster_id=\"\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}-{{user}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "RPS", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1329", - "decimals": 2, - "format": "ops", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1330", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Queries per seconds on each Frontends.\nQueries only include Select requests.", - "fill": 1, - "fillGradient": 0, - "format": "time_series", - "gridPos": { - "h": 9, - "w": 8, - "x": 8, - "y": 3 - }, - "hiddenSeries": false, - "id": 53, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "hideEmpty": false, - "hideZero": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "max by(job, instance) (doris_fe_qps{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", user=\"\", cluster_id=\"\"})", - "hide": false, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "QPS", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1179", - "decimals": 2, - "format": "ops", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1180", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "99 quantiles of query latency on each Frontends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 9, - "w": 8, - "x": 16, - "y": 3 - }, - "hiddenSeries": false, - "id": 54, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "hideEmpty": false, - "hideZero": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "max by (job, instance, user) (doris_fe_query_latency_ms{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", cluster_id=\"\", quantile=\"0.99\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}-{{user}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "99th Latency", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1557", - "format": "ms", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:1558", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates 95 to 99 quantiles of query latency on each Frontends.\nRight Y axes indicates the query rate per 1 min.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 12 - }, - "hiddenSeries": false, - "id": 30, - "legend": { - "alignAsTable": true, - "avg": true, - "current": true, - "max": false, - "min": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:479", - "alias": "query rate", - "lines": false, - "points": true, - "yaxis": 2 - }, - { - "$$hashKey": "object:480", - "alias": "0.999", - "legend": false, - "lines": false - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "max by(job, instance, quantile, user) (doris_fe_query_latency_ms{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", cluster_id=\"\"})", - "format": "time_series", - "hide": false, - "intervalFactor": 2, - "legendFormat": "{{quantile}}-{{instance}}-{{user}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Query Percentile", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:499", - "format": "ms", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:500", - "decimals": 0, - "format": "short", - "logBase": 1, - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates the accumulated error queries number.\nRight Y axes indicates the error query rate per 1 min.\nNormally, the error query rate should be 0.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 8, - "y": 12 - }, - "hiddenSeries": false, - "id": 33, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": true, - "min": true, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:1205", - "alias": "/query_err_.*/", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "max by (job, instance, user) (doris_fe_query_err{job=\"$cluster_id\", instance=~\"$fe_instance\", cluster_id=\"\"})", - "format": "time_series", - "hide": false, - "intervalFactor": 2, - "legendFormat": "query_err_count-{{instance}}-{{user}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "max by(job, instance, user) (doris_fe_query_err_rate{job=\"$cluster_id\", instance=~\"$fe_instance\", cluster_id=\"\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "query_err_rate-{{instance}}-{{user}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Query Error", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1212", - "decimals": 2, - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1213", - "format": "cps", - "logBase": 1, - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Number of mysql connections of each Frontend.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 16, - "y": 12 - }, - "hiddenSeries": false, - "id": 34, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "max by(job, instance) (doris_fe_connection_total{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", cluster_id=\"\"})", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "FE Mysql Connections", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:970", - "format": "short", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:971", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - } - ], - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "refId": "A" - } - ], - "title": "Query Statistics", - "type": "row" - }, - { - "collapsed": true, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "gridPos": { - "h": 1, - "w": 24, - "x": 0, - "y": 41 - }, - "id": 128, - "panels": [ - { - "columns": [], - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Statistic of Broker load jobs's num in each Load State.", - "fontSize": "100%", - "gridPos": { - "h": 6, - "w": 6, - "x": 0, - "y": 4 - }, - "id": 141, - "links": [], - "scroll": true, - "showHeader": true, - "sort": { - "col": 0, - "desc": true - }, - "styles": [ - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "pattern": "state", - "thresholds": [], - "type": "string", - "unit": "short" - }, - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 0, - "mappingType": 1, - "pattern": "Value", - "thresholds": [], - "type": "number", - "unit": "none" - }, - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "mappingType": 1, - "pattern": "/.*/", - "thresholds": [], - "type": "hidden", - "unit": "short" - } - ], - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_job{job=\"$cluster_id\", exported_job=\"load\", type=\"BROKER\", instance=\"$fe_master\"}", - "format": "table", - "hide": false, - "instant": true, - "intervalFactor": 2, - "refId": "A" - } - ], - "title": "Broker Load Job", - "transform": "table", - "type": "table-old" - }, - { - "columns": [], - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Statistic of load jobs's num in each Load State which is generated by Insert Stmt.", - "fontSize": "100%", - "gridPos": { - "h": 6, - "w": 6, - "x": 6, - "y": 4 - }, - "id": 140, - "links": [], - "scroll": true, - "showHeader": true, - "sort": { - "col": 0, - "desc": true - }, - "styles": [ - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "pattern": "state", - "thresholds": [], - "type": "string", - "unit": "short" - }, - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 0, - "mappingType": 1, - "pattern": "Value", - "thresholds": [], - "type": "number", - "unit": "none" - }, - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "mappingType": 1, - "pattern": "/.*/", - "thresholds": [], - "type": "hidden", - "unit": "short" - } - ], - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_job{job=\"$cluster_id\", exported_job=\"load\", type=\"INSERT\", instance=\"$fe_master\"}", - "format": "table", - "instant": true, - "intervalFactor": 2, - "refId": "A" - } - ], - "title": "Insert Load Job", - "transform": "table", - "type": "table-old" - }, - { - "columns": [], - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Statistic of Routine load jobs's num in each Load State.", - "fontSize": "100%", - "gridPos": { - "h": 6, - "w": 6, - "x": 12, - "y": 4 - }, - "id": 164, - "links": [], - "scroll": true, - "showHeader": true, - "sort": { - "col": 0, - "desc": true - }, - "styles": [ - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "pattern": "state", - "thresholds": [], - "type": "string", - "unit": "short" - }, - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 0, - "mappingType": 1, - "pattern": "Value", - "thresholds": [], - "type": "number", - "unit": "none" - }, - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "mappingType": 1, - "pattern": "/.*/", - "thresholds": [], - "type": "hidden", - "unit": "short" - } - ], - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_job{job=\"$cluster_id\", exported_job=\"load\", type=\"ROUTINE_LOAD\", instance=\"$fe_master\"}", - "format": "table", - "instant": true, - "intervalFactor": 2, - "refId": "A" - } - ], - "title": "Routine Load Job", - "transform": "table", - "type": "table-old" - }, - { - "columns": [], - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Statistic of Spark load jobs's num in each Load State.", - "fontSize": "100%", - "gridPos": { - "h": 6, - "w": 6, - "x": 18, - "y": 4 - }, - "id": 166, - "links": [], - "scroll": true, - "showHeader": true, - "sort": { - "col": 0, - "desc": true - }, - "styles": [ - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "pattern": "state", - "thresholds": [], - "type": "string", - "unit": "short" - }, - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 0, - "mappingType": 1, - "pattern": "Value", - "thresholds": [], - "type": "number", - "unit": "none" - }, - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "mappingType": 1, - "pattern": "/.*/", - "thresholds": [], - "type": "hidden", - "unit": "short" - } - ], - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_job{job=\"$cluster_id\", exported_job=\"load\", type=\"SPARK\", instance=\"$fe_master\"}", - "format": "table", - "instant": true, - "intervalFactor": 2, - "refId": "A" - } - ], - "title": "Spark Load Job", - "transform": "table", - "type": "table-old" - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The trend report of broker load job", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 6, - "x": 0, - "y": 10 - }, - "hiddenSeries": false, - "id": 133, - "legend": { - "alignAsTable": false, - "avg": false, - "current": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sort": "current", - "sortDesc": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_job{job=\"$cluster_id\", exported_job=\"load\", type=\"BROKER\", instance=\"$fe_master\", state=~\"PENDING|ETL|LOADING|FINISHED\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{state}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Broker Load Tendency", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:721", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:722", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The trend report of insert load job", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 6, - "x": 6, - "y": 10 - }, - "hiddenSeries": false, - "id": 134, - "legend": { - "alignAsTable": false, - "avg": false, - "current": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sort": "current", - "sortDesc": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_job{job=\"$cluster_id\", exported_job=\"load\", type=\"INSERT\", instance=\"$fe_master\", state=~\"PENDING|ETL|LOADING|FINISHED\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{state}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Insert Load Tendency", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:929", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:930", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The trend report of routine load job", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 6, - "x": 12, - "y": 10 - }, - "hiddenSeries": false, - "id": 170, - "legend": { - "alignAsTable": false, - "avg": false, - "current": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sort": "current", - "sortDesc": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_job{job=\"$cluster_id\", exported_job=\"load\", type=\"ROUTINE_LOAD\", instance=\"$fe_master\", state=~\"NEED_SCHEDULE|RUNNING|PAUSED\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{state}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Routine Load Tendency", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2767", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2768", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The trend report of spark load job", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 6, - "x": 18, - "y": 10 - }, - "hiddenSeries": false, - "id": 168, - "legend": { - "alignAsTable": false, - "avg": false, - "current": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sort": "current", - "sortDesc": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_job{job=\"$cluster_id\", exported_job=\"load\", type=\"SPARK\", instance=\"$fe_master\", state=~\"PENDING|ETL|LOADING|FINISHED\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{state}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Spark Load Tendency", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2985", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2986", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "columns": [], - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Number of running schema change jobs.", - "fontSize": "100%", - "gridPos": { - "h": 3, - "w": 6, - "x": 0, - "y": 16 - }, - "id": 135, - "links": [], - "scroll": true, - "showHeader": true, - "sort": { - "col": 0, - "desc": true - }, - "styles": [ - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "pattern": "state", - "thresholds": [], - "type": "string", - "unit": "short" - }, - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "mappingType": 1, - "pattern": "Value", - "thresholds": [], - "type": "number", - "unit": "short" - }, - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "link": false, - "mappingType": 1, - "pattern": "/.*/", - "thresholds": [], - "type": "hidden", - "unit": "short" - } - ], - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_job{job=\"$cluster_id\", instance=\"$fe_master\", type=\"SCHEMA_CHANGE\"}", - "format": "table", - "hide": false, - "instant": true, - "intervalFactor": 2, - "legendFormat": "asds", - "refId": "A" - } - ], - "title": "SC Job", - "transform": "table", - "type": "table-old" - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Queue size of report in Master FE.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 6, - "x": 6, - "y": 16 - }, - "hiddenSeries": false, - "id": 137, - "legend": { - "avg": true, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_report_queue_size{job=\"$cluster_id\", instance=\"$fe_master\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Report queue size", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Report Queue Size", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2027", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2028", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Stream Load Job Txn Request", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 6, - "x": 12, - "y": 16 - }, - "hiddenSeries": false, - "id": 210, - "legend": { - "avg": true, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "rate(doris_be_stream_load_txn_request{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}-{{type}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Stream Load Job", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2027", - "decimals": 2, - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2028", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "columns": [], - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Number of running rollup jobs.", - "fontSize": "100%", - "gridPos": { - "h": 3, - "w": 6, - "x": 0, - "y": 19 - }, - "id": 136, - "links": [], - "scroll": true, - "showHeader": true, - "sort": { - "col": 0, - "desc": true - }, - "styles": [ - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "pattern": "state", - "thresholds": [], - "type": "string", - "unit": "short" - }, - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "mappingType": 1, - "pattern": "Value", - "thresholds": [], - "type": "number", - "unit": "short" - }, - { - "alias": "", - "align": "auto", - "colors": [ - "rgba(245, 54, 54, 0.9)", - "rgba(237, 129, 40, 0.89)", - "rgba(50, 172, 45, 0.97)" - ], - "dateFormat": "YYYY-MM-DD HH:mm:ss", - "decimals": 2, - "mappingType": 1, - "pattern": "/.*/", - "thresholds": [], - "type": "hidden", - "unit": "short" - } - ], - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_job{job=\"$cluster_id\", instance=\"$fe_master\", type=\"ROLLUP\"}", - "format": "table", - "instant": true, - "intervalFactor": 2, - "refId": "A" - } - ], - "title": "Rollup Job", - "transform": "table", - "type": "table-old" - } - ], - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "refId": "A" - } - ], - "title": "Jobs", - "type": "row" - }, - { - "collapsed": true, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "gridPos": { - "h": 1, - "w": 24, - "x": 0, - "y": 42 - }, - "id": 107, - "panels": [ - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Show the number and rate of txn begin and success", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 5 - }, - "hiddenSeries": false, - "id": 124, - "legend": { - "alignAsTable": false, - "avg": false, - "current": false, - "hideEmpty": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "alias": "txn failed", - "yaxis": 1 - }, - { - "alias": "rate", - "yaxis": 2 - }, - { - "alias": "txn begin rate", - "lines": false, - "points": true, - "yaxis": 2 - }, - { - "alias": "txn success rate", - "lines": false, - "points": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_txn_counter{type=\"begin\"}", - "format": "time_series", - "hide": false, - "intervalFactor": 1, - "legendFormat": "{{instance}}_txn begin", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_txn_counter{type=\"success\"}", - "format": "time_series", - "hide": false, - "intervalFactor": 1, - "legendFormat": "{{instance}}_txn success", - "range": true, - "refId": "D" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_fe_txn_counter{type=\"begin\"}[$__rate_interval])", - "format": "time_series", - "hide": false, - "intervalFactor": 1, - "legendFormat": "{{instance}}_txn begin rate", - "range": true, - "refId": "B" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_fe_txn_counter{type=\"success\"}[$__rate_interval])", - "format": "time_series", - "hide": false, - "intervalFactor": 1, - "legendFormat": "{{instance}}_txn success rate", - "range": true, - "refId": "C" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Txn Begin/Success on FE", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2530", - "format": "none", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:2531", - "format": "ops", - "logBase": 1, - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Show the failed txn request. Including rejected request and failed txn", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 8, - "y": 5 - }, - "hiddenSeries": false, - "id": 123, - "legend": { - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "alias": "txn failed rate", - "lines": false, - "points": true - }, - { - "alias": "txn reject rate", - "lines": false, - "points": true - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "rate(doris_fe_txn_counter{type=\"reject\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}_txn reject rate", - "range": true, - "refId": "C" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "rate(doris_fe_txn_counter{type=\"failed\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}_txn failed rate", - "range": true, - "refId": "D" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Txn Failed/Reject on FE", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2966", - "format": "ops", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2967", - "format": "ops", - "logBase": 1, - "min": "0", - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The number of total publish task request and error rate.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 16, - "y": 5 - }, - "hiddenSeries": false, - "id": 126, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": true, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "alias": "Total", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_engine_requests_total{job=\"$cluster_id\", type=\"publish\", status=\"total\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Total", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_be_engine_requests_total{job=\"$cluster_id\", type=\"publish\", status=\"failed\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Publish Task on BE", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "decimals": 0, - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Show the txn status on FE", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 0, - "y": 11 - }, - "hiddenSeries": false, - "id": 102, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "alias": "/rollback/", - "color": "#bf1b00", - "points": true - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_txn_status{group=\"fe\", job=\"$cluster_id\", type=\"prepare\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "prepare", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_txn_status{group=\"fe\", job=\"$cluster_id\", type=\"precommitted\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "precommitted", - "range": true, - "refId": "B" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_txn_status{group=\"fe\", job=\"$cluster_id\", type=\"committed\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "committed", - "range": true, - "refId": "C" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_txn_status{group=\"fe\", job=\"$cluster_id\", type=\"aborted\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "aborted", - "range": true, - "refId": "D" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "exemplar": false, - "expr": "doris_fe_txn_status{group=\"fe\", job=\"$cluster_id\", type=\"visible\"}", - "hide": false, - "legendFormat": "visible", - "range": true, - "refId": "E" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "exemplar": false, - "expr": "doris_fe_txn_status{group=\"fe\", job=\"$cluster_id\", type=\"unknown\"}", - "hide": false, - "legendFormat": "unknown", - "range": true, - "refId": "F" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Txn Status on FE", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "format": "none", - "logBase": 1, - "show": true - }, - { - "format": "ops", - "logBase": 1, - "min": "0", - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates the total received bytes rate of txn. Right Y axes indicates the loaded rows rate of txn.", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 8, - "y": 11 - }, - "hiddenSeries": false, - "id": 103, - "legend": { - "alignAsTable": true, - "avg": true, - "current": true, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "alias": "rows", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(rate(doris_be_stream_load{group=\"be\", compute_group=~\"$compute_group\", job=\"$cluster_id\", type=\"receive_bytes\"}[$__rate_interval]))", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "bytes", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(rate(doris_be_stream_load{group=\"be\", compute_group=~\"$compute_group\", job=\"$cluster_id\", type=\"load_rows\"}[$__rate_interval]))", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "rows", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Txn Load Bytes/Rows rate", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:3114", - "format": "Bps", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:3115", - "format": "ops", - "logBase": 1, - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - } - ], - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "refId": "A" - } - ], - "title": "Transactions", - "type": "row" - }, - { - "collapsed": true, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "gridPos": { - "h": 1, - "w": 24, - "x": 0, - "y": 43 - }, - "id": 49, - "panels": [ - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The max replayed meta data journal id on Frontends.\nNormally, all Frontends should be same on this metrics, or just slightly different for a short period.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 6 - }, - "hiddenSeries": false, - "id": 63, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_max_journal_id{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", cluster_id=\"\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Max Replayed Journal ID", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1483", - "format": "none", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:1484", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The edit log size for each FE", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 8, - "y": 6 - }, - "hiddenSeries": false, - "id": 150, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_edit_log{job=\"$cluster_id\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}-{{type}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Edit Log Size", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:162", - "decimals": 0, - "format": "decbytes", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:163", - "format": "none", - "label": "", - "logBase": 1, - "min": "0", - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The edit log clean of each FE", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 16, - "y": 6 - }, - "hiddenSeries": false, - "id": 144, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "sort": "avg", - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_edit_log_clean{job=\"$cluster_id\", type=\"success\", group=\"fe\", instance=~\"$fe_instance\", cluster_id=\"\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}_success", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_edit_log_clean{job=\"$cluster_id\", type=\"failed\", group=\"fe\", instance=~\"$fe_instance\", cluster_id=\"\"}", - "hide": false, - "legendFormat": "{{instance}}_failed", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Edit Log Clean", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:162", - "decimals": 0, - "format": "none", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:163", - "format": "none", - "label": "", - "logBase": 1, - "min": "0", - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The image push of each FE", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 12 - }, - "hiddenSeries": false, - "id": 154, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "sort": "avg", - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_image_push{job=\"$cluster_id\", type=\"success\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}_success", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_image_push{job=\"$cluster_id\", type=\"failed\"}", - "hide": false, - "legendFormat": "{{instance}}_failed", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Image Push", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:162", - "decimals": 0, - "format": "none", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:163", - "format": "none", - "label": "", - "logBase": 1, - "min": "0", - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The image Write of each FE", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 8, - "y": 12 - }, - "hiddenSeries": false, - "id": 156, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "sort": "avg", - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_image_write{job=\"$cluster_id\", type=\"success\", group=\"fe\", instance=~\"$fe_instance\", cluster_id=\"\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}_success", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_image_write{job=\"$cluster_id\", type=\"failed\", group=\"fe\", instance=~\"$fe_instance\", cluster_id=\"\"}", - "hide": false, - "legendFormat": "{{instance}}_failed", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Image Write", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:162", - "decimals": 0, - "format": "none", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:163", - "format": "none", - "label": "", - "logBase": 1, - "min": "0", - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The image clean of each FE", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 16, - "y": 12 - }, - "hiddenSeries": false, - "id": 146, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "sort": "avg", - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_image_clean{job=\"$cluster_id\", type=\"success\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}_success", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_image_clean{job=\"$cluster_id\", type=\"failed\"}", - "hide": false, - "legendFormat": "{{instance}}_failed", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Image Clean", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:162", - "decimals": 0, - "format": "none", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:163", - "format": "none", - "label": "", - "logBase": 1, - "min": "0", - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The counter of meta data image generation on Master Frontend. And the counter of image successfully pushing to other Non-master Frontends.\nThese metrics is expected to increase at reasonable intervals. And normally, they should be equal.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 18 - }, - "hiddenSeries": false, - "id": 65, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_image_write{job=\"$cluster_id\", instance=\"$fe_master\"}", - "format": "time_series", - "instant": false, - "intervalFactor": 1, - "legendFormat": "{{instance}}-write", - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_image_push{job=\"$cluster_id\", instance=\"$fe_master\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}-push", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Image Counter", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:263", - "decimals": 0, - "format": "none", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:264", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The left Y axes shows write latency of 99th. The right Y axes shows the write per seconds of journal.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 8, - "y": 18 - }, - "hiddenSeries": false, - "id": 112, - "legend": { - "alignAsTable": true, - "avg": false, - "current": false, - "max": false, - "min": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:773", - "alias": "/.*-rate/", - "points": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_editlog_write_latency_ms{job=\"$cluster_id\", instance=~\"$fe_instance\", quantile=\"0.99\"}", - "format": "time_series", - "hide": false, - "intervalFactor": 1, - "legendFormat": "{{instance}}-99th", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "rate(doris_fe_edit_log{job=\"$cluster_id\", type=\"write\", instance=~\"$fe_instance\"}[$__rate_interval])", - "format": "time_series", - "hide": false, - "intervalFactor": 1, - "legendFormat": "{{instance}}-write-rate", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BDBJE Write Latency & Rate", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:500", - "format": "ms", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:501", - "format": "wps", - "logBase": 1, - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The left Y axes shows the read per seconds of journal.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 16, - "y": 18 - }, - "hiddenSeries": false, - "id": 152, - "legend": { - "alignAsTable": true, - "avg": false, - "current": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": false - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:457", - "alias": "/.*-rate/", - "points": true - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "exemplar": false, - "expr": "rate(doris_fe_edit_log{job=\"$cluster_id\", type=\"read\", instance=~\"$fe_instance\"}[$__rate_interval])", - "format": "time_series", - "hide": false, - "instant": false, - "intervalFactor": 1, - "legendFormat": "{{instance}}-read-rate", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BDBJE Read Rate", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:500", - "format": "rps", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:501", - "format": "wps", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": { - "percentage": "#890f02" - }, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "JVM Heap usage of specified Frontend.\nLeft Y Axes shows the used/max heap size.\nRight Y Axes shows the used percentage.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 24 - }, - "hiddenSeries": false, - "id": 13, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:1409", - "alias": "/.*-percentage/", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "jvm_heap_size_bytes{job=\"$cluster_id\", instance=~\"$fe_instance\", type=\"used\"}", - "format": "time_series", - "hide": false, - "instant": false, - "intervalFactor": 2, - "legendFormat": "{{instance}}-used", - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "jvm_heap_size_bytes{job=\"$cluster_id\", instance=~\"$fe_instance\", type=\"max\"}", - "format": "time_series", - "hide": false, - "intervalFactor": 2, - "legendFormat": "{{instance}}-max", - "range": true, - "refId": "B" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum by (instance) (jvm_heap_size_bytes{job=\"$cluster_id\", instance=~\"$fe_instance\", type=\"used\"}) * 100 / sum by (instance) (jvm_heap_size_bytes{job=\"$cluster_id\",instance=~\"$fe_instance\", type=\"max\"})", - "format": "time_series", - "hide": false, - "intervalFactor": 2, - "legendFormat": "{{instance}}-percentage", - "range": true, - "refId": "C" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "JVM Heap", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2307", - "format": "bytes", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:2308", - "format": "percent", - "logBase": 1, - "max": "100", - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": { - "percentage": "#890f02" - }, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "JVM Non Heap usage of specified Frontend.\nLeft Y Axes shows the used/committed non heap size.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 8, - "y": 24 - }, - "hiddenSeries": false, - "id": 24, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:1679", - "alias": "percentage", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "jvm_non_heap_size_bytes{job=\"$cluster_id\", instance=~\"$fe_instance\", type=\"used\"}", - "format": "time_series", - "hide": false, - "instant": false, - "intervalFactor": 2, - "legendFormat": "{{instance}}-used", - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "jvm_non_heap_size_bytes{job=\"$cluster_id\", instance=~\"$fe_instance\", type=\"committed\"}", - "format": "time_series", - "hide": false, - "intervalFactor": 2, - "legendFormat": "{{instance}}-committed", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "JVM Non Heap", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2336", - "format": "bytes", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2337", - "format": "percent", - "logBase": 1, - "max": "100", - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Num of threads of FE JVM", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 16, - "y": 24 - }, - "hiddenSeries": false, - "id": 88, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": true, - "min": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "jvm_thread{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", type=\"count\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "JVM Threads", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2481", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2482", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": { - "percentage": "#890f02" - }, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "JVM old generation usage of specified Frontend. Left Y Axes shows the used/max old generation size. Right Y Axes shows the used percentage.\nNormally, the usage percentage should be less than 80%.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 30 - }, - "hiddenSeries": false, - "id": 426, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:1224", - "alias": "/.*-percentage/", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "jvm_old_size_bytes{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", cluster_id=\"\", type=\"used\"}", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{instance}}-used", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "jvm_old_size_bytes{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", cluster_id=\"\", type=\"max\"}", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{instance}}-max", - "range": true, - "refId": "B" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(jvm_old_size_bytes{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", type=\"used\"}) * 100 / sum(jvm_old_size_bytes{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", type=\"max\"})", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{instance}}-percentage", - "range": true, - "refId": "C" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "JVM Old", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2365", - "format": "bytes", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:2366", - "format": "percent", - "logBase": 1, - "max": "100", - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": { - "percentage": "#890f02" - }, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "JVM young generation usage of specified Frontend.\nLeft Y Axes shows the used/max young generation size.\nRight Y Axes shows the used percentage.Normally, the usage percentage should be less than 80%.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 8, - "y": 30 - }, - "hiddenSeries": false, - "id": 27, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:872", - "alias": "/.*-percentage/", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "jvm_young_size_bytes{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", type=\"used\"}", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{instance}}-used", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "jvm_young_size_bytes{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", type=\"max\"}", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{instance}}-max", - "range": true, - "refId": "B" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum by (instance) (jvm_young_size_bytes{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", type=\"used\"}) * 100 / sum by (instance) (jvm_young_size_bytes{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", type=\"max\"})", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{instance}}-percentage", - "range": true, - "refId": "C" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "JVM Young", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2365", - "format": "bytes", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:2366", - "format": "percent", - "label": "", - "logBase": 1, - "max": "100", - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Cluster's max Compaction Score value collected by master FE", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 16, - "y": 30 - }, - "hiddenSeries": false, - "id": 158, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "sort": "avg", - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_max_tablet_compaction_score{job=\"$cluster_id\", cluster_id=\"\"} * on(instance) group_left(group, job) (node_info{type=\"is_master\", group=\"fe\"} == 1)", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Master FE: {{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Cluster Max Compaction Score", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:214", - "decimals": 0, - "format": "none", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:215", - "format": "short", - "logBase": 1, - "min": "0", - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Number of tablets begin scheduled. These tablet may be in recovery process or balance process", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 36 - }, - "hiddenSeries": false, - "id": 117, - "legend": { - "avg": false, - "current": true, - "max": false, - "min": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_scheduled_tablet_num{job=\"$cluster_id\", instance=\"$fe_master\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Scheduling tablet number", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Scheduling Tablets", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1383", - "decimals": 0, - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1384", - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - } - ], - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "refId": "A" - } - ], - "title": "FE", - "type": "row" - }, - { - "collapsed": true, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "gridPos": { - "h": 1, - "w": 24, - "x": 0, - "y": 44 - }, - "id": 50, - "panels": [ - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The file descriptor usage of Backends. Left Y axes shows the used fd num. Right Y axes shows the soft limit open file number.", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 0, - "y": 7 - }, - "hiddenSeries": false, - "id": 94, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:1675", - "alias": "/.*limit/", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_be_process_fd_num_used{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}-used", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_be_process_fd_num_limit_soft{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}-soft limit", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE FD Count", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1657", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1658", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The thread number of Backends", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 8, - "y": 7 - }, - "hiddenSeries": false, - "id": 95, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_be_process_thread_num{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Thread Num", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1686", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1687", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Number of tablets of each Backends", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 7, - "w": 8, - "x": 16, - "y": 7 - }, - "hiddenSeries": false, - "id": 115, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_fe_tablet_num{job=\"$cluster_id\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{backend}}-backend", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Tablet Distribution", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1609", - "format": "none", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1610", - "format": "short", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Base compaction rate of Backends.\nNormally, base compaction only runs between 20:00 to 4:00 and it is configurable.\nRight Y axes indicates the total base compaction bytes.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 0, - "y": 14 - }, - "hiddenSeries": false, - "id": 39, - "legend": { - "alignAsTable": true, - "avg": false, - "current": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 0, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:2154", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - }, - { - "$$hashKey": "object:2155", - "alias": "Total", - "color": "rgb(27, 255, 0)", - "fill": 0, - "points": true, - "steppedLine": false, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": true, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "rate(doris_be_compaction_bytes_total{type=\"base\", job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_compaction_bytes_total{type=\"base\", job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Total", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Compaction Base", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1813", - "format": "Bps", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1814", - "format": "bytes", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Cumulative compaction rate of Backends.\nRight Y axes indicates the total cumulative compaction bytes.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 12, - "y": 14 - }, - "hiddenSeries": false, - "id": 40, - "legend": { - "alignAsTable": true, - "avg": false, - "current": false, - "max": true, - "min": false, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 0, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:2388", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - }, - { - "$$hashKey": "object:2389", - "alias": "Total", - "color": "rgb(15, 255, 0)", - "fill": 0, - "points": true, - "steppedLine": false, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": true, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "rate(doris_be_compaction_bytes_total{type=\"cumulative\", job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_compaction_bytes_total{type=\"cumulative\", job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Total", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Compaction Cumulate", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1842", - "format": "Bps", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:1843", - "format": "bytes", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Loading rate of Backends.\nThis indicates the rate of file downloading in LOADING state of load job(MINI and BROKER load).\nRight Y axes indicates the total rate of file downloading.", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 0, - "y": 19 - }, - "hiddenSeries": false, - "id": 41, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sort": "avg", - "sortDesc": false, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:2629", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - }, - { - "$$hashKey": "object:2630", - "alias": "Total rate", - "bars": false, - "color": "rgb(56, 255, 0)", - "lines": true, - "points": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "rate(doris_be_push_request_write_bytes{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(rate(doris_be_push_request_write_bytes{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval]))", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Total rate", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Push Bytes", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2006", - "format": "Bps", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2007", - "format": "Bps", - "logBase": 1, - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Loading rows rate of Backends.\nThis indicates the rate of rows loaded in LOADING state of load job. Right Y axes shows the total push rate of cluster.", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 12, - "y": 19 - }, - "hiddenSeries": false, - "id": 42, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:2862", - "alias": "/Total/", - "color": "rgb(0, 255, 26)", - "points": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "rate(doris_be_push_request_write_rows{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(rate(doris_be_push_request_write_rows{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval]))", - "format": "time_series", - "intervalFactor": 2, - "legendFormat": "Total", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Push Rows", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1925", - "format": "ops", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1926", - "format": "ops", - "logBase": 1, - "min": "0", - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Scan rate of Backends.\nThis indicates the read rate when processing queries.", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 0, - "y": 24 - }, - "hiddenSeries": false, - "id": 43, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:3082", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "rate(doris_be_query_scan_bytes{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Scan Bytes", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2143", - "format": "Bps", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2144", - "format": "ops", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Scan rows rate of Backends.\nThis indicates the read rows rate when processing queries.", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 12, - "y": 24 - }, - "hiddenSeries": false, - "id": 44, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:1418", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "rate(doris_be_query_scan_rows{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Scan Rows", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:1954", - "format": "ops", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:1955", - "format": "ops", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "bthread worker count.", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 0, - "y": 29 - }, - "hiddenSeries": false, - "id": 208, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:3082", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "bthread_worker_count{job=\"$cluster_id\", group=\"be-brpc\", compute_group=~\"$compute_group\", instance=~\"$brpc_instance\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Bthread Worker Count", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2143", - "format": "Bps", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:2144", - "format": "ops", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 12, - "y": 29 - }, - "hiddenSeries": false, - "id": 207, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:3082", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "bthread_timer_usage{job=\"$cluster_id\", group=\"be-brpc\", compute_group=~\"$compute_group\", instance=~\"$brpc_instance\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Bthread Timer Usage", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2143", - "format": "Bps", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:2144", - "format": "ops", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "bthread worker usage.", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 0, - "y": 34 - }, - "hiddenSeries": false, - "id": 209, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:3082", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "bthread_worker_usage{job=\"$cluster_id\", group=\"be-brpc\", compute_group=~\"$compute_group\", instance=~\"$brpc_instance\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Bthread Worker Usage", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2143", - "format": "Bps", - "logBase": 1, - "show": true - }, - { - "$$hashKey": "object:2144", - "format": "ops", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "BE light work pool queue size", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 12, - "y": 34 - }, - "hiddenSeries": false, - "id": 215, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:3082", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_be_light_work_pool_queue_size{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Light Work pool Queue Size", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2143", - "format": "none", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2144", - "format": "ops", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Brpc heavy thread pool queue size", - "fieldConfig": { - "defaults": { - "unit": "none" - }, - "overrides": [] - }, - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 0, - "y": 39 - }, - "hiddenSeries": false, - "id": 212, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:3082", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_be_heavy_work_pool_queue_size{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Heavy Work pool Queue Size", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2143", - "format": "none", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2144", - "format": "ops", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "BE light work active threads", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 12, - "y": 39 - }, - "hiddenSeries": false, - "id": 213, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:3082", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_be_light_work_active_threads{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Light Work Active Threads", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2143", - "format": "none", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2144", - "format": "ops", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Be heavy work active threads", - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 0, - "y": 44 - }, - "hiddenSeries": false, - "id": 214, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:3082", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "doris_be_heavy_work_active_threads{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "BE Heavy Work Active Threads", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2143", - "format": "none", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2144", - "format": "ops", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "", - "fieldConfig": { - "defaults": { - "unit": "percent" - }, - "overrides": [] - }, - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 12, - "y": 44 - }, - "hiddenSeries": false, - "id": 430, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:3082", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "(sum by(cluster_name, group, instance, compute_group, job, workload_group) (rate(doris_be_workload_group_cpu_time_sec{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval])) / scalar(max(doris_be_avail_cpu_num{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\",instance=~\"$be_instance\"}))) * 100", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}-{{workload_group}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Workload Group CPU Used Rate", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2143", - "format": "percent", - "logBase": 1, - "max": "100", - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2144", - "format": "ops", - "logBase": 1, - "max": "100", - "min": "0", - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "", - "fieldConfig": { - "defaults": { - "unit": "decmbytes" - }, - "overrides": [] - }, - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 0, - "y": 49 - }, - "hiddenSeries": false, - "id": 432, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:3082", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum by (job, instance, workload_group) (doris_be_workload_group_mem_used_bytes{job=\"$cluster_id\", group=\"be\", instance=~\"$be_instance\"} / 1.048675e+06)", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}-{{workload_group}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Workload Group Mem Used", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2143", - "format": "decmbytes", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2144", - "format": "ops", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "", - "fieldConfig": { - "defaults": { - "unit": "MBs" - }, - "overrides": [] - }, - "fill": 0, - "fillGradient": 0, - "gridPos": { - "h": 5, - "w": 12, - "x": 12, - "y": 49 - }, - "hiddenSeries": false, - "id": 431, - "legend": { - "alignAsTable": true, - "avg": true, - "current": false, - "max": true, - "min": true, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.21", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:3082", - "alias": "/Counter/", - "stack": true, - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum by(job, compute_group, instance, group, workload_group) (rate(doris_be_workload_group_local_scan_bytes{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval]) / 1.048675e+06)", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "local-{{instance}}-{{workload_group}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum by(job, compute_group, instance, group, workload_group) (rate(doris_be_workload_group_remote_scan_bytes{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval]) / 1.048675e+06)", - "hide": false, - "legendFormat": "remote-{{instance}}-{{workload_group}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Workload Group File Read Rate(Local & Remote)", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:2143", - "format": "MBs", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:2144", - "format": "ops", - "logBase": 1, - "show": false - } - ], - "yaxis": { - "align": false - } - } - ], - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "refId": "A" - } - ], - "title": "BE", - "type": "row" - }, - { - "collapsed": true, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "gridPos": { - "h": 1, - "w": 24, - "x": 0, - "y": 45 - }, - "id": 75, - "panels": [ - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates the failure rate of specified tasks. Normally, it should be 0.\nRight Y axes indicates the total number of specified tasks in all Backends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 8 - }, - "hiddenSeries": false, - "id": 78, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": true, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.16", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:4272", - "alias": "Failed", - "yaxis": 2 - }, - { - "$$hashKey": "object:4273", - "alias": "Total", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"report_all_tablets\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}-status: {{status}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Tablets Report", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:441", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:442", - "decimals": 0, - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates the failure rate of specified tasks. Normally, it should be 0.\nRight Y axes indicates the total number of specified tasks in all Backends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 8, - "y": 8 - }, - "hiddenSeries": false, - "id": 82, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": true, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.16", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:4369", - "alias": "Failed", - "yaxis": 2 - }, - { - "$$hashKey": "object:4370", - "alias": "Total", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"finish_task\", status=\"total\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Total", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"finish_task\", status=\"failed\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Finish Task Report", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:499", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:500", - "decimals": 0, - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates the failure rate of specified tasks. Normally, it should be 0.\nRight Y axes indicates the total number of specified tasks in all Backends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 16, - "y": 8 - }, - "hiddenSeries": false, - "id": 80, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": true, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.16", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:4466", - "alias": "Failed", - "yaxis": 2 - }, - { - "$$hashKey": "object:4467", - "alias": "Total", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"delete\", status=\"total\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Total", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"delete\", status=\"failed\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Delete", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:598", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:599", - "decimals": 0, - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates the failure rate of specified tasks. Normally, it should be 0.\nRight Y axes indicates the total number of specified tasks in all Backends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 14 - }, - "hiddenSeries": false, - "id": 91, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sortDesc": true, - "total": true, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.16", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:4563", - "alias": "Total", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_push_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", status=\"SUCCESS\"})", - "format": "time_series", - "hide": false, - "intervalFactor": 1, - "legendFormat": "Total", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_be_push_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", status=\"FAIL\"}[$__rate_interval])", - "format": "time_series", - "hide": false, - "intervalFactor": 1, - "legendFormat": "{{instance}}-failed", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Push Task", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:540", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:541", - "decimals": 0, - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "The average cost time of push tasks on each Backend.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 8, - "y": 14 - }, - "hiddenSeries": false, - "id": 92, - "legend": { - "alignAsTable": true, - "avg": true, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sort": "avg", - "sortDesc": false, - "total": false, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.16", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:4653", - "alias": "Failed", - "yaxis": 2 - }, - { - "$$hashKey": "object:4654", - "alias": "Total", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_be_push_request_duration_us{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Push Task Cost Time", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:569", - "format": "µs", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:570", - "decimals": 0, - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates the failure rate of specified tasks. Normally, it should be 0.\nRight Y axes indicates the total number of specified tasks in all Backends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 16, - "y": 14 - }, - "hiddenSeries": false, - "id": 81, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": true, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.16", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:4750", - "alias": "Failed", - "yaxis": 2 - }, - { - "$$hashKey": "object:4751", - "alias": "Total", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"clone\", status=\"total\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Total", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"clone\", status=\"failed\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Clone", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:766", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:767", - "decimals": 0, - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates the failure rate of specified tasks. Normally, it should be 0.\nRight Y axes indicates the total number of specified tasks in all Backends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 20 - }, - "hiddenSeries": false, - "id": 84, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": true, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.16", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:4847", - "alias": "Failed", - "yaxis": 2 - }, - { - "$$hashKey": "object:4848", - "alias": "Total", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"base_compaction\", status=\"total\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Total", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"base_compaction\", status=\"failed\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Base Compaction", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:627", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:628", - "decimals": 0, - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates the failure rate of specified tasks. Normally, it should be 0.\nRight Y axes indicates the total number of specified tasks in all Backends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 8, - "y": 20 - }, - "hiddenSeries": false, - "id": 83, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "sort": "total", - "sortDesc": false, - "total": true, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.16", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:2446", - "alias": "Failed", - "yaxis": 2 - }, - { - "$$hashKey": "object:2447", - "alias": "Total", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_engine_requests_total{job=\"$cluster_id\", instance=~\"$be_instance\", type=\"cumulative_compaction\", status=\"total\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Total", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_be_engine_requests_total{job=\"$cluster_id\", instance=~\"$be_instance\", type=\"cumulative_compaction\", status=\"failed\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Cumulative Compaction", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:683", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:684", - "decimals": 0, - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates the failure rate of specified tasks. Normally, it should be 0.\nRight Y axes indicates the total number of specified tasks in all Backends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 16, - "y": 20 - }, - "hiddenSeries": false, - "id": 73, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": true, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.16", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:4944", - "alias": "Failed", - "yaxis": 2 - }, - { - "$$hashKey": "object:4945", - "alias": "Total", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"create_tablet\", status=\"total\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Total", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"create_tablet\", status=\"failed\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Create Tablet", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:880", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:881", - "decimals": 0, - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates the failure rate of specified tasks. Normally, it should be 0.\nRight Y axes indicates the total number of specified tasks in all Backends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 0, - "y": 26 - }, - "hiddenSeries": false, - "id": 76, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": true, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.16", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:5041", - "alias": "Failed", - "yaxis": 2 - }, - { - "$$hashKey": "object:5042", - "alias": "Total", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"create_rollup\", status=\"total\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Total", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"create_rollup\", status=\"failed\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Create Rollup", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:822", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:823", - "decimals": 0, - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - }, - { - "aliasColors": {}, - "bars": false, - "dashLength": 10, - "dashes": false, - "datasource": { - "type": "prometheus", - "uid": "" - }, - "description": "Left Y axes indicates the failure rate of specified tasks. Normally, it should be 0.\nRight Y axes indicates the total number of specified tasks in all Backends.", - "fill": 1, - "fillGradient": 0, - "gridPos": { - "h": 6, - "w": 8, - "x": 8, - "y": 26 - }, - "hiddenSeries": false, - "id": 77, - "legend": { - "alignAsTable": true, - "avg": false, - "current": true, - "max": false, - "min": false, - "rightSide": false, - "show": true, - "total": true, - "values": true - }, - "lines": true, - "linewidth": 1, - "links": [], - "nullPointMode": "null", - "options": { - "alertThreshold": true - }, - "percentage": false, - "pluginVersion": "9.5.16", - "pointradius": 5, - "points": false, - "renderer": "flot", - "seriesOverrides": [ - { - "$$hashKey": "object:1014", - "alias": "Failed", - "yaxis": 2 - }, - { - "$$hashKey": "object:1015", - "alias": "Total", - "yaxis": 2 - } - ], - "spaceLength": 10, - "stack": false, - "steppedLine": false, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "sum(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"schema_change\", status=\"total\"})", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "Total", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(doris_be_engine_requests_total{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$be_instance\", type=\"schema_change\", status=\"failed\"}[$__rate_interval])", - "format": "time_series", - "intervalFactor": 1, - "legendFormat": "{{instance}}", - "range": true, - "refId": "B" - } - ], - "thresholds": [], - "timeRegions": [], - "title": "Schema Change", - "tooltip": { - "shared": true, - "sort": 0, - "value_type": "individual" - }, - "type": "graph", - "xaxis": { - "mode": "time", - "show": true, - "values": [] - }, - "yaxes": [ - { - "$$hashKey": "object:851", - "format": "short", - "logBase": 1, - "min": "0", - "show": true - }, - { - "$$hashKey": "object:852", - "decimals": 0, - "format": "short", - "logBase": 1, - "show": true - } - ], - "yaxis": { - "align": false - } - } - ], - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "refId": "A" - } - ], - "title": "BE tasks", - "type": "row" - }, - { - "collapsed": true, - "gridPos": { - "h": 1, - "w": 24, - "x": 0, - "y": 46 - }, - "id": 216, - "panels": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 9 - }, - "id": 7, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"rpc_server_.*_doris_cloud_meta_service_get_tablet_qps\", job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"rpc_server_.*_selectdb_meta_service_get_tablet_qps\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": false, - "legendFormat": "__auto", - "range": true, - "refId": "B" - } - ], - "title": "get_tablet_qps", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 9 - }, - "id": 4, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"rpc_server_.*_doris_cloud_meta_service_finish_tablet_job_qps\",job=\"$cluster_id\", group=\"meta_service\"}", - "hide": false, - "legendFormat": "finish-job-{{instance}}", - "range": true, - "refId": "B" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"rpc_server_.*_selectdb_meta_service_finish_tablet_job_qps\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": false, - "legendFormat": "__auto", - "range": true, - "refId": "A" - } - ], - "title": "tablet_job_qps", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 17 - }, - "id": 22, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"ms_get_tablet_stats_.*_qps\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": false, - "legendFormat": "{{__name__}}-{{instance}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"ms_commit_txn.*_latency\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": true, - "legendFormat": "{{__name__}}-{{instance}}", - "range": true, - "refId": "B" - } - ], - "title": "warehouse-get_tablet_stats_qps", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 17 - }, - "id": 3, - "options": { - "legend": { - "calcs": [ - "lastNotNull", - "min", - "max" - ], - "displayMode": "table", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"rpc_server_.*_doris_cloud_meta_service_begin_txn_qps\", job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "begin-{{instance}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "builder", - "expr": "rpc_server_5000_selectdb_meta_service_commit_txn_qps{job=\"$cluster_id\", group=\"meta_service\"}", - "hide": false, - "legendFormat": "commit-{{instance}}", - "range": true, - "refId": "B" - } - ], - "title": "txn_qps", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 25 - }, - "id": 9, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "txn_kv_get_qps{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "title": "txn_kv_get_qps ", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - }, - "unit": "µs" - }, - "overrides": [ - { - "matcher": { - "id": "byRegexp", - "options": "/.*99%.*/" - }, - "properties": [ - { - "id": "custom.transform", - "value": "negative-Y" - } - ] - } - ] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 25 - }, - "id": 23, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"txn_kv_get_latency.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": true, - "legendFormat": "{{instance}}-{{__name__}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"txn_kv_get_latency\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": false, - "legendFormat": "{{instance}}-avg", - "range": true, - "refId": "B" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"txn_kv_get_latency_99\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": false, - "legendFormat": "{{instance}}-99%", - "range": true, - "refId": "C" - } - ], - "title": "txn_kv_get_latency", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 33 - }, - "id": 223, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "txn_kv_range_get_qps{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "title": "txn_kv_range_get_qps ", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - }, - "unit": "µs" - }, - "overrides": [ - { - "matcher": { - "id": "byRegexp", - "options": "/.*99%.*/" - }, - "properties": [ - { - "id": "custom.transform", - "value": "negative-Y" - } - ] - } - ] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 33 - }, - "id": 225, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"txn_kv_range_get_latency.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": true, - "legendFormat": "{{instance}}-{{__name__}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"txn_kv_range_get_latency\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": false, - "legendFormat": "{{instance}}-avg", - "range": true, - "refId": "B" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"txn_kv_range_get_latency_99\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": false, - "legendFormat": "{{instance}}-99%", - "range": true, - "refId": "C" - } - ], - "title": "txn_kv_range_get_latency", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 41 - }, - "id": 224, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "txn_kv_put_qps{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "title": "txn_kv_put_qps ", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - }, - "unit": "µs" - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 41 - }, - "id": 226, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"txn_kv_put_latency.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}-{{__name__}}", - "range": true, - "refId": "A" - } - ], - "title": "txn_kv_put_latency", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 49 - }, - "id": 19, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "txn_kv_commit_qps{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "title": "txn_kv_commit_qps ", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - }, - "unit": "µs" - }, - "overrides": [ - { - "matcher": { - "id": "byRegexp", - "options": "/.*99%.*/" - }, - "properties": [ - { - "id": "custom.transform", - "value": "negative-Y" - } - ] - } - ] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 49 - }, - "id": 228, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"txn_kv_commit_latency.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": true, - "legendFormat": "{{instance}}-{{__name__}}", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"txn_kv_commit_latency\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": false, - "legendFormat": "{{instance}}-avg", - "range": true, - "refId": "B" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"txn_kv_commit_latency_99\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": false, - "legendFormat": "{{instance}}-99%", - "range": true, - "refId": "C" - } - ], - "title": "txn_kv_commit_latency", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 57 - }, - "id": 227, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "txn_kv_commit_error{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "title": "txn_kv_commit_error", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 57 - }, - "id": 20, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "txn_kv_commit_conflict{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "title": "txn_kv_commit_conflict", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 65 - }, - "id": 17, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "txn_kv_atomic_set_ver_value_qps{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "title": "txn_kv_atomic_set_ver_value_qps ", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 65 - }, - "id": 229, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"txn_kv_atomic_set_ver_value_latency.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}-{{__name__}}", - "range": true, - "refId": "A" - } - ], - "title": "txn_kv_atomic_set_ver_value_latency", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 73 - }, - "id": 18, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "txn_kv_atomic_set_ver_key_qps{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" - } - ], - "title": "txn_kv_atomic_set_ver_key_qps ", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 73 - }, - "id": 230, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"txn_kv_atomic_set_ver_key_latency.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}-{{__name__}}", - "range": true, - "refId": "A" - } - ], - "title": "txn_kv_atomic_set_ver_key_latency", - "type": "timeseries" - }, + "h": 1, + "w": 24, + "x": 0, + "y": 21 + }, + "id": 10, + "panels": [ { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, "datasource": { "type": "prometheus", "uid": "" }, "fieldConfig": { "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } + "unit": "percent" }, "overrides": [] }, + "fill": 1, + "fillGradient": 0, "gridPos": { - "h": 8, - "w": 12, + "h": 6, + "w": 8, "x": 0, - "y": 81 + "y": 2 + }, + "hiddenSeries": false, + "id": 186, + "legend": { + "avg": false, + "current": false, + "max": false, + "min": false, + "show": true, + "total": false, + "values": false }, - "id": 16, + "lines": true, + "linewidth": 1, + "nullPointMode": "null", "options": { + "alertThreshold": true, "legend": { "calcs": [], "displayMode": "list", @@ -12388,6 +918,15 @@ "sort": "none" } }, + "percentage": false, + "pluginVersion": "9.5.21", + "pointradius": 2, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, "targets": [ { "datasource": { @@ -12395,79 +934,83 @@ "uid": "" }, "editorMode": "code", - "expr": "txn_kv_remove_qps{job=\"$cluster_id\", group=\"meta_service\"}", + "exemplar": false, + "expr": "100 - sum by(job, instance) (rate(node_cpu_seconds_total{job=\"$cluster_id\",mode=\"idle\",group=~\"$node_exporter_group\"}[$__rate_interval])) / sum by(job, instance) (rate(node_cpu_seconds_total{job=\"$cluster_id\",group=~\"$node_exporter_group\"}[$__rate_interval])) * 100", + "instant": false, + "interval": "", "legendFormat": "{{instance}}", "range": true, "refId": "A" } ], - "title": "txn_kv_remove_qps ", - "type": "timeseries" + "thresholds": [], + "timeRegions": [], + "title": "CPU Used Rate", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "mode": "time", + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:1454", + "format": "percent", + "logBase": 1, + "show": true + }, + { + "$$hashKey": "object:1455", + "format": "short", + "logBase": 1, + "show": true + } + ], + "yaxis": { + "align": false + } }, { - "datasource": { - "type": "prometheus", - "uid": "" - }, + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": {}, "fieldConfig": { "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } + "unit": "percent" }, "overrides": [] }, + "fill": 1, + "fillGradient": 0, "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 81 + "h": 6, + "w": 8, + "x": 8, + "y": 2 + }, + "hiddenSeries": false, + "id": 202, + "legend": { + "avg": false, + "current": false, + "max": false, + "min": false, + "show": true, + "total": false, + "values": false }, - "id": 31, + "lines": true, + "linewidth": 1, + "nullPointMode": "null", "options": { + "alertThreshold": true, "legend": { "calcs": [], "displayMode": "list", @@ -12479,6 +1022,15 @@ "sort": "none" } }, + "percentage": false, + "pluginVersion": "9.5.21", + "pointradius": 2, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, "targets": [ { "datasource": { @@ -12486,79 +1038,88 @@ "uid": "" }, "editorMode": "code", - "expr": "{__name__=~\"txn_kv_remove_latency.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}-{{__name__}}", + "exemplar": false, + "expr": "sum by (instance, mountpoint) (100 - (node_filesystem_avail_bytes{fstype!~\"rootfs|tmpfs|devtmpfs|proc|sysfs|cgroup|bpf\",job=\"$cluster_id\",mountpoint=~\".*\",group=~\"$node_exporter_group\"} * 100) / (node_filesystem_size_bytes{fstype!~\"rootfs|tmpfs|devtmpfs|proc|sysfs|cgroup|bpf\",job=\"$cluster_id\",mountpoint=~\".*\",group=~\"$node_exporter_group\"}))", + "format": "time_series", + "instant": false, + "interval": "", + "legendFormat": "{{instance}}-{{mountpoint}}", "range": true, "refId": "A" } ], - "title": "txn_kv_remove_latency", - "type": "timeseries" + "thresholds": [], + "timeRegions": [], + "title": "Disk Used Rate", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "mode": "time", + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:1694", + "format": "percent", + "logBase": 1, + "show": true + }, + { + "$$hashKey": "object:1695", + "format": "short", + "logBase": 1, + "show": true + } + ], + "yaxis": { + "align": false + } }, { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, "datasource": { "type": "prometheus", "uid": "" }, + "description": "", "fieldConfig": { "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } + "unit": "percent" }, "overrides": [] }, + "fill": 1, + "fillGradient": 0, "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 89 + "h": 6, + "w": 8, + "x": 16, + "y": 2 + }, + "hiddenSeries": false, + "id": 188, + "legend": { + "avg": false, + "current": false, + "max": false, + "min": false, + "show": true, + "total": false, + "values": false }, - "id": 15, + "lines": true, + "linewidth": 1, + "nullPointMode": "null", "options": { + "alertThreshold": true, "legend": { "calcs": [], "displayMode": "list", @@ -12570,6 +1131,15 @@ "sort": "none" } }, + "percentage": false, + "pluginVersion": "9.5.21", + "pointradius": 2, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, "targets": [ { "datasource": { @@ -12577,90 +1147,109 @@ "uid": "" }, "editorMode": "code", - "expr": "txn_kv_range_remove_qps{job=\"$cluster_id\", group=\"meta_service\"}", + "expr": "sum by(job, instance) (node_memory_MemTotal_bytes{job=\"$cluster_id\",group=~\"$node_exporter_group\"} - node_memory_MemFree_bytes{job=\"$cluster_id\",group=~\"$node_exporter_group\"} - node_memory_Cached_bytes{job=\"$cluster_id\",group=~\"$node_exporter_group\"} - node_memory_Buffers_bytes{job=\"$cluster_id\",group=~\"$node_exporter_group\"} - node_memory_SReclaimable_bytes{job=\"$cluster_id\",group=~\"$node_exporter_group\"}) / sum by(job, instance) (node_memory_MemTotal_bytes{job=\"$cluster_id\",group=~\"$node_exporter_group\"}) * 100", "legendFormat": "{{instance}}", "range": true, "refId": "A" } ], - "title": "txn_kv_range_remove_qps ", - "type": "timeseries" - }, + "thresholds": [], + "timeRegions": [], + "title": "Mem Used Rate", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "mode": "time", + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:1574", + "format": "percent", + "logBase": 1, + "show": true + }, + { + "$$hashKey": "object:1575", + "format": "short", + "logBase": 1, + "show": true + } + ], + "yaxis": { + "align": false + } + } + ], + "title": "[Example] Custom Machines Monitor", + "type": "row" + }, + { + "collapsed": true, + "datasource": { + "type": "prometheus", + "uid": "" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 22 + }, + "id": 11, + "panels": [ { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, "datasource": { "type": "prometheus", "uid": "" }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, + "description": "The max replayed meta data journal id on Frontends.\nNormally, all Frontends should be same on this metrics, or just slightly different for a short period.", + "fill": 1, + "fillGradient": 0, "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 89 + "h": 6, + "w": 8, + "x": 0, + "y": 3 + }, + "hiddenSeries": false, + "id": 63, + "legend": { + "alignAsTable": true, + "avg": false, + "current": true, + "max": false, + "min": false, + "rightSide": false, + "show": true, + "total": false, + "values": true }, - "id": 25, + "lines": true, + "linewidth": 1, + "links": [], + "nullPointMode": "null", "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } + "alertThreshold": true }, + "percentage": false, + "pluginVersion": "9.5.21", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, "targets": [ { "datasource": { @@ -12668,181 +1257,93 @@ "uid": "" }, "editorMode": "code", - "expr": "{__name__=~\"txn_kv_range_remove_latency.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}-{{__name__}}", + "expr": "doris_fe_max_journal_id{job=\"$cluster_id\", group=\"fe\", instance=~\"$fe_instance\", cluster_id=\"\"}", + "format": "time_series", + "intervalFactor": 1, + "legendFormat": "{{instance}}", "range": true, "refId": "A" } ], - "title": "txn_kv_range_remove_latency", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 97 + "thresholds": [], + "timeRegions": [], + "title": "Max Replayed Journal ID", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" }, - "id": 8, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } + "type": "graph", + "xaxis": { + "mode": "time", + "show": true, + "values": [] }, - "targets": [ + "yaxes": [ { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "txn_kv_atomic_add_qps{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", - "range": true, - "refId": "A" + "$$hashKey": "object:1483", + "format": "none", + "logBase": 1, + "show": true + }, + { + "$$hashKey": "object:1484", + "format": "short", + "logBase": 1, + "show": false } ], - "title": "txn_kv_atomic_add_qps ", - "type": "timeseries" + "yaxis": { + "align": false + } }, { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, "datasource": { "type": "prometheus", "uid": "" }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, + "description": "The edit log size for each FE", + "fill": 0, + "fillGradient": 0, "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 97 + "h": 6, + "w": 8, + "x": 8, + "y": 3 + }, + "hiddenSeries": false, + "id": 150, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": false, + "rightSide": false, + "show": true, + "total": false, + "values": true }, - "id": 232, + "lines": true, + "linewidth": 1, + "links": [], + "nullPointMode": "null", "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } + "alertThreshold": true }, + "percentage": false, + "pluginVersion": "9.5.21", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, "targets": [ { "datasource": { @@ -12850,90 +1351,99 @@ "uid": "" }, "editorMode": "code", - "expr": "{__name__=~\"txn_kv_atomic_add_latency.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}-{{__name__}}", + "expr": "doris_fe_edit_log{job=\"$cluster_id\"}", + "format": "time_series", + "intervalFactor": 1, + "legendFormat": "{{instance}}-{{type}}", "range": true, "refId": "A" } ], - "title": "txn_kv_atomic_add_latency", - "type": "timeseries" + "thresholds": [], + "timeRegions": [], + "title": "Edit Log Size", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "mode": "time", + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:162", + "decimals": 0, + "format": "decbytes", + "logBase": 1, + "min": "0", + "show": true + }, + { + "$$hashKey": "object:163", + "format": "none", + "label": "", + "logBase": 1, + "min": "0", + "show": false + } + ], + "yaxis": { + "align": false + } }, { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, "datasource": { "type": "prometheus", "uid": "" }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, + "description": "The image clean of each FE", + "fill": 0, + "fillGradient": 0, "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 105 + "h": 6, + "w": 8, + "x": 16, + "y": 3 }, - "id": 231, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } + "hiddenSeries": false, + "id": 146, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": false, + "rightSide": false, + "show": true, + "sort": "avg", + "sortDesc": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 1, + "links": [], + "nullPointMode": "null", + "options": { + "alertThreshold": true }, + "percentage": false, + "pluginVersion": "9.5.21", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, "targets": [ { "datasource": { @@ -12941,181 +1451,142 @@ "uid": "" }, "editorMode": "code", - "expr": "txn_kv_get_read_version_qps{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", + "expr": "doris_fe_image_clean{job=\"$cluster_id\", type=\"success\"}", + "format": "time_series", + "intervalFactor": 1, + "legendFormat": "{{instance}}_success", "range": true, "refId": "A" - } - ], - "title": "txn_kv_get_read_version_qps ", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 105 - }, - "id": 32, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true }, - "tooltip": { - "mode": "single", - "sort": "none" - } - }, - "targets": [ { "datasource": { "type": "prometheus", "uid": "" }, "editorMode": "code", - "expr": "{__name__=~\"txn_kv_get_read_version_latency.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}-{{__name__}}", + "expr": "doris_fe_image_clean{job=\"$cluster_id\", type=\"failed\"}", + "hide": false, + "legendFormat": "{{instance}}_failed", "range": true, - "refId": "A" + "refId": "B" } ], - "title": "txn_kv_get_read_version_latency", - "type": "timeseries" - }, + "thresholds": [], + "timeRegions": [], + "title": "Image Clean", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "mode": "time", + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:162", + "decimals": 0, + "format": "none", + "logBase": 1, + "min": "0", + "show": true + }, + { + "$$hashKey": "object:163", + "format": "none", + "label": "", + "logBase": 1, + "min": "0", + "show": false + } + ], + "yaxis": { + "align": false + } + } + ], + "targets": [ { "datasource": { "type": "prometheus", "uid": "" }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] + "refId": "A" + } + ], + "title": "[Example] Custom FE Monitor", + "type": "row" + }, + { + "collapsed": true, + "datasource": { + "type": "prometheus", + "uid": "" + }, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 23 + }, + "id": 12, + "panels": [ + { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, + "datasource": { + "type": "prometheus", + "uid": "" }, + "description": "The file descriptor usage of Backends. Left Y axes shows the used fd num. Right Y axes shows the soft limit open file number.", + "fill": 0, + "fillGradient": 0, "gridPos": { - "h": 8, - "w": 12, + "h": 7, + "w": 8, "x": 0, - "y": 113 + "y": 4 + }, + "hiddenSeries": false, + "id": 94, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": false, + "rightSide": false, + "show": true, + "total": false, + "values": true }, - "id": 233, + "lines": true, + "linewidth": 1, + "links": [], + "nullPointMode": "null", "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } + "alertThreshold": true }, + "percentage": false, + "pluginVersion": "9.5.21", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [ + { + "$$hashKey": "object:1675", + "alias": "/.*limit/", + "yaxis": 2 + } + ], + "spaceLength": 10, + "stack": false, + "steppedLine": false, "targets": [ { "datasource": { @@ -13123,90 +1594,108 @@ "uid": "" }, "editorMode": "code", - "expr": "txn_kv_get_committed_version_qps{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", + "expr": "doris_be_process_fd_num_used{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}", + "format": "time_series", + "intervalFactor": 1, + "legendFormat": "{{instance}}-used", "range": true, "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "doris_be_process_fd_num_limit_soft{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}", + "format": "time_series", + "intervalFactor": 1, + "legendFormat": "{{instance}}-soft limit", + "range": true, + "refId": "B" } ], - "title": "txn_kv_get_committed_version_qps ", - "type": "timeseries" + "thresholds": [], + "timeRegions": [], + "title": "BE FD Count", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "mode": "time", + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:1657", + "format": "short", + "logBase": 1, + "min": "0", + "show": true + }, + { + "$$hashKey": "object:1658", + "format": "short", + "logBase": 1, + "min": "0", + "show": true + } + ], + "yaxis": { + "align": false + } }, { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, "datasource": { "type": "prometheus", "uid": "" }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, + "description": "The thread number of Backends", + "fill": 0, + "fillGradient": 0, "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 113 + "h": 7, + "w": 8, + "x": 8, + "y": 4 + }, + "hiddenSeries": false, + "id": 95, + "legend": { + "alignAsTable": true, + "avg": true, + "current": false, + "max": true, + "min": false, + "rightSide": false, + "show": true, + "total": false, + "values": true }, - "id": 234, + "lines": true, + "linewidth": 1, + "links": [], + "nullPointMode": "null", "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } + "alertThreshold": true }, + "percentage": false, + "pluginVersion": "9.5.21", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, "targets": [ { "datasource": { @@ -13214,207 +1703,95 @@ "uid": "" }, "editorMode": "code", - "expr": "{__name__=~\"txn_kv_get_committed_version_latency.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}-{{__name__}}", + "expr": "doris_be_process_thread_num{job=\"$cluster_id\", group=\"be\", compute_group=~\"$compute_group\", instance=~\"$be_instance\"}", + "format": "time_series", + "intervalFactor": 1, + "legendFormat": "{{instance}}", "range": true, "refId": "A" } ], - "title": "txn_kv_get_committed_version_latency", - "type": "timeseries" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, - "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 121 + "thresholds": [], + "timeRegions": [], + "title": "BE Thread Num", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" }, - "id": 51, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } + "type": "graph", + "xaxis": { + "mode": "time", + "show": true, + "values": [] }, - "targets": [ + "yaxes": [ { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"rpc_server_.*_doris_cloud_meta_service_commit_rowset_count.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}-{{__name__}}", - "range": true, - "refId": "A" + "$$hashKey": "object:1686", + "format": "short", + "logBase": 1, + "min": "0", + "show": true }, { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\"rpc_server_.*_selectdb_meta_service_commit_rowset_count.*\", job=\"$cluster_id\", group=\"meta_service\"}", - "hide": false, - "legendFormat": "__auto", - "range": true, - "refId": "B" + "$$hashKey": "object:1687", + "format": "short", + "logBase": 1, + "min": "0", + "show": true } ], - "title": "txn_kv_get_committed_version_latency", - "type": "timeseries" - } - ], - "title": "Meta Service", - "type": "row" - }, - { - "collapsed": true, - "gridPos": { - "h": 1, - "w": 24, - "x": 0, - "y": 47 - }, - "id": 218, - "panels": [ + "yaxis": { + "align": false + } + }, { + "aliasColors": {}, + "bars": false, + "dashLength": 10, + "dashes": false, "datasource": { "type": "prometheus", "uid": "" }, - "fieldConfig": { - "defaults": { - "color": { - "mode": "palette-classic" - }, - "custom": { - "axisCenteredZero": false, - "axisColorMode": "text", - "axisLabel": "", - "axisPlacement": "auto", - "barAlignment": 0, - "drawStyle": "line", - "fillOpacity": 0, - "gradientMode": "none", - "hideFrom": { - "legend": false, - "tooltip": false, - "viz": false - }, - "lineInterpolation": "linear", - "lineWidth": 1, - "pointSize": 5, - "scaleDistribution": { - "type": "linear" - }, - "showPoints": "auto", - "spanNulls": false, - "stacking": { - "group": "A", - "mode": "none" - }, - "thresholdsStyle": { - "mode": "off" - } - }, - "mappings": [], - "thresholds": { - "mode": "absolute", - "steps": [ - { - "color": "green" - }, - { - "color": "red", - "value": 80 - } - ] - } - }, - "overrides": [] - }, + "description": "Number of tablets of each Backends", + "fill": 0, + "fillGradient": 0, "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 10 + "h": 7, + "w": 8, + "x": 16, + "y": 4 }, - "id": 72, + "hiddenSeries": false, + "id": 115, + "legend": { + "alignAsTable": true, + "avg": false, + "current": true, + "max": false, + "min": false, + "rightSide": false, + "show": true, + "total": false, + "values": true + }, + "lines": true, + "linewidth": 1, + "links": [], + "nullPointMode": "null", "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } + "alertThreshold": true }, + "percentage": false, + "pluginVersion": "9.5.21", + "pointradius": 5, + "points": false, + "renderer": "flot", + "seriesOverrides": [], + "spaceLength": 10, + "stack": false, + "steppedLine": false, "targets": [ { "datasource": { @@ -13422,17 +1799,58 @@ "uid": "" }, "editorMode": "code", - "expr": "s3_delete_object_qps{job=\"$cluster_id\", compute_group=~\"$compute_group\", instance=~\"$brpc_instance\"}", - "legendFormat": "{{instance}}", + "expr": "doris_fe_tablet_num{job=\"$cluster_id\"}", + "format": "time_series", + "intervalFactor": 1, + "legendFormat": "{{backend}}-backend", "range": true, "refId": "A" } ], - "title": "s3_delete_object_qps", - "type": "timeseries" + "thresholds": [], + "timeRegions": [], + "title": "Tablet Distribution", + "tooltip": { + "shared": true, + "sort": 0, + "value_type": "individual" + }, + "type": "graph", + "xaxis": { + "mode": "time", + "show": true, + "values": [] + }, + "yaxes": [ + { + "$$hashKey": "object:1609", + "format": "none", + "logBase": 1, + "min": "0", + "show": true + }, + { + "$$hashKey": "object:1610", + "format": "short", + "logBase": 1, + "show": false + } + ], + "yaxis": { + "align": false + } + } + ], + "targets": [ + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "refId": "A" } ], - "title": "Recycler", + "title": "[Example] Custom BE Monitor", "type": "row" }, { @@ -13441,16 +1859,15 @@ "h": 1, "w": 24, "x": 0, - "y": 48 + "y": 24 }, - "id": 385, + "id": 13, "panels": [ { "datasource": { "type": "prometheus", "uid": "" }, - "description": "", "fieldConfig": { "defaults": { "color": { @@ -13491,88 +1908,51 @@ "mode": "absolute", "steps": [ { - "color": "green" + "color": "green", + "value": null }, { "color": "red", "value": 80 } ] - }, - "unit": "none" + } }, "overrides": [] }, "gridPos": { - "h": 7, - "w": 8, + "h": 6, + "w": 12, "x": 0, - "y": 11 - }, - "id": 401, - "options": { - "legend": { - "calcs": [], - "displayMode": "list", - "placement": "bottom", - "showLegend": true - }, - "tooltip": { - "mode": "single", - "sort": "none" - } + "y": 5 }, - "targets": [ - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\".*_file_cache_normal_queue_element_count\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", - "hide": false, - "legendFormat": "{{instance}}-{{__name__}}-data", - "range": true, - "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\".*_file_cache_index_queue_element_count\",job=\"$cluster_id\", instance=~\"$brpc_instance\"}", - "hide": false, - "legendFormat": "{{instance}}--{{__name__}}-index", - "range": true, - "refId": "B" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\".*_file_cache_disposable_queue_element_count\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", - "hide": false, - "legendFormat": "{{instance}}--{{__name__}}-disposable", - "range": true, - "refId": "C" + "id": 204, + "options": { + "legend": { + "calcs": [], + "displayMode": "list", + "placement": "bottom", + "showLegend": true }, + "tooltip": { + "mode": "single", + "sort": "none" + } + }, + "targets": [ { "datasource": { "type": "prometheus", "uid": "" }, "editorMode": "code", - "expr": "{__name__=~\".*_file_cache_ttl_element_count\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", - "hide": false, - "legendFormat": "{{instance}}--{{__name__}}-ttl", + "expr": "bthread_timer_usage{job=\"$cluster_id\", group=\"be-brpc\", instance=~\"$brpc_instance\"}", + "legendFormat": "{{instance}}", "range": true, - "refId": "D" + "refId": "A" } ], - "title": "file cache element count", + "title": "Bthread Timer Usage", "type": "timeseries" }, { @@ -13580,7 +1960,6 @@ "type": "prometheus", "uid": "" }, - "description": "", "fieldConfig": { "defaults": { "color": { @@ -13621,29 +2000,29 @@ "mode": "absolute", "steps": [ { - "color": "green" + "color": "green", + "value": null }, { "color": "red", "value": 80 } ] - }, - "unit": "binBps" + } }, "overrides": [] }, "gridPos": { - "h": 7, - "w": 8, - "x": 8, - "y": 11 + "h": 6, + "w": 12, + "x": 12, + "y": 5 }, - "id": 419, + "id": 205, "options": { "legend": { "calcs": [], - "displayMode": "table", + "displayMode": "list", "placement": "bottom", "showLegend": true }, @@ -13659,69 +2038,34 @@ "uid": "" }, "editorMode": "code", - "expr": "irate(label_replace({__name__=~\".*_file_cache_total_evict_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}, \"name_label\", \"$1\",\"__name__\", \"(.+)\")[$__rate_interval:])", - "legendFormat": "{{instance}}-total", + "expr": "bthread_worker_usage{job=\"$cluster_id\", group=\"be-brpc\", instance=~\"$brpc_instance\"}", + "legendFormat": "{{instance}}", "range": true, "refId": "A" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(label_replace({__name__=~\".*_file_cache_normal_queue_evict_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}, \"name_label\", \"$1\",\"__name__\", \"(.+)\")[$__rate_interval:])", - "hide": false, - "legendFormat": "{{instance}}-normal", - "range": true, - "refId": "B" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(label_replace({__name__=~\".*_file_cache_index_queue_evict_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}, \"name_label\", \"$1\",\"__name__\", \"(.+)\")[$__rate_interval:])", - "hide": false, - "legendFormat": "{{instance}}-index", - "range": true, - "refId": "C" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(label_replace({__name__=~\".*_file_cache_disposable_queue_evict_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}, \"name_label\", \"$1\",\"__name__\", \"(.+)\")[$__rate_interval:])", - "hide": false, - "legendFormat": "{{instance}}-disposable", - "range": true, - "refId": "D" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "irate(label_replace({__name__=~\".*_file_cache_ttl_cache_evict_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}, \"name_label\", \"$1\",\"__name__\", \"(.+)\")[$__rate_interval:])", - "hide": false, - "legendFormat": "{{instance}}-ttl", - "range": true, - "refId": "E" } ], - "title": "file cache evict rate", + "title": "Bthread Worker Usage", "type": "timeseries" - }, + } + ], + "title": "[Example] Custom Brpc Monitor", + "type": "row" + }, + { + "collapsed": true, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 25 + }, + "id": 14, + "panels": [ { "datasource": { "type": "prometheus", "uid": "" }, - "description": "", "fieldConfig": { "defaults": { "color": { @@ -13769,18 +2113,17 @@ "value": 80 } ] - }, - "unit": "bytes" + } }, "overrides": [] }, "gridPos": { - "h": 7, - "w": 8, - "x": 16, - "y": 11 + "h": 8, + "w": 12, + "x": 0, + "y": 5 }, - "id": 400, + "id": 7, "options": { "legend": { "calcs": [], @@ -13800,8 +2143,8 @@ "uid": "" }, "editorMode": "code", - "expr": "{__name__=~\".*_file_cache_cache_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", - "legendFormat": "{{instance}}-{{__name__}}-total", + "expr": "{__name__=~\"rpc_server_.*_doris_cloud_meta_service_get_tablet_qps\", job=\"$cluster_id\", group=\"meta_service\"}", + "legendFormat": "{{instance}}", "range": true, "refId": "A" }, @@ -13811,50 +2154,14 @@ "uid": "" }, "editorMode": "code", - "expr": "{__name__=~\".*_file_cache_normal_queue_cache_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", + "expr": "{__name__=~\"rpc_server_.*_selectdb_meta_service_get_tablet_qps\", job=\"$cluster_id\", group=\"meta_service\"}", "hide": false, - "legendFormat": "{{instance}}-normal", + "legendFormat": "__auto", "range": true, "refId": "B" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\".*_file_cache_index_queue_cache_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", - "hide": false, - "legendFormat": "{{instance}}-{{__name__}}-index", - "range": true, - "refId": "C" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\".*_file_cache_disposable_queue_cache_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", - "hide": false, - "legendFormat": "{{instance}}-{{__name__}}-disposable", - "range": true, - "refId": "D" - }, - { - "datasource": { - "type": "prometheus", - "uid": "" - }, - "editorMode": "code", - "expr": "{__name__=~\".*_file_cache_ttl_cache_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", - "hide": false, - "legendFormat": "{{instance}}-{{__name__}}-ttl", - "range": true, - "refId": "E" } ], - "title": "file cache data size", + "title": "get_tablet_qps", "type": "timeseries" }, { @@ -13862,7 +2169,6 @@ "type": "prometheus", "uid": "" }, - "description": "", "fieldConfig": { "defaults": { "color": { @@ -13910,18 +2216,17 @@ "value": 80 } ] - }, - "unit": "binBps" + } }, "overrides": [] }, "gridPos": { - "h": 7, - "w": 8, - "x": 0, - "y": 18 + "h": 8, + "w": 12, + "x": 12, + "y": 5 }, - "id": 421, + "id": 4, "options": { "legend": { "calcs": [], @@ -13941,11 +2246,11 @@ "uid": "" }, "editorMode": "code", - "expr": "irate(s3_file_writer_bytes_written{job=\"$cluster_id\", instance=~\"$brpc_instance\"}[$__rate_interval])", + "expr": "{__name__=~\"rpc_server_.*_doris_cloud_meta_service_finish_tablet_job_qps\",job=\"$cluster_id\", group=\"meta_service\"}", "hide": false, - "legendFormat": "write_rate-{{instance}}", + "legendFormat": "finish-job-{{instance}}", "range": true, - "refId": "A" + "refId": "B" }, { "datasource": { @@ -13953,16 +2258,30 @@ "uid": "" }, "editorMode": "code", - "expr": "irate(s3_file_reader_bytes_read{job=\"$cluster_id\", instance=~\"$brpc_instance\"}[$__rate_interval])", + "expr": "{__name__=~\"rpc_server_.*_selectdb_meta_service_finish_tablet_job_qps\", job=\"$cluster_id\", group=\"meta_service\"}", "hide": false, - "legendFormat": "read_rate-{{instance}}", + "legendFormat": "__auto", "range": true, - "refId": "B" + "refId": "A" } ], - "title": "s3_write_read_rate", + "title": "tablet_job_qps", "type": "timeseries" - }, + } + ], + "title": "[Example] Custom Meta Service Monitor", + "type": "row" + }, + { + "collapsed": true, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 26 + }, + "id": 15, + "panels": [ { "datasource": { "type": "prometheus", @@ -14009,7 +2328,8 @@ "mode": "absolute", "steps": [ { - "color": "green" + "color": "green", + "value": null }, { "color": "red", @@ -14017,17 +2337,17 @@ } ] }, - "unit": "bytes" + "unit": "none" }, "overrides": [] }, "gridPos": { "h": 7, "w": 8, - "x": 8, - "y": 18 + "x": 0, + "y": 7 }, - "id": 405, + "id": 401, "options": { "legend": { "calcs": [], @@ -14047,9 +2367,9 @@ "uid": "" }, "editorMode": "code", - "expr": "s3_file_writer_bytes_written{job=\"$cluster_id\", instance=~\"$brpc_instance\"}", + "expr": "{__name__=~\".*_file_cache_normal_queue_element_count\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", "hide": false, - "legendFormat": "{{__name__}}-{{instance}}", + "legendFormat": "{{instance}}-{{__name__}}-data", "range": true, "refId": "A" }, @@ -14059,14 +2379,38 @@ "uid": "" }, "editorMode": "code", - "expr": "s3_file_reader_bytes_read{job=\"$cluster_id\", instance=~\"$brpc_instance\"}", + "expr": "{__name__=~\".*_file_cache_index_queue_element_count\",job=\"$cluster_id\", instance=~\"$brpc_instance\"}", "hide": false, - "legendFormat": "{{__name__}}-{{instance}}", + "legendFormat": "{{instance}}--{{__name__}}-index", "range": true, "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "{__name__=~\".*_file_cache_disposable_queue_element_count\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", + "hide": false, + "legendFormat": "{{instance}}--{{__name__}}-disposable", + "range": true, + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "{__name__=~\".*_file_cache_ttl_element_count\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", + "hide": false, + "legendFormat": "{{instance}}--{{__name__}}-ttl", + "range": true, + "refId": "D" } ], - "title": "s3_write_read", + "title": "file cache element count", "type": "timeseries" }, { @@ -14115,28 +2459,30 @@ "mode": "absolute", "steps": [ { - "color": "green" + "color": "green", + "value": null }, { "color": "red", "value": 80 } ] - } + }, + "unit": "binBps" }, "overrides": [] }, "gridPos": { "h": 7, "w": 8, - "x": 16, - "y": 18 + "x": 8, + "y": 7 }, - "id": 387, + "id": 419, "options": { "legend": { "calcs": [], - "displayMode": "list", + "displayMode": "table", "placement": "bottom", "showLegend": true }, @@ -14152,34 +2498,69 @@ "uid": "" }, "editorMode": "code", - "expr": "buffered_reader_bytes_downloaded{job=\"$cluster_id\", instance=~\"$brpc_instance\"}", - "legendFormat": "{{instance}}", + "expr": "irate(label_replace({__name__=~\".*_file_cache_total_evict_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}, \"name_label\", \"$1\",\"__name__\", \"(.+)\")[$__rate_interval:])", + "legendFormat": "{{instance}}-total", "range": true, "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "irate(label_replace({__name__=~\".*_file_cache_normal_queue_evict_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}, \"name_label\", \"$1\",\"__name__\", \"(.+)\")[$__rate_interval:])", + "hide": false, + "legendFormat": "{{instance}}-normal", + "range": true, + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "irate(label_replace({__name__=~\".*_file_cache_index_queue_evict_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}, \"name_label\", \"$1\",\"__name__\", \"(.+)\")[$__rate_interval:])", + "hide": false, + "legendFormat": "{{instance}}-index", + "range": true, + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "irate(label_replace({__name__=~\".*_file_cache_disposable_queue_evict_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}, \"name_label\", \"$1\",\"__name__\", \"(.+)\")[$__rate_interval:])", + "hide": false, + "legendFormat": "{{instance}}-disposable", + "range": true, + "refId": "D" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "irate(label_replace({__name__=~\".*_file_cache_ttl_cache_evict_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}, \"name_label\", \"$1\",\"__name__\", \"(.+)\")[$__rate_interval:])", + "hide": false, + "legendFormat": "{{instance}}-ttl", + "range": true, + "refId": "E" } ], - "title": "load bytes downloaded from s3", + "title": "file cache evict rate", "type": "timeseries" - } - ], - "title": "Remote Storage", - "type": "row" - }, - { - "collapsed": true, - "gridPos": { - "h": 1, - "w": 24, - "x": 0, - "y": 49 - }, - "id": 217, - "panels": [ + }, { "datasource": { "type": "prometheus", "uid": "" }, + "description": "", "fieldConfig": { "defaults": { "color": { @@ -14220,7 +2601,8 @@ "mode": "absolute", "steps": [ { - "color": "green" + "color": "green", + "value": null }, { "color": "red", @@ -14233,12 +2615,12 @@ "overrides": [] }, "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 12 + "h": 7, + "w": 8, + "x": 16, + "y": 7 }, - "id": 45, + "id": 400, "options": { "legend": { "calcs": [], @@ -14258,13 +2640,61 @@ "uid": "" }, "editorMode": "code", - "expr": "fdb_data_total_disk_used_bytes{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", + "expr": "{__name__=~\".*_file_cache_cache_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", + "legendFormat": "{{instance}}-{{__name__}}-total", "range": true, "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "{__name__=~\".*_file_cache_normal_queue_cache_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", + "hide": false, + "legendFormat": "{{instance}}-normal", + "range": true, + "refId": "B" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "{__name__=~\".*_file_cache_index_queue_cache_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", + "hide": false, + "legendFormat": "{{instance}}-{{__name__}}-index", + "range": true, + "refId": "C" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "{__name__=~\".*_file_cache_disposable_queue_cache_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", + "hide": false, + "legendFormat": "{{instance}}-{{__name__}}-disposable", + "range": true, + "refId": "D" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "{__name__=~\".*_file_cache_ttl_cache_size\", job=\"$cluster_id\", instance=~\"$brpc_instance\"}", + "hide": false, + "legendFormat": "{{instance}}-{{__name__}}-ttl", + "range": true, + "refId": "E" } ], - "title": "fdb_data_total_disk_used_bytes", + "title": "file cache data size", "type": "timeseries" }, { @@ -14272,6 +2702,7 @@ "type": "prometheus", "uid": "" }, + "description": "", "fieldConfig": { "defaults": { "color": { @@ -14312,7 +2743,8 @@ "mode": "absolute", "steps": [ { - "color": "green" + "color": "green", + "value": null }, { "color": "red", @@ -14320,17 +2752,17 @@ } ] }, - "unit": "bytes" + "unit": "binBps" }, "overrides": [] }, "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 12 + "h": 7, + "w": 8, + "x": 0, + "y": 14 }, - "id": 219, + "id": 421, "options": { "legend": { "calcs": [], @@ -14350,13 +2782,26 @@ "uid": "" }, "editorMode": "code", - "expr": "fdb_data_total_kv_size_bytes{job=\"$cluster_id\", group=\"meta_service\"}", - "legendFormat": "{{instance}}", + "expr": "irate(s3_file_writer_bytes_written{job=\"$cluster_id\", instance=~\"$brpc_instance\"}[$__rate_interval])", + "hide": false, + "legendFormat": "write_rate-{{instance}}", "range": true, "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "irate(s3_file_reader_bytes_read{job=\"$cluster_id\", instance=~\"$brpc_instance\"}[$__rate_interval])", + "hide": false, + "legendFormat": "read_rate-{{instance}}", + "range": true, + "refId": "B" } ], - "title": "fdb_data_total_kv_size_bytes", + "title": "s3_write_read_rate", "type": "timeseries" }, { @@ -14364,6 +2809,7 @@ "type": "prometheus", "uid": "" }, + "description": "", "fieldConfig": { "defaults": { "color": { @@ -14404,24 +2850,26 @@ "mode": "absolute", "steps": [ { - "color": "green" + "color": "green", + "value": null }, { "color": "red", "value": 80 } ] - } + }, + "unit": "bytes" }, "overrides": [] }, "gridPos": { - "h": 8, - "w": 12, - "x": 0, - "y": 20 + "h": 7, + "w": 8, + "x": 8, + "y": 14 }, - "id": 220, + "id": 405, "options": { "legend": { "calcs": [], @@ -14441,14 +2889,26 @@ "uid": "" }, "editorMode": "code", - "expr": "fdb_client_count{job=\"$cluster_id\", group=\"meta_service\"}", + "expr": "s3_file_writer_bytes_written{job=\"$cluster_id\", instance=~\"$brpc_instance\"}", "hide": false, - "legendFormat": "{{instance}}", + "legendFormat": "{{__name__}}-{{instance}}", "range": true, "refId": "A" + }, + { + "datasource": { + "type": "prometheus", + "uid": "" + }, + "editorMode": "code", + "expr": "s3_file_reader_bytes_read{job=\"$cluster_id\", instance=~\"$brpc_instance\"}", + "hide": false, + "legendFormat": "{{__name__}}-{{instance}}", + "range": true, + "refId": "B" } ], - "title": "fdb_client_count", + "title": "s3_write_read", "type": "timeseries" }, { @@ -14456,6 +2916,7 @@ "type": "prometheus", "uid": "" }, + "description": "", "fieldConfig": { "defaults": { "color": { @@ -14496,7 +2957,8 @@ "mode": "absolute", "steps": [ { - "color": "green" + "color": "green", + "value": null }, { "color": "red", @@ -14505,28 +2967,15 @@ ] } }, - "overrides": [ - { - "matcher": { - "id": "byRegexp", - "options": ".*read.*" - }, - "properties": [ - { - "id": "custom.transform", - "value": "negative-Y" - } - ] - } - ] + "overrides": [] }, "gridPos": { - "h": 8, - "w": 12, - "x": 12, - "y": 20 + "h": 7, + "w": 8, + "x": 16, + "y": 14 }, - "id": 221, + "id": 387, "options": { "legend": { "calcs": [], @@ -14546,21 +2995,34 @@ "uid": "" }, "editorMode": "code", - "expr": "fdb_workload_read_rate_hz{job=\"$cluster_id\", group=\"meta_service\"}", + "expr": "buffered_reader_bytes_downloaded{job=\"$cluster_id\", instance=~\"$brpc_instance\"}", "legendFormat": "{{instance}}", "range": true, "refId": "A" } ], - "title": "fdb_read_rate_hz", + "title": "load bytes downloaded from s3", "type": "timeseries" - }, + } + ], + "title": "[Example] Custom Remote Storage Monitor", + "type": "row" + }, + { + "collapsed": true, + "gridPos": { + "h": 1, + "w": 24, + "x": 0, + "y": 27 + }, + "id": 16, + "panels": [ { "datasource": { "type": "prometheus", "uid": "" }, - "description": "When the queue backlog exceeds 1500 MB, it indicates that FDB resources are under pressure.", "fieldConfig": { "defaults": { "color": { @@ -14608,30 +3070,18 @@ "value": 80 } ] - } + }, + "unit": "bytes" }, - "overrides": [ - { - "matcher": { - "id": "byRegexp", - "options": ".*read.*" - }, - "properties": [ - { - "id": "custom.transform", - "value": "negative-Y" - } - ] - } - ] + "overrides": [] }, "gridPos": { "h": 8, "w": 12, "x": 0, - "y": 28 + "y": 7 }, - "id": 222, + "id": 45, "options": { "legend": { "calcs": [], @@ -14651,13 +3101,13 @@ "uid": "" }, "editorMode": "code", - "expr": "fdb_qos_worst_storage_server_queue_bytes{job=\"$cluster_id\"}/1024/1024", + "expr": "fdb_data_total_disk_used_bytes{job=\"$cluster_id\", group=\"meta_service\"}", "legendFormat": "{{instance}}", "range": true, "refId": "A" } ], - "title": "fdb_qos_worst_storage_server_queue_mbytes", + "title": "fdb_data_total_disk_used_bytes", "type": "timeseries" }, { @@ -14665,7 +3115,6 @@ "type": "prometheus", "uid": "" }, - "description": "When the log queue backlog exceeds 400 MB, it indicates that FDB resources are under pressure.", "fieldConfig": { "defaults": { "color": { @@ -14713,30 +3162,18 @@ "value": 80 } ] - } + }, + "unit": "bytes" }, - "overrides": [ - { - "matcher": { - "id": "byRegexp", - "options": ".*read.*" - }, - "properties": [ - { - "id": "custom.transform", - "value": "negative-Y" - } - ] - } - ] + "overrides": [] }, "gridPos": { "h": 8, "w": 12, "x": 12, - "y": 28 + "y": 7 }, - "id": 57, + "id": 219, "options": { "legend": { "calcs": [], @@ -14756,17 +3193,17 @@ "uid": "" }, "editorMode": "code", - "expr": "fdb_qos_worst_log_server_queue_bytes{job=\"$cluster_id\"}/1024/1024", + "expr": "fdb_data_total_kv_size_bytes{job=\"$cluster_id\", group=\"meta_service\"}", "legendFormat": "{{instance}}", "range": true, "refId": "A" } ], - "title": "fdb_qos_worst_log_server_queue_mbytes", + "title": "fdb_data_total_kv_size_bytes", "type": "timeseries" } ], - "title": "Fdb", + "title": "[Example] Custom Fdb Monitor", "type": "row" } ], @@ -15029,7 +3466,7 @@ ] }, "time": { - "from": "now-5m", + "from": "now-15m", "to": "now" }, "timepicker": { @@ -15058,8 +3495,8 @@ ] }, "timezone": "", - "title": "Doris Cloud Dashboard Overview", - "uid": "3fFiWJ4mz456", + "title": "Default Custom Doris Cloud Dashboard Overview", + "uid": "3fFiWJ4mz457", "version": 1, "weekStart": "" } \ No newline at end of file diff --git a/versioned_docs/version-4.x/lakehouse/catalogs/iceberg-catalog.mdx b/versioned_docs/version-4.x/lakehouse/catalogs/iceberg-catalog.mdx index cc96ddd422cd8..4acea18cc24de 100644 --- a/versioned_docs/version-4.x/lakehouse/catalogs/iceberg-catalog.mdx +++ b/versioned_docs/version-4.x/lakehouse/catalogs/iceberg-catalog.mdx @@ -83,6 +83,16 @@ CREATE CATALOG [IF NOT EXISTS] catalog_name PROPERTIES ( If set to `false`, Doris will check the type of each table one by one and only return Iceberg type tables. This mode will have poor performance when there are many tables. + - `iceberg.rest.view-enabled` + + Supported since version 4.0.6. + + Only effective for Iceberg REST Catalog. Whether to enable View-related operations (including `listViews`, `loadView`, `viewExists`, `dropView`, etc.). Default is `true`. + + Some Iceberg REST Catalog implementations expose Table APIs but the View APIs are unavailable or return errors. When executing `SHOW TABLES`, Doris calls `ViewCatalog.listViews()` to filter Views out of the Table list, so such REST services may cause `SHOW TABLES` and table metadata loading to fail. + + In this case, set this parameter to `false`, and Doris will skip all View-related operations, allowing metadata operations such as `SHOW TABLES` to work normally. + * `{CommonProperties}` The CommonProperties section is for entering general properties. See the [Catalog Overview](../catalog-overview.md) for details on common properties. diff --git a/versioned_sidebars/version-4.x-sidebars.json b/versioned_sidebars/version-4.x-sidebars.json index d76bf04d246de..98609bce81635 100644 --- a/versioned_sidebars/version-4.x-sidebars.json +++ b/versioned_sidebars/version-4.x-sidebars.json @@ -837,7 +837,6 @@ "label": "Lakehouse Best Practices", "items": [ "lakehouse/best-practices/optimization", - "lakehouse/best-practices/doris-snowflake-catalog", "lakehouse/best-practices/kerberos", "lakehouse/best-practices/tpch", "lakehouse/best-practices/tpcds"