This is an automated email from the ASF dual-hosted git repository.
wu-sheng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-horizon-ui.git
The following commit(s) were added to refs/heads/main by this push:
new ac0d29b service dashboard: swap Error Rate ↔ MQ positions
ac0d29b is described below
commit ac0d29b57e06c244762342027daeecaf3e6b81d0
Author: Wu Sheng <[email protected]>
AuthorDate: Tue May 12 22:12:36 2026 +0800
service dashboard: swap Error Rate ↔ MQ positions
Error Rate moves up to row 1 (sits between Traffic and Apdex);
MQ Consume rate + latency moves down to row 2 (after Avg Response
Time). Pure widget reorder — no other changes.
---
apps/bff/src/layers/config/general.json | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/apps/bff/src/layers/config/general.json
b/apps/bff/src/layers/config/general.json
index a4b236f..ff00563 100644
--- a/apps/bff/src/layers/config/general.json
+++ b/apps/bff/src/layers/config/general.json
@@ -57,17 +57,11 @@
"rowSpan": 2
},
{
- "id": "mq_combined",
- "title": "MQ Consume rate + latency",
- "tip": "Count on the left axis, latency on the right.",
+ "id": "err_line",
+ "title": "Error Rate",
"type": "line",
- "expressions": [
- "service_mq_consume_count",
- "service_mq_consume_latency"
- ],
- "expressionLabels": ["count", "latency"],
- "expressionUnits": ["/min", "ms"],
- "expressionAxes": [0, 1],
+ "unit": "%",
+ "expressions": ["100 - service_sla/100"],
"span": 3,
"rowSpan": 2
},
@@ -102,11 +96,17 @@
"rowSpan": 2
},
{
- "id": "err_line",
- "title": "Error Rate",
+ "id": "mq_combined",
+ "title": "MQ Consume rate + latency",
+ "tip": "Count on the left axis, latency on the right.",
"type": "line",
- "unit": "%",
- "expressions": ["100 - service_sla/100"],
+ "expressions": [
+ "service_mq_consume_count",
+ "service_mq_consume_latency"
+ ],
+ "expressionLabels": ["count", "latency"],
+ "expressionUnits": ["/min", "ms"],
+ "expressionAxes": [0, 1],
"span": 3,
"rowSpan": 2
},