From 1a8abf5841e1a6af6dd60fbbf4357f1145fe933c Mon Sep 17 00:00:00 2001 From: ddieulivol Date: Wed, 10 Sep 2025 16:33:35 +0200 Subject: [PATCH] Add a test dashboard --- .../test_dashboard/test_dashboard.yaml | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .gitlab/analytics/dashboards/test_dashboard/test_dashboard.yaml diff --git a/.gitlab/analytics/dashboards/test_dashboard/test_dashboard.yaml b/.gitlab/analytics/dashboards/test_dashboard/test_dashboard.yaml new file mode 100644 index 00000000000000..420bdc4710ae2b --- /dev/null +++ b/.gitlab/analytics/dashboards/test_dashboard/test_dashboard.yaml @@ -0,0 +1,37 @@ +--- +title: Test Dashboard +description: Simple test dashboard to explore available data sources +panels: + - title: Total Issues This Month + gridAttributes: + width: 6 + height: 4 + visualization: + type: SingleStat + options: + unit: "" + decimalPlaces: 0 + data: + type: issuables + query: + issuable_type: issue + issuable_state: opened + group_by: month + period_limit: 1 + + - title: Total MRs This Month + gridAttributes: + width: 6 + height: 4 + visualization: + type: SingleStat + options: + unit: "" + decimalPlaces: 0 + data: + type: issuables + query: + issuable_type: merge_request + issuable_state: merged + group_by: month + period_limit: 1 -- GitLab