Skip to content
Draft
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
5 changes: 5 additions & 0 deletions ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
deps:
- name: pmm
branch: PMM-10461-fix-turn-off-absolute-redirect-nginx
url: https://github.com/percona/pmm

2 changes: 1 addition & 1 deletion sources/grafana/src/github.com/grafana/grafana
Submodule grafana updated 23 files
+8 −19 public/app/core/components/AppChrome/MegaMenu/utils.ts
+1 −9 public/app/percona/add-instance/components/AddRemoteInstance/FormParts/AdditionalOptions/AdditionalOptions.tsx
+0 −1 public/app/percona/add-instance/components/AddRemoteInstance/FormParts/FormParts.messages.ts
+4 −6 public/app/percona/add-instance/components/AddRemoteInstance/FormParts/FormParts.test.tsx
+2 −0 public/app/percona/check/components/AllChecksTab/AllChecksTab.tsx
+9 −0 public/app/percona/check/components/CheckInfoAlert/CheckInfoAlert.messages.ts
+15 −0 public/app/percona/check/components/CheckInfoAlert/CheckInfoAlert.styles.ts
+100 −0 public/app/percona/check/components/CheckInfoAlert/CheckInfoAlert.test.tsx
+50 −0 public/app/percona/check/components/CheckInfoAlert/CheckInfoAlert.tsx
+2 −0 public/app/percona/check/components/FailedChecksTab/FailedChecksTab.tsx
+0 −3 public/app/percona/inventory/Inventory.messages.ts
+8 −9 public/app/percona/inventory/Inventory.types.ts
+0 −1 public/app/percona/inventory/Tabs/Agents.constants.ts
+2 −11 public/app/percona/inventory/Tabs/Agents.utils.ts
+1 −1 public/app/percona/inventory/Tabs/Nodes.tsx
+0 −73 public/app/percona/inventory/Tabs/Services.utils.test.ts
+6 −23 public/app/percona/inventory/Tabs/Services.utils.ts
+1 −1 public/app/percona/inventory/Tabs/Services/ServicesTable.tsx
+2 −15 public/app/percona/inventory/components/StatusLink/StatusLink.styles.ts
+1 −1 public/app/percona/inventory/components/StatusLink/StatusLink.tsx
+1 −3 public/app/percona/inventory/components/StatusLink/StatusLink.types.ts
+9 −3 public/app/percona/shared/components/PerconaBootstrapper/PerconaNavigation/PerconaNavigation.constants.ts
+0 −1 public/app/percona/shared/services/services/Services.types.ts
Submodule node_exporter updated 2 files
+8 −8 go.mod
+16 −16 go.sum
2 changes: 1 addition & 1 deletion sources/pmm-ui-tests/src/github.com/percona/pmm-ui-tests
Submodule pmm-ui-tests updated 50 files
+0 −1 cli/test-setup/docker-compose-scrape-intervals.yml
+1 −1 cli/tests/generic.spec.ts
+4 −38 cli/tests/pmm-client-docker.spec.ts
+19 −0 cli/tests/pmm-server-docker-generic.spec.ts
+1 −1 cli/tests/pmm-server-only.spec.ts
+2 −1 cli/tests/unregister.spec.ts
+1 −2 codeceptConfigHelper.js
+2 −2 docker-compose-external-pg-ssl.yml
+1 −3 pr.codecept.js
+4 −4 tests/configuration/verifyPMMInventory_test.js
+0 −0 tests/dashboards/pages/DashboardPanelMenu.js
+0 −0 tests/dashboards/pages/homeDashboard.js
+0 −84 tests/dashboards/pages/mongodb/mongodbInstancesCompareDashboard.js
+0 −0 tests/dashboards/pages/mongodbPBMDetailsDashboard.js
+8 −0 tests/dashboards/pages/mongodbShardedClusterSummary.js
+0 −0 tests/dashboards/pages/pmmHealthDashboard.js
+0 −0 tests/dashboards/pages/postgresqlCheckpointDashboard.js
+0 −0 tests/dashboards/pages/postgresqlInstanceOverviewDashboard.js
+0 −0 tests/dashboards/pages/postgresqlInstanceSummaryDashboard.js
+0 −0 tests/dashboards/pages/postgresqlInstancesOverviewExtendedDashboard.js
+0 −0 tests/dashboards/pages/postgresqlPatroniDashboard.js
+0 −0 tests/dashboards/pages/postgresqlReplicationOverviewDashboard.js
+0 −0 tests/dashboards/pages/postgresqlTopQueriesDashboard.js
+0 −0 tests/dashboards/pages/searchDashboardsModal.js
+3 −30 tests/dashboards/verifyMongodbDashboards_test.js
+0 −13 tests/dashboards/verifyMysqlDashboards_test.js
+0 −130 tests/fixtures/remoteInstancesFixture.js
+0 −12 tests/helper/constants.js
+15 −0 tests/ia/ruleTemplates_test.js
+9 −91 tests/pages/api/addInstanceAPI.js
+1 −19 tests/pages/api/inventoryAPI.js
+0 −7 tests/pages/components/queryAnalytics/queryAnalyticsQueryDetails.js
+41 −17 tests/pages/dashboardPage.js
+0 −48 tests/pages/dashboards/mongodb/mongodbShardedClusterSummary.js
+0 −58 tests/pages/dashboards/mysql/mySQLMyRocksDetailsDashboard.js
+1 −0 tests/pages/leftNavMenu.js
+6 −9 tests/pages/remoteInstancesPage.js
+0 −42 tests/qa-integration/pmm_pgsm_integration_test.js
+0 −3 tests/remoteInstances/remoteInstancesHelper.js
+12 −24 tests/upgrade/advisorsAlerting_test.js
+1 −1 tests/upgrade/annotationsPrometheus_test.js
+2 −2 tests/upgrade/customPassword_test.js
+90 −44 tests/upgrade/externalService_test.js
+2 −2 tests/upgrade/settingsMetrics_test.js
+2 −3 tests/verifyAWSRDSMySQLInstance_test.js
+2 −2 tests/verifyAWSRDSPostgreSQLInstance_test.js
+1 −1 tests/verifyAuroraPostgreSQLRemoteInstance_test.js
+1 −18 tests/verifyPTSummaryPanels_test.js
+2 −41 tests/verifyRemoteInstances_test.js
+5 −8 tests/verifyTLSMySQLRemoteInstance_test.js
2 changes: 1 addition & 1 deletion sources/pmm/src/github.com/percona/pmm
Submodule pmm updated 567 files
Submodule proxysql_exporter updated 2 files
+22 −24 go.mod
+46 −54 go.sum
Loading