diff --git a/devops/deployment/k8s/k8s-deploy.yaml b/devops/deployment/k8s/k8s-deploy.yaml index b13b97b4695..1b67b4a4c3c 100644 --- a/devops/deployment/k8s/k8s-deploy.yaml +++ b/devops/deployment/k8s/k8s-deploy.yaml @@ -26,11 +26,11 @@ metadata: namespace: devlake data: # shared between deployment - MYSQL_USER: merico - MYSQL_PASSWORD: merico - MYSQL_DATABASE: lake - MYSQL_ROOT_PASSWORD: admin - MYSQL_URL: mysql:3306 + DB_TYPE: mysql + DB_HOST: mysql:3306 + DB_DATABASE: lake + DB_USER: merico + DB_PASSWORD: merico # grafana deployment GF_SERVER_ROOT_URL: http://YOURDOMAIN:30002/grafana GF_USERS_DEFAULT_THEME: "light" diff --git a/devops/deployment/temporal/docker-compose-temporal.yml b/devops/deployment/temporal/docker-compose-temporal.yml index 7b7aa1dcaee..7d227d3de8c 100644 --- a/devops/deployment/temporal/docker-compose-temporal.yml +++ b/devops/deployment/temporal/docker-compose-temporal.yml @@ -40,10 +40,11 @@ services: GF_USERS_ALLOW_SIGN_UP: 'false' GF_DASHBOARDS_JSON_ENABLED: 'true' GF_LIVE_ALLOWED_ORIGINS: '*' - MYSQL_URL: mysql:3306 - MYSQL_DATABASE: lake - MYSQL_USER: merico - MYSQL_PASSWORD: merico + DB_TYPE: mysql + DB_HOST: mysql:3306 + DB_DATABASE: lake + DB_USER: merico + DB_PASSWORD: merico restart: always depends_on: - mysql diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index fd335e867fa..94f38fce271 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -56,10 +56,11 @@ services: environment: GF_SERVER_ROOT_URL: "http://localhost:4000/grafana" GF_USERS_DEFAULT_THEME: "light" - MYSQL_URL: mysql:3306 - MYSQL_DATABASE: lake - MYSQL_USER: merico - MYSQL_PASSWORD: merico + DB_TYPE: mysql + DB_HOST: mysql:3306 + DB_DATABASE: lake + DB_USER: merico + DB_PASSWORD: merico TZ: UTC restart: always depends_on: diff --git a/grafana/_archive/Daily_Needs_To_Be_Improved.json b/grafana/_archive/Daily_Needs_To_Be_Improved.json index 7cbeec9924a..821131257c8 100644 --- a/grafana/_archive/Daily_Needs_To_Be_Improved.json +++ b/grafana/_archive/Daily_Needs_To_Be_Improved.json @@ -44,7 +44,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -162,7 +162,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { diff --git a/grafana/_archive/DeliveryCapability(RequireJenkinsData).json b/grafana/_archive/DeliveryCapability(RequireJenkinsData).json index 36aa2d01e9f..046938ec82f 100644 --- a/grafana/_archive/DeliveryCapability(RequireJenkinsData).json +++ b/grafana/_archive/DeliveryCapability(RequireJenkinsData).json @@ -47,7 +47,7 @@ ], "panels": [ { - "datasource": "mysql", + "datasource": "default", "description": "1. Number of builds executed.\n2. The builds being calculated are filtered by \"build starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -124,7 +124,7 @@ }, { "cacheTimeout": null, - "datasource": "mysql", + "datasource": "default", "description": "The percentage of successful, failed, and aborted builds.", "fieldConfig": { "defaults": { @@ -215,7 +215,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful builds / Number of total builds", "fieldConfig": { "defaults": { @@ -298,7 +298,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "1. Build success rate over time.\n2. The builds being calculated are filtered by \"build starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -467,4 +467,4 @@ "title": "Delivery Capability (require Jenkins data)", "uid": "3Lv1ImSnk", "version": 5 -} +} \ No newline at end of file diff --git a/grafana/_archive/DeliveryCost(RequireGitlabData).json b/grafana/_archive/DeliveryCost(RequireGitlabData).json index b5faba8349e..9018b67ecf0 100644 --- a/grafana/_archive/DeliveryCost(RequireGitlabData).json +++ b/grafana/_archive/DeliveryCost(RequireGitlabData).json @@ -47,7 +47,7 @@ ], "panels": [ { - "datasource": "mysql", + "datasource": "default", "description": "1. Number of people who have created or reviewed a Pull/Merge Request.\n2. The PR/MR being calculated are filtered by \"PR/MR creation time\" (time filter at the upper-right corner).", "fieldConfig": { "defaults": { @@ -128,7 +128,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of Commit Authors.\n2. The commits being calculated are filtered by \"authored_date\" (time filter at the upper-right corner).", "fieldConfig": { "defaults": { @@ -204,7 +204,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Number of Pull/Merge Request Reviewers.\n2. The PR/MR being calculated are filtered by \"PR/MR creation time\" (time filter at the upper-right corner).", "fieldConfig": { "defaults": { @@ -280,7 +280,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Pull Request Reviewer Count/Total Developer Count", "fieldConfig": { "defaults": { @@ -377,7 +377,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct concat(name, ': ', gitlab_id) from gitlab_projects", "description": null, "error": null, @@ -405,4 +405,4 @@ "title": "Delivery Cost (require Gitlab data)", "uid": "TV-BnpM7k", "version": 7 -} +} \ No newline at end of file diff --git a/grafana/_archive/DeliveryQuality(RequireJiraAndGitlabData).json b/grafana/_archive/DeliveryQuality(RequireJiraAndGitlabData).json index 92e2fef5ee0..1d3663164ea 100644 --- a/grafana/_archive/DeliveryQuality(RequireJiraAndGitlabData).json +++ b/grafana/_archive/DeliveryQuality(RequireJiraAndGitlabData).json @@ -123,7 +123,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of Pull/Merge request created.\n2. The PR/MR being calculated are filtered by \"PR/MR creation time\" (time filter at the upper-right corner)", "fieldConfig": { "defaults": { @@ -199,7 +199,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of Pull/Merge request merged.\n2. The PR/MR being calculated are filtered by \"PR/MR creation time\" (time filter at the upper-right corner)", "fieldConfig": { "defaults": { @@ -277,7 +277,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Pull Request Pass Count/Pull Request Count", "fieldConfig": { "defaults": { @@ -359,7 +359,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Pull Request Pass Rate over time.\n2. The time granularity can be switched to week or month by \"Time Interval\" above. \n3. When Time Interval is set to \"month\", value \"pull_request_pass_rate\" of \"2021-06-01\" calculates the PR/MR whose creation time falls under [2020-06-01, 2020-07-01)", "fieldConfig": { "defaults": { @@ -466,7 +466,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "The average round of PR/MR review.", "fieldConfig": { "defaults": { @@ -542,7 +542,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Avg PR/MR Review Round over time.\n2. The time granularity can be switched to week or month by \"Time Interval\" above. \n3. When Time Interval is set to \"month\", value \"Avg Pull Request Review Round\" of \"2021-06-01\" calculates the PR/MR whose creation time falls under [2020-06-01, 2020-07-01)", "fieldConfig": { "defaults": { @@ -649,7 +649,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "The average round of PR/MR review of PR authors.", "fieldConfig": { "defaults": { @@ -741,7 +741,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "One-time pass rate for PR over time.", "fieldConfig": { "defaults": { @@ -867,7 +867,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of bugs created.\n2. The bugs being calculated are filtered by \"bug creation time\" (time filter at the upper-right corner)", "fieldConfig": { "defaults": { @@ -943,7 +943,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Number of bugs created over time.\n2. The time granularity can be switched to week or month by \"Time Interval\" above. \n3. When Time Interval is set to \"month\", bug_count of \"2021-06-01\" calculates the bugs whose creation time falls under [2020-06-01, 2020-07-01)", "fieldConfig": { "defaults": { @@ -1045,7 +1045,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of bugs found per 1,000 lines of code, including both added and deleted llines of code.\n2. The bugs being calculated are filtered by \"bug creation time\". The lines of code being calculated are filtered by \"commit creation time\" (both are affected by the time filter at the upper-right corner)", "fieldConfig": { "defaults": { @@ -1130,7 +1130,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Bug Count per 1k lines of code over time.\n2. When Time Interval is set to \"month\", bug_count_per_1k_LOC of \"2021-06-01\" calculates the bugs whose creation time falls under [2020-06-01, 2020-07-01) and lines of code whose commit creation time falls under [2020-06-01, 2020-07-01) ", "fieldConfig": { "defaults": { @@ -1255,7 +1255,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of incidents created.\n2. The incidents being calculated are filtered by \"incident creation time\" (time filter at the upper-right corner)", "fieldConfig": { "defaults": { @@ -1331,7 +1331,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Number of incidents created over time.\n2. The time granularity can be switched to week or month by \"Time Interval\" above. \n3. When Time Interval is set to \"month\", incident_count of \"2021-06-01\" calculates the incidents whose creation time falls under [2020-06-01, 2020-07-01)", "fieldConfig": { "defaults": { @@ -1433,7 +1433,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of incidents found per 1,000 lines of code, including both added and deleted llines of code.\n2. The incidents being calculated are filtered by \"incident creation time\". The lines of code being calculated are filtered by \"commit creation time\" (both are affected by the time filter at the upper-right corner)", "fieldConfig": { "defaults": { @@ -1518,7 +1518,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Incident Count per 1k lines of code over time.\n2. When Time Interval is set to \"month\", incident_count_per_1k_LOC of \"2021-06-01\" calculates the incidents whose creation time falls under [2020-06-01, 2020-07-01) and lines of code whose commit creation time falls under [2020-06-01, 2020-07-01) ", "fieldConfig": { "defaults": { @@ -1668,7 +1668,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct concat(name, ': ', board_id) from jira_boards", "description": null, "error": null, @@ -1696,4 +1696,4 @@ "title": "Delivery Quality (require Jira and Gitlab data)", "uid": "nUC-7tGnk", "version": 14 -} +} \ No newline at end of file diff --git a/grafana/_archive/DeliveryVelocity(RequireJiraAndGitlabData).json b/grafana/_archive/DeliveryVelocity(RequireJiraAndGitlabData).json index 8df95d940af..1dd365c89d0 100644 --- a/grafana/_archive/DeliveryVelocity(RequireJiraAndGitlabData).json +++ b/grafana/_archive/DeliveryVelocity(RequireJiraAndGitlabData).json @@ -123,7 +123,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The average lead time of requirements.\n2. Lead time refers to the length of time from requirement creation to delivery.\n3. The requirements being calculated are filtered by \"requirement resolution time\" (time filter at the upper-right corner) and \"Jira board\"(\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -204,7 +204,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The lead time at which 80% requirements‘ lead time lies below it.\n2. The requirements being calculated are filtered by \"requirement resolution time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -288,7 +288,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "1. The average requirement lead time over time.\n2. The time granularity can be switched to Week or Month by \"Time Interval\" above. \n3. When Time Interval is set to \"Month\", the average_lead_time of \"2021-06-01\" refers to the average lead time of requirements whose resolution time falls under [2020-06-01, 2020-07-01).", "fieldConfig": { "defaults": { @@ -409,7 +409,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "1. The cumulative distribution of requirement lead time. \n2. Each point refers to the percent rank of a lead time.", "fill": 0, "fillGradient": 4, @@ -534,7 +534,7 @@ } }, { - "datasource": "mysql", + "datasource": "default", "description": "The average lead time of requirements under different Jira Epics.", "fieldConfig": { "defaults": { @@ -629,7 +629,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "The average time spent in each state of a requirement, including all history states that have been used.", "fieldConfig": { "defaults": { @@ -725,7 +725,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Compare the average time spent in each state of a requirement in the last 2 months.\n2. The requirements being calculated are the requirements delivered in the last 2 months.", "fieldConfig": { "defaults": { @@ -844,7 +844,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of requirements created.\n2. The requirements being calculated are filtered by \"requirement creation time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -920,7 +920,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The number of requirements created over time.\n2. The time granularity can be switched to week or month by \"Time Interval\" above. \n3. When Time Interval is set to \"month\", the requirement_count of \"2021-06-01\" refers to the number of requirements whose creation time falls under [2020-06-01, 2020-07-01)", "fieldConfig": { "defaults": { @@ -1027,7 +1027,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The number of requirements under different Jira Epics.", "fieldConfig": { "defaults": { @@ -1122,7 +1122,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Number of requirements that have been delivered.\n2. A requirement is delivered when its status equals 'delivered'.\n3. The requirements being calculated are filtered by \"requirement creation time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -1199,7 +1199,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Delivered Requirement Count/Requirement Count (Total)", "fieldConfig": { "defaults": { @@ -1281,7 +1281,7 @@ }, { "cacheTimeout": null, - "datasource": "mysql", + "datasource": "default", "description": "1. The requirement delivery rate over time.\n2. When Time Interval is set to \"month\", value \"requirement_delivery_rate\" of \"2021-06-01\" calculates the requirements whose creation time falls under [2020-06-01, 2020-07-01)", "fieldConfig": { "defaults": { @@ -1389,7 +1389,7 @@ }, { "cacheTimeout": null, - "datasource": "mysql", + "datasource": "default", "description": "The average delivery rate of requirements under different Jira Epics.", "fieldConfig": { "defaults": { @@ -1486,7 +1486,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The average story point (workload) of requirements.\n2. The requirements being calculated are filtered by \"requirement creation time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -1563,7 +1563,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The story point/estimated hours at which 80% requirements' story point/estimated hours lies below it.\n2. The requirements being calculated are filtered by \"requirement creation time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -1643,7 +1643,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "The average and 80th percentile requirement granularity over time.", "fieldConfig": { "defaults": { @@ -1764,7 +1764,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "1. The cumulative distribution of requirement granularity.\n2. Each point refers to the percent rank of a value of granularity.", "fill": 0, "fillGradient": 4, @@ -1912,7 +1912,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Average PR/MR review time.\n2. PR/MR review time refers to the time between the creation time and merged time of a PR/MR.\n3. The PR/MR being calculated are filtered by \"PR/MR creation time\" (time filter at the upper-right corner) and \"Gitlab repo\"(\"Choose Repo\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -1993,7 +1993,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The 80th percentile PR/MR review time.\n2. The PR/MR being calculated are filtered by \"PR/MR creation time\" (time filter at the upper-right corner) and \"Gitlab repo\"(\"Choose Repo\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -2074,7 +2074,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The average and 80th percentile PR/MR review time over time.\n2. The time granularity can be switched to week or month by \"Time Interval\" above. \n3. When Time Interval is set to \"month\", the average review time of \"2021-06-01\" refers to the review time of PR/MR whose creation time falls under [2020-06-01, 2020-07-01)", "fieldConfig": { "defaults": { @@ -2178,7 +2178,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of commits created.\n2. The commits being calculated are filtered by \"authored_date\" (time filter at the upper-right corner) and \"Gitlab repo\"(\"Choose Repo\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -2260,7 +2260,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Number of commits created over time.\n2. When Time Interval is set to \"month\", the commit_count\" of \"2021-06-01\" calculates the commits whose creation time falls under [2020-06-01, 2020-07-01)", "fieldConfig": { "defaults": { @@ -2371,7 +2371,7 @@ "bars": true, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "The number of commits from different repos.", "fill": 1, "fillGradient": 0, @@ -2483,7 +2483,7 @@ } }, { - "datasource": "mysql", + "datasource": "default", "description": "The number of commits from different commit authors.", "fieldConfig": { "defaults": { @@ -2579,7 +2579,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Sum of the number of added lines of code under all commits.\n2. The commits being calculated are filtered by \"authored_date\" (time filter at the upper-right corner) and \"Gitlab repo\"(\"Choose Repo\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -2660,7 +2660,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Sum of the number of deleted lines of code under all commits.\n2. The commits being calculated are filtered by \"authored_date\" (time filter at the upper-right corner) and \"Gitlab repo\"(\"Choose Repo\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -2741,7 +2741,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Added/deleted number of lines of code over time.", "fieldConfig": { "defaults": { @@ -2848,7 +2848,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "The number of added/deleted LOC from different commit authors.", "fieldConfig": { "defaults": { @@ -2965,7 +2965,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The average bug age.\n2. Bug age refers to the length of time from bug creation to resolution.\n3. The bugs being calculated are filtered by \"bug resolution time\" (time filter at the upper-right corner) and \"Jira board\"(\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -3046,7 +3046,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The bug age at which 80% bugs‘ age lies below it.\n2. The bugs being calculated are filtered by \"bug resolution time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -3127,7 +3127,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The average and 80th percentile bug age over time.\n2. The time granularity can be switched to Week or Month by \"Time Interval\" above. \n3. When Time Interval is set to \"Month\", the average_bug_age of \"2021-06-01\" refers to the average age of bugs whose resolution time falls under [2020-06-01, 2020-07-01).", "fieldConfig": { "defaults": { @@ -3239,7 +3239,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "1. The cumulative distribution of bug age. \n2. Each point refers to the percent rank of a bug age.", "fieldConfig": { "defaults": { @@ -3369,7 +3369,7 @@ } }, { - "datasource": "mysql", + "datasource": "default", "description": "The average time spent on fixing bugs under different Jira Epics.", "fieldConfig": { "defaults": { @@ -3487,7 +3487,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The average incident age.\n2. Incident age refers to the length of time from incident creation to resolution.\n3. The incidents being calculated are filtered by \"incident resolution time\" (time filter at the upper-right corner) and \"Jira board\"(\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -3568,7 +3568,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The incident age at which 80% incidents‘ age lies below it.\n2. The incidents being calculated are filtered by \"incident resolution time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -3648,7 +3648,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The average and 80th percentile incident age over time.\n2. The time granularity can be switched to Week or Month by \"Time Interval\" above. \n3. When Time Interval is set to \"Month\", the average_incident_age of \"2021-06-01\" refers to the average age of incidents whose resolution time falls under [2020-06-01, 2020-07-01).", "fieldConfig": { "defaults": { @@ -3760,7 +3760,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "1. The cumulative distribution of incident age.\n2. Each point refers to the percent rank of a incident age.", "fieldConfig": { "defaults": { @@ -3890,7 +3890,7 @@ } }, { - "datasource": "mysql", + "datasource": "default", "description": "The average time spent on fixing incidents under different Jira Epics.", "fieldConfig": { "defaults": { @@ -4034,7 +4034,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct concat(name, ': ', board_id) from jira_boards", "description": null, "error": null, @@ -4062,7 +4062,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct concat(name, ': ', gitlab_id) from gitlab_projects", "description": null, "error": null, @@ -4090,4 +4090,4 @@ "title": "Delivery Velocity (require Jira and Gitlab data)", "uid": "ZfaFQeM7k", "version": 20 -} +} \ No newline at end of file diff --git a/grafana/_archive/EeGitHubReleaseQualityAndContributionAnalysis.json b/grafana/_archive/EeGitHubReleaseQualityAndContributionAnalysis.json index 02bb00ec3c5..07951e7a303 100644 --- a/grafana/_archive/EeGitHubReleaseQualityAndContributionAnalysis.json +++ b/grafana/_archive/EeGitHubReleaseQualityAndContributionAnalysis.json @@ -46,7 +46,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -132,7 +132,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -258,7 +258,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -413,7 +413,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -568,7 +568,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -723,7 +723,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -884,7 +884,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -970,7 +970,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1056,7 +1056,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1143,7 +1143,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1240,7 +1240,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1323,7 +1323,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1420,7 +1420,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1503,7 +1503,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1664,7 +1664,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1806,7 +1806,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1975,7 +1975,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2069,7 +2069,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2179,7 +2179,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2334,7 +2334,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2419,7 +2419,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2535,7 +2535,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2622,7 +2622,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2733,7 +2733,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from repos", "description": null, "error": null, diff --git a/grafana/_archive/GithubDomainLayerOnly.json b/grafana/_archive/GithubDomainLayerOnly.json index d15048c482a..6b31af307ba 100644 --- a/grafana/_archive/GithubDomainLayerOnly.json +++ b/grafana/_archive/GithubDomainLayerOnly.json @@ -19,7 +19,7 @@ "links": [], "panels": [ { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -96,7 +96,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -177,7 +177,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -280,7 +280,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -361,7 +361,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -442,7 +442,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -523,7 +523,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -619,4 +619,4 @@ "title": "Github Domain Layer Only", "uid": "ilRLEaFnz", "version": 5 -} +} \ No newline at end of file diff --git a/grafana/_archive/Gitlab.json b/grafana/_archive/Gitlab.json index 1baf386b8c6..cb161bef390 100644 --- a/grafana/_archive/Gitlab.json +++ b/grafana/_archive/Gitlab.json @@ -70,7 +70,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of Pull/Merge request created.\n2. The PR/MR being calculated are filtered by \"PR/MR creation time\" (time filter at the upper-right corner)", "fieldConfig": { "defaults": { @@ -146,7 +146,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of Pull/Merge request merged.\n2. The PR/MR being calculated are filtered by \"PR/MR creation time\" (time filter at the upper-right corner)", "fieldConfig": { "defaults": { @@ -224,7 +224,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Pull Request Pass Count/Pull Request Count", "fieldConfig": { "defaults": { @@ -306,7 +306,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Pull Request Pass Rate over time.\n2. The time granularity can be switched to week or month by \"Time Interval\" above. \n3. When Time Interval is set to \"month\", value \"pull_request_pass_rate\" of \"2021-06-01\" calculates the PR/MR whose creation time falls under [2020-06-01, 2020-07-01)", "fieldConfig": { "defaults": { @@ -436,7 +436,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Average PR/MR review time.\n2. PR/MR review time refers to the time between the creation time and merged time of a PR/MR.\n3. The PR/MR being calculated are filtered by \"PR/MR creation time\" (time filter at the upper-right corner) and \"Gitlab repo\"(\"Choose Repo\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -517,7 +517,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The 80th percentile PR/MR review time.\n2. The PR/MR being calculated are filtered by \"PR/MR creation time\" (time filter at the upper-right corner) and \"Gitlab repo\"(\"Choose Repo\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -598,7 +598,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The average and 80th percentile PR/MR review time over time.\n2. The time granularity can be switched to week or month by \"Time Interval\" above. \n3. When Time Interval is set to \"month\", the average review time of \"2021-06-01\" refers to the review time of PR/MR whose creation time falls under [2020-06-01, 2020-07-01)", "fieldConfig": { "defaults": { @@ -702,7 +702,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "The average round of PR/MR review.", "fieldConfig": { "defaults": { @@ -778,7 +778,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Avg PR/MR Review Round over time.\n2. The time granularity can be switched to week or month by \"Time Interval\" above. \n3. When Time Interval is set to \"month\", value \"Avg Pull Request Review Round\" of \"2021-06-01\" calculates the PR/MR whose creation time falls under [2020-06-01, 2020-07-01)", "fieldConfig": { "defaults": { @@ -885,7 +885,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "The average round of PR/MR review of PR authors.", "fieldConfig": { "defaults": { @@ -977,7 +977,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "One-time pass rate for PR/MR over time.", "fieldConfig": { "defaults": { @@ -1103,7 +1103,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of commits created.\n2. The commits being calculated are filtered by \"authored_date\" (time filter at the upper-right corner) and \"Gitlab repo\"(\"Choose Repo\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -1185,7 +1185,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Number of commits created over time.\n2. When Time Interval is set to \"month\", the commit_count\" of \"2021-06-01\" calculates the commits whose creation time falls under [2020-06-01, 2020-07-01)", "fieldConfig": { "defaults": { @@ -1296,7 +1296,7 @@ "bars": true, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "The number of commits from different repos.", "fill": 1, "fillGradient": 0, @@ -1408,7 +1408,7 @@ } }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Sum of the number of added lines of code under all commits.\n2. The commits being calculated are filtered by \"authored_date\" (time filter at the upper-right corner) and \"Gitlab repo\"(\"Choose Repo\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -1489,7 +1489,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Sum of the number of deleted lines of code under all commits.\n2. The commits being calculated are filtered by \"authored_date\" (time filter at the upper-right corner) and \"Gitlab repo\"(\"Choose Repo\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -1570,7 +1570,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Added/deleted number of lines of code over time.", "fieldConfig": { "defaults": { @@ -1677,7 +1677,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "The number of added/deleted LOC from different commit authors.", "fieldConfig": { "defaults": { @@ -1794,7 +1794,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Number of people who have created or reviewed a Pull/Merge Request.\n2. The PR/MR being calculated are filtered by \"PR/MR creation time\" (time filter at the upper-right corner).", "fieldConfig": { "defaults": { @@ -1875,7 +1875,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of Commit Authors.\n2. The commits being calculated are filtered by \"authored_date\" (time filter at the upper-right corner).", "fieldConfig": { "defaults": { @@ -1951,7 +1951,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Number of Pull/Merge Request Reviewers.\n2. The PR/MR being calculated are filtered by \"PR/MR creation time\" (time filter at the upper-right corner).", "fieldConfig": { "defaults": { @@ -2027,7 +2027,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Pull Request Reviewer Count/Total Developer Count", "fieldConfig": { "defaults": { @@ -2155,7 +2155,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct concat(name, ': ', gitlab_id) from gitlab_projects", "description": null, "error": null, @@ -2183,4 +2183,4 @@ "title": "Gitlab", "uid": "6YcsxLN7z", "version": 2 -} +} \ No newline at end of file diff --git a/grafana/_archive/Jenkins.json b/grafana/_archive/Jenkins.json index 049b88e5a6a..6afdbeb1422 100644 --- a/grafana/_archive/Jenkins.json +++ b/grafana/_archive/Jenkins.json @@ -47,7 +47,7 @@ ], "panels": [ { - "datasource": "mysql", + "datasource": "default", "description": "1. Number of builds executed.\n2. The builds being calculated are filtered by \"build starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -124,7 +124,7 @@ }, { "cacheTimeout": null, - "datasource": "mysql", + "datasource": "default", "description": "The percentage of successful, failed, and aborted builds.", "fieldConfig": { "defaults": { @@ -215,7 +215,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful builds / Number of total builds", "fieldConfig": { "defaults": { @@ -298,7 +298,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "1. Build success rate over time.\n2. The builds being calculated are filtered by \"build starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -467,4 +467,4 @@ "title": "Jenkins", "uid": "zDsUxYHnz", "version": 13894 -} +} \ No newline at end of file diff --git a/grafana/dashboards/AzureDevOps.json b/grafana/dashboards/AzureDevOps.json index 3f8f00f98b1..1611a8f4004 100644 --- a/grafana/dashboards/AzureDevOps.json +++ b/grafana/dashboards/AzureDevOps.json @@ -91,7 +91,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -144,7 +144,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -196,7 +196,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -294,7 +294,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -346,7 +346,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -433,7 +433,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -511,7 +511,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -566,7 +566,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -600,7 +600,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -727,7 +727,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -779,7 +779,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -831,7 +831,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -883,7 +883,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -968,7 +968,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1020,7 +1020,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1077,7 +1077,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -1111,7 +1111,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1198,7 +1198,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1263,7 +1263,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of Pipeline runs executed in the selected time range", "fieldConfig": { "defaults": { @@ -1313,7 +1313,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1364,7 +1364,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful Pipeline runs / Number of total Pipeline runs", "fieldConfig": { "defaults": { @@ -1420,7 +1420,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1471,7 +1471,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1587,7 +1587,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1639,7 +1639,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful Pipeline runs / Number of total Pipeline runs", "fieldConfig": { "defaults": { @@ -1775,7 +1775,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1826,7 +1826,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Mean Pipeline Runs success rate over time.\n2. The Pipeline runs being calculated are filtered by \"workflow runs starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -1916,7 +1916,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1967,7 +1967,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Mean Pipeline runs success rate over time.\n2. The Pipeline runs being calculated are filtered by \"Pipeline runs starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -2017,7 +2017,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2068,7 +2068,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2171,7 +2171,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2277,7 +2277,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from repos where id like 'azure%'", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/Bamboo.json b/grafana/dashboards/Bamboo.json index aa09186d94d..662839ccb1b 100644 --- a/grafana/dashboards/Bamboo.json +++ b/grafana/dashboards/Bamboo.json @@ -65,7 +65,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of builds executed in the selected time range", "fieldConfig": { "defaults": { @@ -114,7 +114,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -165,7 +165,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful builds / Number of total builds", "fieldConfig": { "defaults": { @@ -217,7 +217,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -268,7 +268,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -404,7 +404,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -455,7 +455,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful builds / Number of total builds", "fieldConfig": { "defaults": { @@ -505,7 +505,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -556,7 +556,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -642,7 +642,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -694,7 +694,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Mean Build success rate over time.\n2. The builds being calculated are filtered by \"build starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -800,7 +800,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -851,7 +851,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -967,7 +967,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "hide": false, @@ -1001,7 +1001,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1103,7 +1103,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -1189,7 +1189,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from cicd_scopes where id like \"bamboo%\" ", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/BitBucket.json b/grafana/dashboards/BitBucket.json index 4f281c67f99..af70d337105 100644 --- a/grafana/dashboards/BitBucket.json +++ b/grafana/dashboards/BitBucket.json @@ -91,7 +91,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -147,7 +147,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -199,7 +199,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -297,7 +297,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -349,7 +349,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -436,7 +436,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -514,7 +514,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -569,7 +569,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -603,7 +603,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -727,7 +727,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -779,7 +779,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -831,7 +831,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -883,7 +883,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -968,7 +968,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1020,7 +1020,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1077,7 +1077,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -1111,7 +1111,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1198,7 +1198,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1263,7 +1263,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of pipeline runs executed in the selected time range", "fieldConfig": { "defaults": { @@ -1313,7 +1313,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1364,7 +1364,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful pipeline runs / Number of total pipeline runs", "fieldConfig": { "defaults": { @@ -1420,7 +1420,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1471,7 +1471,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1587,7 +1587,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1639,7 +1639,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1775,7 +1775,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1826,7 +1826,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Mean Pipeline Runs success rate over time.\n2. The Pipeline runs being calculated are filtered by \"workflow runs starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -1916,7 +1916,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1967,7 +1967,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful pipeline runs / Number of total pipeline runs", "fieldConfig": { "defaults": { @@ -2017,7 +2017,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2068,7 +2068,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2171,7 +2171,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2277,7 +2277,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from repos where id like 'bitbucket%'", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/CircleCI.json b/grafana/dashboards/CircleCI.json index 439d8058de7..2728f11f5b8 100644 --- a/grafana/dashboards/CircleCI.json +++ b/grafana/dashboards/CircleCI.json @@ -65,7 +65,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of builds executed in the selected time range", "fieldConfig": { "defaults": { @@ -116,7 +116,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -167,7 +167,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful workflows / Number of total workflows", "fieldConfig": { "defaults": { @@ -221,7 +221,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -272,7 +272,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -409,7 +409,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -460,7 +460,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful workflows / Number of total workflows", "fieldConfig": { "defaults": { @@ -512,7 +512,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -563,7 +563,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -651,7 +651,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -703,7 +703,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Mean workflows success rate over time.\n2. The workflows being calculated are filtered by \"build starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -811,7 +811,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -862,7 +862,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -981,7 +981,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1033,7 +1033,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1137,7 +1137,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1241,7 +1241,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from cicd_scopes where id like \"%circleci%\" ", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/ComponentAndFileLevelMetrics.json b/grafana/dashboards/ComponentAndFileLevelMetrics.json index 96865220254..7f9ded9d9d6 100644 --- a/grafana/dashboards/ComponentAndFileLevelMetrics.json +++ b/grafana/dashboards/ComponentAndFileLevelMetrics.json @@ -131,7 +131,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -246,7 +246,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -388,7 +388,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -521,7 +521,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -681,7 +681,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -782,7 +782,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -834,7 +834,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "Please disable the SkipCommitFiles in the .env setting to view this metric. However, this will significantly increase the time to collect data.", "fieldConfig": { "defaults": { @@ -913,7 +913,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1047,7 +1047,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1125,7 +1125,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "Please disable the SkipCommitFiles in the .env setting to view this metric. However, this will significantly increase the time to collect data.", "fieldConfig": { "defaults": { @@ -1204,7 +1204,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1256,7 +1256,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "Please disable the SkipCommitFiles in the .env setting to view this metric. However, this will significantly increase the time to collect data.", "fieldConfig": { "defaults": { @@ -1309,7 +1309,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1378,7 +1378,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from repos", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/ContributorExperience.json b/grafana/dashboards/ContributorExperience.json index 6ec29831d71..717243944ec 100644 --- a/grafana/dashboards/ContributorExperience.json +++ b/grafana/dashboards/ContributorExperience.json @@ -59,7 +59,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -111,7 +111,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -145,7 +145,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -195,7 +195,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -229,7 +229,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -279,7 +279,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -313,7 +313,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -362,7 +362,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -414,7 +414,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -464,7 +464,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -498,7 +498,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -548,7 +548,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -582,7 +582,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -632,7 +632,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -684,7 +684,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -740,7 +740,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -840,7 +840,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '-', id) from repos", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/DORA.json b/grafana/dashboards/DORA.json index 3d3fdaa0983..71bc0bbcd3d 100644 --- a/grafana/dashboards/DORA.json +++ b/grafana/dashboards/DORA.json @@ -58,7 +58,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -226,7 +226,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -278,7 +278,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "How often an organization deploys code to production or release it to end users\n\n# 2023 Benchmarks\n- **Elite**: >= 7 deployment days per week\n- **High**: >= 1 deployment day per week\n- **Medium**: >= 1 deployment day per month\n- **Low**: < 1 deployment day per month\n# 2021 Benchmarks\n- **Elite**: >= 7 deployment days per week\n- **High**: >= 1 deployment day per month\n- **Medium**: >= 1 deployment day per six months\n- **Low**: < 1 deployment day per six months", "fieldConfig": { "defaults": { @@ -373,7 +373,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -425,7 +425,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "The median amount of time for a code change to be deployed into production.\n\n\n# 2023 Benchmarks\n- **Elite**: Less than one day\n- **High**: Between one day and one week\n- **Medium**: Between one week and one month\n- **Low**: More than one month\n# 2021 Benchmarks\n- **Elite**: Less than one hour\n- **High**: Less than one week\n- **Medium**: Between one week and six months\n- **Low**: More than six months\n", "fieldConfig": { "defaults": { @@ -519,7 +519,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -571,7 +571,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "The percentage of changes that were made to a code that then resulted in incidents, rollbacks, or any type of production failure.\n\n# 2023 Benchmarks\n- **Elite**: (0, 5%]\n- **High**: (5%, 10%]\n- **Medium**: (10%, 15%]\n- **Low**: (15%, 100%]\n# 2021 Benchmarks\n- **Elite**: (0, 15%]\n- **High**: (16%, 20%]\n- **Medium**: (21%, 30%]\n- **Low**: (30%, 100%]\n", "fieldConfig": { "defaults": { @@ -666,7 +666,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -718,7 +718,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "# MTTR benchmarks:\ndevlake.apache.org/docs/Metrics/MTTR#how-is-it-calculated\n# FDRT benchmarks:\ndevlake.apache.org/docs/Metrics/FailedDeploymentRecoveryTime#how-is-it-calculated\n", "fieldConfig": { "defaults": { @@ -820,7 +820,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -872,7 +872,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -955,7 +955,7 @@ }, "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1007,7 +1007,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1088,7 +1088,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1140,7 +1140,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1242,7 +1242,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1294,7 +1294,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1400,7 +1400,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1471,7 +1471,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct name from projects", "hide": 0, "includeAll": true, @@ -1492,7 +1492,7 @@ "text": "2023", "value": "2023" }, - "datasource": "mysql", + "datasource": "default", "definition": "select dora_report from dora_benchmarks", "hide": 0, "includeAll": false, @@ -1513,7 +1513,7 @@ "text": "Failed Deployment Recovery Time", "value": "Failed Deployment Recovery Time" }, - "datasource": "mysql", + "datasource": "default", "definition": "SELECT \n CASE \n WHEN dora_report = '2023' THEN \"Failed Deployment Recovery Time\"\n WHEN dora_report = '2021' THEN \"Median Time to Restore Service\"\n ELSE NULL \n END AS title_value\nFROM dora_benchmarks\nWHERE dora_report = '${dora_report:raw}'", "hide": 2, "includeAll": false, diff --git a/grafana/dashboards/DORAByTeam.json b/grafana/dashboards/DORAByTeam.json index 863aaac35a1..ced6c072845 100644 --- a/grafana/dashboards/DORAByTeam.json +++ b/grafana/dashboards/DORAByTeam.json @@ -63,7 +63,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -201,7 +201,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "hide": false, @@ -231,7 +231,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -318,7 +318,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -370,7 +370,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -457,7 +457,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "hide": false, @@ -487,7 +487,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -574,7 +574,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "hide": false, @@ -604,7 +604,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -692,7 +692,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "hide": false, @@ -722,7 +722,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -799,7 +799,7 @@ }, "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "hide": false, @@ -829,7 +829,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -904,7 +904,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "hide": false, @@ -934,7 +934,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1028,7 +1028,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "hide": false, @@ -1058,7 +1058,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1138,7 +1138,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "hide": false, @@ -1181,7 +1181,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct name from teams", "hide": 0, "includeAll": true, @@ -1202,7 +1202,7 @@ "text": "2023", "value": "2023" }, - "datasource": "mysql", + "datasource": "default", "definition": "select dora_report from dora_benchmarks", "hide": 0, "includeAll": false, @@ -1223,7 +1223,7 @@ "text": "Failed Deployment Recovery Time", "value": "Failed Deployment Recovery Time" }, - "datasource": "mysql", + "datasource": "default", "definition": "SELECT \n CASE \n WHEN dora_report = '2023' THEN \"Failed Deployment Recovery Time\"\n WHEN dora_report = '2021' THEN \"Median Time to Restore Service\"\n ELSE NULL \n END AS title_value\nFROM dora_benchmarks\nWHERE dora_report = '${dora_report:raw}'", "hide": 2, "includeAll": false, diff --git a/grafana/dashboards/DORADebug.json b/grafana/dashboards/DORADebug.json index 935b035c1da..2535ebf26ce 100644 --- a/grafana/dashboards/DORADebug.json +++ b/grafana/dashboards/DORADebug.json @@ -118,7 +118,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -192,7 +192,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -226,7 +226,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -313,7 +313,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -365,7 +365,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -439,7 +439,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -473,7 +473,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -550,7 +550,7 @@ }, "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -602,7 +602,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -684,7 +684,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -718,7 +718,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -801,7 +801,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -835,7 +835,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -918,7 +918,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -1012,7 +1012,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1062,7 +1062,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -1096,7 +1096,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1182,7 +1182,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1234,7 +1234,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1351,7 +1351,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -1385,7 +1385,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1459,7 +1459,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1511,7 +1511,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1568,7 +1568,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -1598,7 +1598,7 @@ ] }, { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -1632,7 +1632,7 @@ "type": "gauge" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1705,7 +1705,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -1739,7 +1739,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1862,7 +1862,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -1896,7 +1896,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1961,7 +1961,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -1995,7 +1995,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2043,7 +2043,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -2073,7 +2073,7 @@ ] }, { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -2107,7 +2107,7 @@ "type": "gauge" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2151,7 +2151,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -2181,7 +2181,7 @@ ] }, { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -2215,7 +2215,7 @@ "type": "gauge" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2259,7 +2259,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -2289,7 +2289,7 @@ ] }, { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -2323,7 +2323,7 @@ "type": "gauge" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2367,7 +2367,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -2397,7 +2397,7 @@ ] }, { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -2431,7 +2431,7 @@ "type": "gauge" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2475,7 +2475,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -2509,7 +2509,7 @@ "type": "gauge" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2611,7 +2611,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -2739,7 +2739,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2803,7 +2803,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -2837,7 +2837,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2923,7 +2923,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2975,7 +2975,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -3039,7 +3039,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -3108,7 +3108,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -3203,7 +3203,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -3255,7 +3255,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -3341,7 +3341,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -3393,7 +3393,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -3458,7 +3458,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -3492,7 +3492,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -3557,7 +3557,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -3609,7 +3609,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -3704,7 +3704,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -3769,7 +3769,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct name from projects", "hide": 0, "includeAll": true, @@ -3790,7 +3790,7 @@ "text": "", "value": "" }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(Url, '--', id) from pull_requests", "hide": 0, "includeAll": false, @@ -3811,7 +3811,7 @@ "text": "2023", "value": "2023" }, - "datasource": "mysql", + "datasource": "default", "definition": "select dora_report from dora_benchmarks", "hide": 0, "includeAll": false, @@ -3832,7 +3832,7 @@ "text": "Failed Deployment Recovery Time", "value": "Failed Deployment Recovery Time" }, - "datasource": "mysql", + "datasource": "default", "definition": "SELECT \n CASE \n WHEN dora_report = '2023' THEN \"Failed Deployment Recovery Time\"\n WHEN dora_report = '2021' THEN \"Median Time to Restore Service\"\n ELSE NULL \n END AS title_value\nFROM dora_benchmarks\nWHERE dora_report = '${dora_report:raw}'", "hide": 2, "includeAll": false, diff --git a/grafana/dashboards/DORADetails-ChangeFailureRate.json b/grafana/dashboards/DORADetails-ChangeFailureRate.json index 8048b282b1f..a04b21110ad 100644 --- a/grafana/dashboards/DORADetails-ChangeFailureRate.json +++ b/grafana/dashboards/DORADetails-ChangeFailureRate.json @@ -71,7 +71,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -157,7 +157,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -209,7 +209,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -358,7 +358,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -410,7 +410,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -495,7 +495,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -546,7 +546,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -620,7 +620,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -686,7 +686,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct name from projects", "hide": 0, "includeAll": true, @@ -707,7 +707,7 @@ "text": "2023", "value": "2023" }, - "datasource": "mysql", + "datasource": "default", "definition": "select dora_report from dora_benchmarks", "hide": 0, "includeAll": false, @@ -728,7 +728,7 @@ "text": "Failed Deployment Recovery Time", "value": "Failed Deployment Recovery Time" }, - "datasource": "mysql", + "datasource": "default", "definition": "SELECT \n CASE \n WHEN dora_report = '2023' THEN \"Failed Deployment Recovery Time\"\n WHEN dora_report = '2021' THEN \"Median Time to Restore Service\"\n ELSE NULL \n END AS title_value\nFROM dora_benchmarks\nWHERE dora_report = '${dora_report:raw}'", "hide": 2, "includeAll": false, diff --git a/grafana/dashboards/DORADetails-DeploymentFrequency.json b/grafana/dashboards/DORADetails-DeploymentFrequency.json index 44c49c5ad23..403b7cac9b6 100644 --- a/grafana/dashboards/DORADetails-DeploymentFrequency.json +++ b/grafana/dashboards/DORADetails-DeploymentFrequency.json @@ -70,7 +70,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -250,7 +250,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -302,7 +302,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -368,7 +368,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -420,7 +420,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -496,7 +496,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -548,7 +548,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -626,7 +626,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -678,7 +678,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -755,7 +755,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -832,7 +832,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -918,7 +918,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -970,7 +970,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1056,7 +1056,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1108,7 +1108,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1194,7 +1194,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1262,7 +1262,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct name from projects", "hide": 0, "includeAll": true, @@ -1283,7 +1283,7 @@ "text": "2023", "value": "2023" }, - "datasource": "mysql", + "datasource": "default", "definition": "select dora_report from dora_benchmarks", "hide": 0, "includeAll": false, @@ -1304,7 +1304,7 @@ "text": "Failed Deployment Recovery Time", "value": "Failed Deployment Recovery Time" }, - "datasource": "mysql", + "datasource": "default", "definition": "SELECT \n CASE \n WHEN dora_report = '2023' THEN \"Failed Deployment Recovery Time\"\n WHEN dora_report = '2021' THEN \"Median Time to Restore Service\"\n ELSE NULL \n END AS title_value\nFROM dora_benchmarks\nWHERE dora_report = '${dora_report:raw}'", "hide": 2, "includeAll": false, diff --git a/grafana/dashboards/DORADetails-FailedDeploymentRecoveryTime.json b/grafana/dashboards/DORADetails-FailedDeploymentRecoveryTime.json index 4dfd6fb0638..023bc005997 100644 --- a/grafana/dashboards/DORADetails-FailedDeploymentRecoveryTime.json +++ b/grafana/dashboards/DORADetails-FailedDeploymentRecoveryTime.json @@ -70,7 +70,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -116,7 +116,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "hide": false, @@ -146,7 +146,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -307,7 +307,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -359,7 +359,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -404,7 +404,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "hide": false, @@ -447,7 +447,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct name from projects", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/DORADetails-LeadTimeforChanges.json b/grafana/dashboards/DORADetails-LeadTimeforChanges.json index 20b1a393e42..fd2b1277814 100644 --- a/grafana/dashboards/DORADetails-LeadTimeforChanges.json +++ b/grafana/dashboards/DORADetails-LeadTimeforChanges.json @@ -69,7 +69,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -125,7 +125,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -177,7 +177,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -233,7 +233,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -285,7 +285,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -372,7 +372,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -424,7 +424,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -511,7 +511,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -563,7 +563,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -650,7 +650,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -702,7 +702,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Lead time for changes = median(PR deployed date - PR's first commit's authored date)", "fieldConfig": { "defaults": { @@ -826,7 +826,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -895,7 +895,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct name from projects", "hide": 0, "includeAll": true, @@ -916,7 +916,7 @@ "text": "2023", "value": "2023" }, - "datasource": "mysql", + "datasource": "default", "definition": "select dora_report from dora_benchmarks", "hide": 0, "includeAll": false, @@ -937,7 +937,7 @@ "text": "Failed Deployment Recovery Time", "value": "Failed Deployment Recovery Time" }, - "datasource": "mysql", + "datasource": "default", "definition": "SELECT \n CASE \n WHEN dora_report = '2023' THEN \"Failed Deployment Recovery Time\"\n WHEN dora_report = '2021' THEN \"Median Time to Restore Service\"\n ELSE NULL \n END AS title_value\nFROM dora_benchmarks\nWHERE dora_report = '${dora_report:raw}'", "hide": 2, "includeAll": false, diff --git a/grafana/dashboards/DORADetails-TimetoRestoreService.json b/grafana/dashboards/DORADetails-TimetoRestoreService.json index 24f99a534a1..1e4bc5ffbb1 100644 --- a/grafana/dashboards/DORADetails-TimetoRestoreService.json +++ b/grafana/dashboards/DORADetails-TimetoRestoreService.json @@ -71,7 +71,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -116,7 +116,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "hide": false, @@ -146,7 +146,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -294,7 +294,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -347,7 +347,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -391,7 +391,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "hide": false, @@ -435,7 +435,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct name from projects", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/DemoAverageRequirementLeadTimeByAssignee.json b/grafana/dashboards/DemoAverageRequirementLeadTimeByAssignee.json index c2c7c1eef4b..34fd39d2c4e 100644 --- a/grafana/dashboards/DemoAverageRequirementLeadTimeByAssignee.json +++ b/grafana/dashboards/DemoAverageRequirementLeadTimeByAssignee.json @@ -44,7 +44,7 @@ ], "panels": [ { - "datasource": "mysql", + "datasource": "default", "description": "1. Compare the average time spent in each state of a requirement in the last 2 months.\n2. The requirements being calculated are the requirements delivered in the last 2 months.", "fieldConfig": { "defaults": { @@ -139,7 +139,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { diff --git a/grafana/dashboards/DemoCommitCountByAuthor.json b/grafana/dashboards/DemoCommitCountByAuthor.json index 7e28acce231..bae02735b70 100644 --- a/grafana/dashboards/DemoCommitCountByAuthor.json +++ b/grafana/dashboards/DemoCommitCountByAuthor.json @@ -44,7 +44,7 @@ ], "panels": [ { - "datasource": "mysql", + "datasource": "default", "description": "The number of commits from different commit authors.", "fieldConfig": { "defaults": { @@ -142,7 +142,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { diff --git a/grafana/dashboards/DemoDetailedBugInfo.json b/grafana/dashboards/DemoDetailedBugInfo.json index 61398ff4b44..bde7c871643 100644 --- a/grafana/dashboards/DemoDetailedBugInfo.json +++ b/grafana/dashboards/DemoDetailedBugInfo.json @@ -44,7 +44,7 @@ ], "panels": [ { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -140,7 +140,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { diff --git a/grafana/dashboards/DemoHowFastDoWeRespondToCustomerRequirements.json b/grafana/dashboards/DemoHowFastDoWeRespondToCustomerRequirements.json index 5a4b1ccfadb..7cc6c22fb92 100644 --- a/grafana/dashboards/DemoHowFastDoWeRespondToCustomerRequirements.json +++ b/grafana/dashboards/DemoHowFastDoWeRespondToCustomerRequirements.json @@ -32,7 +32,7 @@ ], "panels": [ { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { diff --git a/grafana/dashboards/DemoIsThisMonthMoreProductiveThanLast.json b/grafana/dashboards/DemoIsThisMonthMoreProductiveThanLast.json index e59181e73be..cd72c201543 100644 --- a/grafana/dashboards/DemoIsThisMonthMoreProductiveThanLast.json +++ b/grafana/dashboards/DemoIsThisMonthMoreProductiveThanLast.json @@ -32,7 +32,7 @@ ], "panels": [ { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { diff --git a/grafana/dashboards/DemoWasOurQualityImprovedOrNot.json b/grafana/dashboards/DemoWasOurQualityImprovedOrNot.json index a44614f495f..813fbef75c8 100644 --- a/grafana/dashboards/DemoWasOurQualityImprovedOrNot.json +++ b/grafana/dashboards/DemoWasOurQualityImprovedOrNot.json @@ -32,7 +32,7 @@ ], "panels": [ { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { diff --git a/grafana/dashboards/EngineeringOverview.json b/grafana/dashboards/EngineeringOverview.json index e105eca570e..7bf24ee1333 100644 --- a/grafana/dashboards/EngineeringOverview.json +++ b/grafana/dashboards/EngineeringOverview.json @@ -58,7 +58,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -112,7 +112,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -164,7 +164,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -246,7 +246,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -298,7 +298,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -354,7 +354,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -405,7 +405,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -497,7 +497,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -530,7 +530,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -584,7 +584,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -636,7 +636,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -718,7 +718,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -770,7 +770,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -833,7 +833,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -885,7 +885,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -974,7 +974,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1026,7 +1026,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1083,7 +1083,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1135,7 +1135,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1224,7 +1224,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1276,7 +1276,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1337,7 +1337,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1389,7 +1389,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1476,7 +1476,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1528,7 +1528,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1578,7 +1578,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1630,7 +1630,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1710,7 +1710,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1762,7 +1762,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1821,7 +1821,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1873,7 +1873,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1962,7 +1962,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2014,7 +2014,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2068,7 +2068,7 @@ }, "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2120,7 +2120,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2201,7 +2201,7 @@ }, "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -2287,7 +2287,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct name from projects", "hide": 0, "includeAll": true, @@ -2308,7 +2308,7 @@ "text": "", "value": "" }, - "datasource": "mysql", + "datasource": "default", "definition": "select\n distinct(concat(date_format(DATE_ADD(date(created_date), INTERVAL -DAY(date(created_date))+1 DAY), '%Y-%m') , ':', date_format(DATE_ADD(date(created_date), INTERVAL -DAY(date(created_date))+1 DAY), '%Y-%m-%d'))) as month\nfrom\n issues i\norder by month desc", "hide": 0, "includeAll": false, @@ -2333,7 +2333,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct priority from issues", "description": "Customize what prioriti(es) are considered \"critical\"", "hide": 0, @@ -2355,7 +2355,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct type from issues", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/EngineeringThroughputAndCycleTime.json b/grafana/dashboards/EngineeringThroughputAndCycleTime.json index 6f393a728bc..fc21a20b330 100644 --- a/grafana/dashboards/EngineeringThroughputAndCycleTime.json +++ b/grafana/dashboards/EngineeringThroughputAndCycleTime.json @@ -83,7 +83,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -202,7 +202,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "hide": false, @@ -236,7 +236,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -388,7 +388,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -476,7 +476,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -528,7 +528,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -616,7 +616,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "hide": false, @@ -650,7 +650,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -739,7 +739,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -773,7 +773,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -861,7 +861,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -913,7 +913,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -998,7 +998,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -1058,7 +1058,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1142,7 +1142,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1194,7 +1194,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1278,7 +1278,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1330,7 +1330,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1445,7 +1445,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1497,7 +1497,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1612,7 +1612,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1664,7 +1664,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1779,7 +1779,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1879,7 +1879,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct name from projects", "hide": 0, "includeAll": true, @@ -1905,7 +1905,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct priority from issues where priority != ''", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/EngineeringThroughputAndCycleTimeTeamView.json b/grafana/dashboards/EngineeringThroughputAndCycleTimeTeamView.json index c9cd453387c..50e519027e9 100644 --- a/grafana/dashboards/EngineeringThroughputAndCycleTimeTeamView.json +++ b/grafana/dashboards/EngineeringThroughputAndCycleTimeTeamView.json @@ -84,7 +84,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -203,7 +203,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -255,7 +255,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -374,7 +374,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "hide": false, @@ -408,7 +408,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -527,7 +527,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "hide": false, @@ -561,7 +561,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -680,7 +680,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "hide": false, @@ -740,7 +740,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -859,7 +859,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -911,7 +911,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1030,7 +1030,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1108,7 +1108,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1227,7 +1227,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1279,7 +1279,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1398,7 +1398,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1476,7 +1476,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1595,7 +1595,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1647,7 +1647,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1766,7 +1766,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1844,7 +1844,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1963,7 +1963,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -2015,7 +2015,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2134,7 +2134,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -2212,7 +2212,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2328,7 +2328,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2380,7 +2380,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2495,7 +2495,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2547,7 +2547,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2662,7 +2662,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2714,7 +2714,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2829,7 +2829,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2881,7 +2881,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2996,7 +2996,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -3074,7 +3074,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -3189,7 +3189,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -3288,7 +3288,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct name from projects", "hide": 0, "includeAll": true, @@ -3311,7 +3311,7 @@ "text": "None", "value": "" }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from teams", "hide": 0, "includeAll": false, @@ -3334,7 +3334,7 @@ "text": "None", "value": "" }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from teams", "hide": 0, "includeAll": false, @@ -3360,7 +3360,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct priority from issues where priority != ''", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/GitHub.json b/grafana/dashboards/GitHub.json index 89bc8842b50..16c2705ff84 100644 --- a/grafana/dashboards/GitHub.json +++ b/grafana/dashboards/GitHub.json @@ -91,7 +91,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -143,7 +143,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -195,8 +195,8 @@ "type": "stat" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -279,7 +279,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -357,7 +357,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -409,7 +409,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -443,8 +443,8 @@ "type": "stat" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -544,7 +544,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -596,7 +596,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -653,7 +653,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -687,8 +687,8 @@ "type": "stat" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -774,7 +774,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -826,8 +826,8 @@ "type": "barchart" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -909,7 +909,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -961,7 +961,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1097,7 +1097,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -1157,7 +1157,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1209,7 +1209,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1261,8 +1261,8 @@ "type": "stat" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -1359,7 +1359,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1411,8 +1411,8 @@ "type": "barchart" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -1498,7 +1498,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1576,8 +1576,8 @@ "type": "row" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -1631,7 +1631,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1683,8 +1683,8 @@ "type": "stat" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -1810,7 +1810,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1862,7 +1862,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1914,7 +1914,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1966,8 +1966,8 @@ "type": "stat" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -2049,7 +2049,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -2101,7 +2101,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2158,7 +2158,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -2192,8 +2192,8 @@ "type": "stat" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -2278,7 +2278,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2330,7 +2330,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2385,7 +2385,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -2419,8 +2419,8 @@ "type": "stat" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -2505,7 +2505,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2570,7 +2570,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of workflow runs executed in the selected time range", "fieldConfig": { "defaults": { @@ -2620,7 +2620,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2671,7 +2671,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful workflow runs / Number of total workflow runs", "fieldConfig": { "defaults": { @@ -2727,7 +2727,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2778,8 +2778,8 @@ "type": "stat" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -2894,7 +2894,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2946,8 +2946,8 @@ "type": "barchart" }, { - "datasource": "mysql", - "description": "Number of successful workflow runs / Number of total workflow runs", + "datasource": "default", + "description": "Number of successful workflow runs / Number of total workflow runs", "fieldConfig": { "defaults": { "color": { @@ -3082,7 +3082,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -3133,8 +3133,8 @@ "type": "piechart" }, { - "datasource": "mysql", - "description": "1. Mean Workflow Runs success rate over time.\n2. The workflow runs being calculated are filtered by \"workflow runs starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", + "datasource": "default", + "description": "1. Mean Workflow Runs success rate over time.\n2. The workflow runs being calculated are filtered by \"workflow runs starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { "color": { @@ -3239,7 +3239,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -3290,7 +3290,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful workflow runs / Number of total workflow runs", "fieldConfig": { "defaults": { @@ -3340,7 +3340,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -3391,8 +3391,8 @@ "type": "stat" }, { - "datasource": "mysql", - "description": "", + "datasource": "default", + "description": "", "fieldConfig": { "defaults": { "color": { @@ -3494,7 +3494,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -3600,8 +3600,8 @@ "$__all" ] }, - "datasource": "mysql", - "definition": "select concat(name, '--', id) as text from repos where id like 'github%'", + "datasource": "default", + "definition": "select concat(name, '--', id) as text from repos where id like 'github%'", "hide": 0, "includeAll": true, "label": "Repo", diff --git a/grafana/dashboards/GithubReleaseQualityAndContributionAnalysis.json b/grafana/dashboards/GithubReleaseQualityAndContributionAnalysis.json index f2c354145b5..785775a4d1f 100644 --- a/grafana/dashboards/GithubReleaseQualityAndContributionAnalysis.json +++ b/grafana/dashboards/GithubReleaseQualityAndContributionAnalysis.json @@ -58,7 +58,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -146,7 +146,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -273,7 +273,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -359,7 +359,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -515,7 +515,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -601,7 +601,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -763,7 +763,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -850,7 +850,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -937,7 +937,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1025,7 +1025,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1123,7 +1123,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1213,7 +1213,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1317,7 +1317,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1407,7 +1407,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1575,7 +1575,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1724,7 +1724,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1900,7 +1900,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1995,7 +1995,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2106,7 +2106,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2223,7 +2223,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2340,7 +2340,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2457,7 +2457,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2545,7 +2545,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2681,7 +2681,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from repos", "description": null, "error": null, diff --git a/grafana/dashboards/Gitlab.json b/grafana/dashboards/Gitlab.json index a45bb37f6a7..60a2c2337e1 100644 --- a/grafana/dashboards/Gitlab.json +++ b/grafana/dashboards/Gitlab.json @@ -91,7 +91,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -143,7 +143,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -195,7 +195,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -293,7 +293,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -345,7 +345,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -432,7 +432,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -506,7 +506,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -594,7 +594,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -721,7 +721,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -773,7 +773,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -825,7 +825,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -877,7 +877,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -962,7 +962,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1014,7 +1014,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1104,7 +1104,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1191,7 +1191,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1256,7 +1256,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of pipeline runs executed in the selected time range", "fieldConfig": { "defaults": { @@ -1306,7 +1306,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1357,7 +1357,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful pipeline runs / Number of total pipeline runs", "fieldConfig": { "defaults": { @@ -1413,7 +1413,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1464,7 +1464,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1580,7 +1580,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1632,7 +1632,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1768,7 +1768,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1819,7 +1819,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Mean Pipeline Runs success rate over time.\n2. The Pipeline runs being calculated are filtered by \"workflow runs starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -1909,7 +1909,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1960,7 +1960,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful pipeline runs / Number of total pipeline runs", "fieldConfig": { "defaults": { @@ -2010,7 +2010,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2061,7 +2061,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2164,7 +2164,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2270,7 +2270,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from repos where id like 'gitlab%'", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/Jenkins.json b/grafana/dashboards/Jenkins.json index 7c1a9db8138..bb883b95d91 100644 --- a/grafana/dashboards/Jenkins.json +++ b/grafana/dashboards/Jenkins.json @@ -65,7 +65,7 @@ "type": "text" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of builds executed in the selected time range", "fieldConfig": { "defaults": { @@ -114,7 +114,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -165,7 +165,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful builds / Number of total builds", "fieldConfig": { "defaults": { @@ -217,7 +217,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -268,7 +268,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -404,7 +404,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -455,7 +455,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "description": "Number of successful builds / Number of total builds", "fieldConfig": { "defaults": { @@ -505,7 +505,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -538,7 +538,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -624,7 +624,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -676,7 +676,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Mean Build success rate over time.\n2. The builds being calculated are filtered by \"build starting time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -782,7 +782,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -833,7 +833,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -949,7 +949,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "hide": false, @@ -983,7 +983,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1085,7 +1085,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -1172,7 +1172,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from cicd_scopes where id like \"jenkins%\" ", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/Jira.json b/grafana/dashboards/Jira.json index a18e46b3f27..ab92d5a1616 100644 --- a/grafana/dashboards/Jira.json +++ b/grafana/dashboards/Jira.json @@ -116,7 +116,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of issues created.\n2. The requirements being calculated are filtered by \"requirement creation time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -170,7 +170,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -220,7 +220,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -275,7 +275,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -325,7 +325,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -414,7 +414,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -446,7 +446,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "Issue Delivery Rate = count(Delivered Issues)/count(Issues)", "fieldConfig": { "defaults": { @@ -505,7 +505,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -537,7 +537,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Issue Delivery Rate = count(Delivered Issues)/count(Issues)", "fieldConfig": { "defaults": { @@ -624,7 +624,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -682,7 +682,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -738,7 +738,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -789,7 +789,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -844,7 +844,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -877,7 +877,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -967,7 +967,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -1000,7 +1000,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. The cumulative distribution of requirement lead time. \n2. Each point refers to the percent rank of a lead time.", "fieldConfig": { "defaults": { @@ -1084,7 +1084,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1196,7 +1196,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) from boards where id like 'jira%'", "hide": 0, "includeAll": true, @@ -1217,7 +1217,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct type from issues", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/Opsgenie.json b/grafana/dashboards/Opsgenie.json index 2ab5a9e62b0..060963d692d 100644 --- a/grafana/dashboards/Opsgenie.json +++ b/grafana/dashboards/Opsgenie.json @@ -118,7 +118,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of incidents created.\n2. The requirements being calculated are filtered by \"requirement creation time\" (time filter at the upper-right corner) and \"Opsgenie board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -170,7 +170,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -220,7 +220,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -273,7 +273,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -323,7 +323,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of incidents created.\n2. The requirements being calculated are filtered by \"requirement creation time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -405,7 +405,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -455,7 +455,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -508,7 +508,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -558,7 +558,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -615,7 +615,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -665,7 +665,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -749,7 +749,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -825,7 +825,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -884,7 +884,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -935,7 +935,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -993,7 +993,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1044,7 +1044,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1132,7 +1132,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1187,7 +1187,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "1. The cumulative distribution of MTTR\n2. Each point refers to the percent rank of a distinct duration to resolve incidents.", "fill": 0, "fillGradient": 4, @@ -1234,7 +1234,7 @@ "steppedLine": false, "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1376,7 +1376,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "Due to Opsgenie API limitation regarding the relationship between assignee, users, and incident (and lack of 'assign at' key ), the column assignee represents a JSON object containing all assignee from said incident", "fieldConfig": { "defaults": { @@ -1461,7 +1461,7 @@ "pluginVersion": "9.5.2", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -1506,7 +1506,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) from boards where id like 'opsgenie%'", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/PagerDuty.json b/grafana/dashboards/PagerDuty.json index fcf63114531..42411a34459 100644 --- a/grafana/dashboards/PagerDuty.json +++ b/grafana/dashboards/PagerDuty.json @@ -116,7 +116,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of incidents created.\n2. The requirements being calculated are filtered by \"requirement creation time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -168,7 +168,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -218,7 +218,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -271,7 +271,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -321,7 +321,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of incidents created.\n2. The requirements being calculated are filtered by \"requirement creation time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -391,7 +391,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -441,7 +441,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -498,7 +498,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -548,7 +548,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -632,7 +632,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -708,7 +708,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -767,7 +767,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -818,7 +818,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -876,7 +876,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -927,7 +927,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1015,7 +1015,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1070,7 +1070,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "1. The cumulative distribution of MTTR\n2. Each point refers to the percent rank of a distinct duration to resolve incidents.", "fill": 0, "fillGradient": 4, @@ -1117,7 +1117,7 @@ "steppedLine": false, "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "time_series", "group": [], @@ -1265,7 +1265,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) from boards where id like 'pagerduty%'", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/SonarQubeCloud.json b/grafana/dashboards/SonarQubeCloud.json index 1a290703897..8854b3bd38a 100644 --- a/grafana/dashboards/SonarQubeCloud.json +++ b/grafana/dashboards/SonarQubeCloud.json @@ -89,7 +89,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -148,7 +148,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -177,7 +177,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -236,7 +236,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -265,7 +265,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -324,7 +324,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -366,7 +366,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -426,7 +426,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -455,7 +455,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -515,7 +515,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -570,7 +570,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -630,7 +630,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -659,7 +659,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -720,7 +720,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -749,7 +749,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -810,7 +810,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -865,7 +865,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -925,7 +925,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -954,7 +954,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1014,7 +1014,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -1056,7 +1056,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1117,7 +1117,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -1146,7 +1146,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1207,7 +1207,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -1236,7 +1236,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1297,7 +1297,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -1339,7 +1339,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1401,7 +1401,7 @@ "targets": [ { "dataset": "lake", - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -1448,7 +1448,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from cq_projects", "hide": 0, "includeAll": true, @@ -1473,7 +1473,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct severity from cq_issues where id like 'sonar%'", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/Sonarqube.json b/grafana/dashboards/Sonarqube.json index d8708f36d93..047493954ec 100644 --- a/grafana/dashboards/Sonarqube.json +++ b/grafana/dashboards/Sonarqube.json @@ -88,7 +88,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -147,7 +147,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -176,7 +176,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -235,7 +235,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -264,7 +264,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -324,7 +324,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -353,7 +353,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -412,7 +412,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -467,7 +467,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -526,7 +526,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -555,7 +555,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -615,7 +615,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -644,7 +644,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -704,7 +704,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -759,7 +759,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -818,7 +818,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -847,7 +847,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -906,7 +906,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -935,7 +935,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -996,7 +996,7 @@ "pluginVersion": "11.2.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -1043,7 +1043,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) as text from cq_projects", "hide": 0, "includeAll": true, @@ -1068,7 +1068,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct severity from cq_issues where id like 'sonar%'", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/TAPD.json b/grafana/dashboards/TAPD.json index da960da5293..9ec8ef52a3d 100644 --- a/grafana/dashboards/TAPD.json +++ b/grafana/dashboards/TAPD.json @@ -116,7 +116,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of issues created.\n2. The requirements being calculated are filtered by \"requirement creation time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -168,7 +168,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -218,7 +218,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -271,7 +271,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -321,7 +321,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -407,7 +407,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -439,7 +439,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "Issue Delivery Rate = count(Delivered Issues)/count(Issues)", "fieldConfig": { "defaults": { @@ -496,7 +496,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -528,7 +528,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Issue Delivery Rate = count(Delivered Issues)/count(Issues)", "fieldConfig": { "defaults": { @@ -612,7 +612,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -670,7 +670,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -724,7 +724,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -757,7 +757,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -810,7 +810,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -843,7 +843,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -931,7 +931,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -968,7 +968,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "1. The cumulative distribution of requirement lead time. \n2. Each point refers to the percent rank of a lead time.", "fill": 0, "fillGradient": 4, @@ -1015,7 +1015,7 @@ "steppedLine": false, "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -1144,7 +1144,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) from boards where id like 'tapd%'", "hide": 0, "includeAll": true, @@ -1165,7 +1165,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct type from issues", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/Teambition.json b/grafana/dashboards/Teambition.json index 743884e1540..260469f9a32 100644 --- a/grafana/dashboards/Teambition.json +++ b/grafana/dashboards/Teambition.json @@ -116,7 +116,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of issues created.\n2. The requirements being calculated are filtered by \"requirement creation time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -168,7 +168,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -218,7 +218,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -271,7 +271,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -321,7 +321,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -407,7 +407,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -439,7 +439,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "Issue Delivery Rate = count(Delivered Issues)/count(Issues)", "fieldConfig": { "defaults": { @@ -496,7 +496,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -528,7 +528,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Issue Delivery Rate = count(Delivered Issues)/count(Issues)", "fieldConfig": { "defaults": { @@ -612,7 +612,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -670,7 +670,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -724,7 +724,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -757,7 +757,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -810,7 +810,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -843,7 +843,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -931,7 +931,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -968,7 +968,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "1. The cumulative distribution of requirement lead time. \n2. Each point refers to the percent rank of a lead time.", "fill": 0, "fillGradient": 4, @@ -1015,7 +1015,7 @@ "steppedLine": false, "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -1144,7 +1144,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) from boards where id like 'teambition%'", "hide": 0, "includeAll": true, @@ -1165,7 +1165,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct type from issues", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/WeeklyBugRetro.json b/grafana/dashboards/WeeklyBugRetro.json index 3b1e9131e9d..17a0136c5ea 100644 --- a/grafana/dashboards/WeeklyBugRetro.json +++ b/grafana/dashboards/WeeklyBugRetro.json @@ -71,7 +71,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -157,7 +157,7 @@ }, "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -209,7 +209,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -295,7 +295,7 @@ }, "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -347,7 +347,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -435,7 +435,7 @@ }, "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -500,7 +500,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -557,7 +557,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -609,7 +609,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -669,7 +669,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -721,7 +721,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -828,7 +828,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -880,7 +880,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -937,7 +937,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -989,7 +989,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1051,7 +1051,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1103,7 +1103,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1224,7 +1224,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1276,7 +1276,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1364,7 +1364,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1416,7 +1416,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1473,7 +1473,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1525,7 +1525,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1582,7 +1582,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -1616,7 +1616,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1761,7 +1761,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1813,7 +1813,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1901,7 +1901,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1953,7 +1953,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -2098,7 +2098,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2198,7 +2198,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '-', id) as text from boards", "hide": 0, "includeAll": true, @@ -2219,7 +2219,7 @@ "text": "BUG", "value": "BUG" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct type from issues", "hide": 0, "includeAll": true, @@ -2244,7 +2244,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct priority from issues", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/WeeklyCommunityRetro.json b/grafana/dashboards/WeeklyCommunityRetro.json index fdf6ed989d3..096d29d8dbd 100644 --- a/grafana/dashboards/WeeklyCommunityRetro.json +++ b/grafana/dashboards/WeeklyCommunityRetro.json @@ -85,7 +85,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -140,7 +140,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -192,7 +192,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -247,7 +247,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -299,7 +299,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -355,7 +355,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -407,7 +407,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -466,7 +466,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -500,7 +500,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -560,7 +560,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -594,7 +594,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -729,7 +729,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -781,7 +781,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -840,7 +840,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -874,7 +874,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1013,7 +1013,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1091,7 +1091,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1146,7 +1146,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1198,7 +1198,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1253,7 +1253,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1305,7 +1305,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1360,7 +1360,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1412,7 +1412,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1467,7 +1467,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1519,7 +1519,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1575,7 +1575,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "hide": false, @@ -1609,7 +1609,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Contributors: the PR authors who have merged PR(s)", "fieldConfig": { "defaults": { @@ -1668,7 +1668,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1720,7 +1720,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1780,7 +1780,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1832,7 +1832,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1919,7 +1919,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1971,7 +1971,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2057,7 +2057,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2109,7 +2109,7 @@ "type": "barchart" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2159,7 +2159,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2211,7 +2211,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -2266,7 +2266,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -2370,7 +2370,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '-', id) as text from repos", "hide": 0, "includeAll": true, @@ -2391,7 +2391,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct type from issues", "hide": 0, "includeAll": true, @@ -2416,7 +2416,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct organization from accounts where organization != ''", "description": "", "hide": 0, diff --git a/grafana/dashboards/WorkLogs.json b/grafana/dashboards/WorkLogs.json index d2392927c38..580321fb652 100644 --- a/grafana/dashboards/WorkLogs.json +++ b/grafana/dashboards/WorkLogs.json @@ -69,7 +69,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -212,7 +212,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -241,7 +241,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -355,7 +355,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -384,7 +384,7 @@ "type": "table" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -576,7 +576,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -618,7 +618,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -712,7 +712,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -741,7 +741,7 @@ "type": "piechart" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -783,7 +783,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -812,7 +812,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -855,7 +855,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -884,7 +884,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -927,7 +927,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -956,7 +956,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -999,7 +999,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -1028,7 +1028,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -1114,7 +1114,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -1179,7 +1179,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1222,7 +1222,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -1251,7 +1251,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "fieldConfig": { "defaults": { "color": { @@ -1294,7 +1294,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -1323,7 +1323,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "average pr review time from first comment to the last comment", "fieldConfig": { "defaults": { @@ -1367,7 +1367,7 @@ "pluginVersion": "11.0.0", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "rawQuery": true, @@ -1411,7 +1411,7 @@ "text": "None", "value": "" }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) from teams", "hide": 0, "includeAll": false, @@ -1436,7 +1436,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(users.name, '--', users.id) from users left join team_users on users.id = team_users.user_id where team_users.team_id in ($team)", "hide": 0, "includeAll": true, diff --git a/grafana/dashboards/Zentao.json b/grafana/dashboards/Zentao.json index dbde7eb46bf..02158359170 100644 --- a/grafana/dashboards/Zentao.json +++ b/grafana/dashboards/Zentao.json @@ -116,7 +116,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "1. Total number of issues created.\n2. The requirements being calculated are filtered by \"requirement creation time\" (time filter at the upper-right corner) and \"Jira board\" (\"Choose Board\" filter at the upper-left corner)", "fieldConfig": { "defaults": { @@ -168,7 +168,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -218,7 +218,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -271,7 +271,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "editorMode": "code", "format": "table", "group": [], @@ -321,7 +321,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -407,7 +407,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -439,7 +439,7 @@ "type": "timeseries" }, { - "datasource": "mysql", + "datasource": "default", "description": "Issue Delivery Rate = count(Delivered Issues)/count(Issues)", "fieldConfig": { "defaults": { @@ -496,7 +496,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -528,7 +528,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "Issue Delivery Rate = count(Delivered Issues)/count(Issues)", "fieldConfig": { "defaults": { @@ -612,7 +612,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -670,7 +670,7 @@ "type": "row" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -724,7 +724,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -757,7 +757,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -810,7 +810,7 @@ "pluginVersion": "9.5.15", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -843,7 +843,7 @@ "type": "stat" }, { - "datasource": "mysql", + "datasource": "default", "description": "", "fieldConfig": { "defaults": { @@ -931,7 +931,7 @@ "pluginVersion": "8.0.6", "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "table", "group": [], "metricColumn": "none", @@ -968,7 +968,7 @@ "bars": false, "dashLength": 10, "dashes": false, - "datasource": "mysql", + "datasource": "default", "description": "1. The cumulative distribution of requirement lead time. \n2. Each point refers to the percent rank of a lead time.", "fill": 0, "fillGradient": 4, @@ -1015,7 +1015,7 @@ "steppedLine": false, "targets": [ { - "datasource": "mysql", + "datasource": "default", "format": "time_series", "group": [], "metricColumn": "none", @@ -1144,7 +1144,7 @@ "$__all" ] }, - "datasource": "mysql", + "datasource": "default", "definition": "select concat(name, '--', id) from boards where id like 'zentao%'", "hide": 0, "includeAll": true, @@ -1165,7 +1165,7 @@ "text": "All", "value": "$__all" }, - "datasource": "mysql", + "datasource": "default", "definition": "select distinct type from issues", "hide": 0, "includeAll": true, diff --git a/grafana/provisioning/datasources/datasource.yml b/grafana/provisioning/datasources/datasource.yml index c2afa5aa0ca..0e43039d955 100644 --- a/grafana/provisioning/datasources/datasource.yml +++ b/grafana/provisioning/datasources/datasource.yml @@ -19,11 +19,13 @@ apiVersion: 1 datasources: - - name: mysql - type: mysql - url: $MYSQL_URL - database: $MYSQL_DATABASE - user: $MYSQL_USER + - name: default + type: $DB_TYPE # can be "postgres" or "mysql" + url: $DB_HOST + jsonData: # as stated in https://github.com/grafana/grafana/issues/11407#issuecomment-376862604 + sslmode: disable + database: $DB_DATABASE + user: $DB_USER secureJsonData: - password: $MYSQL_PASSWORD + password: $DB_PASSWORD editable: false