Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: make build_package

- name: Upload the build artefacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-dist
path: pmm-app/dist/
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_GRAFANA_DASHBOARDS_TOKEN }}

- name: Download built packages
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build-dist
path: pmm-app/dist/
Expand Down
23 changes: 15 additions & 8 deletions dashboards/MongoDB/MongoDB_Cluster_Summary.json
Original file line number Diff line number Diff line change
Expand Up @@ -2106,7 +2106,8 @@
"options": {
"0": {
"index": 11,
"text": "STARTUP"
"text": "STARTUP",
"color": "semi-dark-red"
},
"1": {
"color": "rgb(107, 152, 102)",
Expand All @@ -2120,15 +2121,18 @@
},
"3": {
"index": 10,
"text": "RECOVERING"
"text": "RECOVERING",
"color": "semi-dark-red"
},
"5": {
"index": 9,
"text": "STARTUP2"
"text": "STARTUP2",
"color": "semi-dark-red"
},
"6": {
"index": 8,
"text": "UNKNOWN"
"text": "UNKNOWN",
"color": "semi-dark-red"
},
"7": {
"color": "#8B8000",
Expand All @@ -2137,15 +2141,18 @@
},
"8": {
"index": 7,
"text": "DOWN"
"text": "DOWN",
"color": "semi-dark-red"
},
"9": {
"index": 6,
"text": "ROLLBACK"
"text": "ROLLBACK",
"color": "semi-dark-red"
},
"10": {
"index": 5,
"text": "REMOVED"
"text": "REMOVED",
"color": "semi-dark-red"
},
"null": {
"color": "#FF7383",
Expand Down Expand Up @@ -2210,7 +2217,7 @@
"targets": [
{
"editorMode": "code",
"expr": "max by (service_name) (mongodb_mongod_replset_my_state{environment=~\"$environment\",cluster=~\"$cluster\",set=~\"$set\",service_name=~\"$service_name\"})",
"expr": "min by (member_idx) (mongodb_rs_members_state{environment=~\"$environment\",cluster=~\"$cluster\",rs_nm=~\"$set\",service_name=~\"$service_name\"})",
"hide": false,
"interval": "$interval",
"legendFormat": "{{service_name}}",
Expand Down
23 changes: 15 additions & 8 deletions dashboards/MongoDB/MongoDB_ReplSet_Summary.json
Original file line number Diff line number Diff line change
Expand Up @@ -1021,7 +1021,8 @@
"options": {
"0": {
"index": 11,
"text": "STARTUP"
"text": "STARTUP",
"color": "semi-dark-red"
},
"1": {
"color": "rgb(107, 152, 102)",
Expand All @@ -1035,15 +1036,18 @@
},
"3": {
"index": 10,
"text": "RECOVERING"
"text": "RECOVERING",
"color": "semi-dark-red"
},
"5": {
"index": 9,
"text": "STARTUP2"
"text": "STARTUP2",
"color": "semi-dark-red"
},
"6": {
"index": 8,
"text": "UNKNOWN"
"text": "UNKNOWN",
"color": "semi-dark-red"
},
"7": {
"color": "#8B8000",
Expand All @@ -1052,15 +1056,18 @@
},
"8": {
"index": 7,
"text": "DOWN"
"text": "DOWN",
"color": "semi-dark-red"
},
"9": {
"index": 6,
"text": "ROLLBACK"
"text": "ROLLBACK",
"color": "semi-dark-red"
},
"10": {
"index": 5,
"text": "REMOVED"
"text": "REMOVED",
"color": "semi-dark-red"
},
"null": {
"color": "#FF7383",
Expand Down Expand Up @@ -1125,7 +1132,7 @@
"targets": [
{
"editorMode": "code",
"expr": "max by (service_name) (mongodb_mongod_replset_my_state{environment=~\"$environment\", cluster=~\"$cluster\", set=~\"$rs_nm\", service_name=~\"$service_name\"})",
"expr": "min by (member_idx) (mongodb_rs_members_state{environment=~\"$environment\", cluster=~\"$cluster\", rs_nm=~\"$rs_nm\", service_name=~\"$service_name\"})",
"interval": "$interval",
"legendFormat": "{{set}}",
"range": true,
Expand Down
Loading