Skip to content

Commit

Permalink
Merge branch 'v3' into PMM-13235-grafana-11
Browse files Browse the repository at this point in the history
  • Loading branch information
matejkubinec committed Sep 10, 2024
2 parents b7c37f0 + a1642a2 commit d0b8fba
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 11 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ jobs:
working-directory: ./pmm-ui-tests
run: npm install

- name: install playwright
working-directory: ./pmm-ui-tests
run: npx playwright install

- name: Run UI tests
working-directory: ./pmm-ui-tests
run: npm run e2e:grafana-pr
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ run-frontend: deps-js ## Fetch js dependencies and watch frontend for rebuild

run-local-env: ## Start local frontend with pmm-server:dev-latest
yarn dev
docker-compose up -d
docker compose up -d

##@ Testing

Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
container_name: pmm-server
# Temporary till we have arm builds
platform: linux/amd64
image: perconalab/pmm-server:3-dev-container
image: ${PMM_SERVER_IMAGE:-perconalab/pmm-server:3-dev-container}
volumes:
- "./:/workspace"
- "./public:/usr/share/grafana/public"
Expand All @@ -16,8 +16,8 @@ services:
environment:
- PMM_DEBUG=1
- PERCONA_PORTAL_URL=https://portal-dev.percona.com
- PERCONA_TEST_PLATFORM_ADDRESS=https://check-dev.percona.com:443
- PERCONA_TEST_PLATFORM_PUBLIC_KEY=RWTkF7Snv08FCboTne4djQfN5qbrLfAjb8SY3/wwEP+X5nUrkxCEvUDJ
- PMM_DEV_PERCONA_PLATFORM_ADDRESS=https://check-dev.percona.com:443
- PMM_DEV_PERCONA_PLATFORM_PUBLIC_KEY=RWTkF7Snv08FCboTne4djQfN5qbrLfAjb8SY3/wwEP+X5nUrkxCEvUDJ

mysql:
image: percona:5.7.30
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ export const PMM_NAV_MONGO: NavModelItem = {
id: 'mongo-cluster-summary',
text: 'Cluster summary',
icon: 'percona-cluster',
url: `${config.appSubUrl}/d/mongodb-cluster-summary/mongodb-cluster-summary`,
url: `${config.appSubUrl}/d/mongodb-cluster-summary/mongodb-sharded-cluster-summary`,
hideFromTabs: true,
},
{
Expand All @@ -489,6 +489,13 @@ export const PMM_NAV_MONGO: NavModelItem = {
url: `${config.appSubUrl}/d/mongodb-replicaset-summary/mongodb-replset-summary`,
hideFromTabs: true,
},
{
id: 'mongo-router-summary',
text: 'Router summary',
icon: 'percona-cluster',
url: `${config.appSubUrl}/d/mongodb-router-summary/mongodb-router-summary`,
hideFromTabs: true,
},
],
},
{
Expand All @@ -499,17 +506,24 @@ export const PMM_NAV_MONGO: NavModelItem = {
hideFromTabs: true,
},
{
id: 'mongo-mmap-details',
text: 'MMAPv1',
id: 'mondo-wiredtiger-details',
text: 'WiredTiger',
icon: 'sitemap',
url: `${config.appSubUrl}/d/mongodb-wiredtiger/mongodb-wiredtiger-details`,
hideFromTabs: true,
},
{
id: 'mongo-collections-overview',
text: 'Collections',
icon: 'sitemap',
url: `${config.appSubUrl}/d/mongodb-mmapv1/mongodb-mmapv1-details`,
url: `${config.appSubUrl}/d/mongodb-collections-overview/mongodb-collections-overview`,
hideFromTabs: true,
},
{
id: 'mondo-wiredtiger-details',
text: 'WiredTiger',
id: 'mongo-oplog-details',
text: 'Oplog',
icon: 'sitemap',
url: `${config.appSubUrl}/d/mongodb-wiredtiger/mongodb-wiredtiger-details`,
url: `${config.appSubUrl}/d/mongodb-oplog-details/mongodb-oplog-details`,
hideFromTabs: true,
},
],
Expand Down

0 comments on commit d0b8fba

Please sign in to comment.