Skip to content

Commit

Permalink
PMM-8043-return-service-name FB
Browse files Browse the repository at this point in the history
  • Loading branch information
palash25 committed Jun 9, 2021
1 parent 347dd90 commit f8f585a
Show file tree
Hide file tree
Showing 18 changed files with 19 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .gitmodules
@@ -1,7 +1,7 @@
[submodule "pmm"]
path = sources/pmm/src/github.com/percona/pmm
url = https://github.com/percona/pmm
branch = PMM-2.0
branch = PMM-8043-return-service-name


# PMM Client
Expand Down Expand Up @@ -57,7 +57,7 @@
[submodule "pmm-managed"]
path = sources/pmm-managed/src/github.com/percona/pmm-managed
url = https://github.com/percona/pmm-managed
branch = PMM-2.0
branch = PMM-8043-return-service-name
[submodule "dbaas-controller"]
path = sources/dbaas-controller/src/github.com/percona-platform/dbaas-controller
url = https://github.com/percona-platform/dbaas-controller
Expand Down
2 changes: 1 addition & 1 deletion sources/grafana/src/github.com/grafana/grafana
Submodule mysqld_exporter updated 635 files
2 changes: 1 addition & 1 deletion sources/percona-images
2 changes: 1 addition & 1 deletion sources/pmm-admin/src/github.com/percona/pmm-admin
Submodule pmm-admin updated 1 files
+10 −8 commands/list.go
2 changes: 1 addition & 1 deletion sources/pmm-managed/src/github.com/percona/pmm-managed
Submodule pmm-managed updated 40 files
+1 −4 go.mod
+9 −6 go.sum
+8 −0 main.go
+6 −6 models/agent_helpers.go
+6 −0 models/agent_helpers_test.go
+9 −5 models/agent_model.go
+58 −4 models/artifact_helpers.go
+64 −22 models/artifact_helpers_test.go
+5 −0 models/artifact_model.go
+9 −0 models/database.go
+7 −0 models/job_models.go
+15 −1 models/location_helpers.go
+67 −1 models/location_helpers_test.go
+32 −3 models/restore_history_helpers.go
+14 −4 models/restore_history_helpers_test.go
+31 −7 models/service_helpers.go
+1 −1 models/service_helpers_test.go
+2 −0 packages.dot
+50 −2 services/agents/jobs.go
+62 −16 services/agents/registry.go
+49 −71 services/checks/checks.go
+20 −18 services/checks/registry.go
+58 −56 services/checks/registry_test.go
+12 −0 services/inventory/agents_test.go
+9 −8 services/management/backup/artifacts_service.go
+91 −69 services/management/backup/backups_service.go
+11 −3 services/management/backup/deps.go
+18 −4 services/management/backup/mock_jobs_service_test.go
+1 −1 services/management/backup/restore_history_service.go
+6 −5 services/management/checks.go
+11 −6 services/management/checks_test.go
+2 −1 services/management/deps.go
+6 −4 services/management/mock_checks_service_test.go
+30 −4 services/management/rds_test.go
+1 −1 services/management/service.go
+1 −1 services/management/service_test.go
+1 −1 services/victoriametrics/scrape_configs.go
+6 −6 services/victoriametrics/victoriametrics_test.go
+1 −1 testdata/victoriametrics/promscrape.yml
+44 −0 utils/types.go
2 changes: 1 addition & 1 deletion sources/pmm-server
2 changes: 1 addition & 1 deletion sources/pmm-ui-tests/src/github.com/percona/pmm-ui-tests
Submodule pmm-ui-tests updated 45 files
+1 −1 .eslintrc
+27 −0 .github/workflows/ci.yml
+3 −1 codeceptConfigHelper.js
+1 −1 docker-compose.yml
+3 −0 linksHelper.js
+43 −0 package-lock.json
+4 −1 package.json
+17 −0 tests/DbaaS/api/dbaasAPI.js
+11 −13 tests/DbaaS/pages/dbaasManageVersionPage.js
+8 −0 tests/DbaaS/verifyDBaaSPXCCluster_test.js
+29 −1 tests/DbaaS/verifyDbaaSMongoDBCluster_test.js
+0 −1 tests/QAN/filters_test.js
+1 −0 tests/QAN/pages/qanFiltersFragment.js
+3 −1 tests/QAN/timerange_test.js
+2 −0 tests/custom_steps.js
+17 −0 tests/helper/grafana_helper.js
+7 −7 tests/ia/alertRules_test.js
+2 −2 tests/ia/common_test.js
+4 −4 tests/ia/notificationChannels_test.js
+1 −0 tests/ia/pages/iaCommonPage.js
+1 −1 tests/ia/pagination_test.js
+6 −6 tests/ia/ruleTemplates_test.js
+14 −0 tests/pages/api/addInstanceAPI.js
+17 −0 tests/pages/api/amiInstanceAPI.js
+25 −0 tests/pages/api/platformAPI.js
+102 −8 tests/pages/api/settingsAPI.js
+20 −12 tests/pages/dashboardPage.js
+121 −0 tests/pages/perconaPlatform.js
+15 −1 tests/pages/pmmSettingsPage.js
+56 −5 tests/pages/remoteInstancesPage.js
+185 −0 tests/platform_test.js
+9 −9 tests/stt/allChecks_test.js
+5 −5 tests/stt/checksExecution_test.js
+1 −3 tests/stt/databaseChecks_test.js
+0 −1 tests/stt/pages/api/securityChecksAPI.js
+8 −8 tests/stt/permissions_test.js
+3 −3 tests/stt/sttSettings_test.js
+38 −24 tests/upgradePMM_test.js
+1 −1 tests/verifyAWSRDSMySQLInstance_test.js
+5 −4 tests/verifyAWSRDSPostgreSQLInstance_test.js
+91 −0 tests/verifyAzureMySQLPostgreSQLRemoteInstance_test.js
+12 −58 tests/verifyPMMSettingsPageElements_test.js
+21 −8 tests/verifyPMMSettingsPageFunctionality_test.js
+26 −0 tests/verifyPTSummaryPanels_test.js
+43 −3 tests/verifyRemoteInstances_test.js
2 changes: 1 addition & 1 deletion sources/pmm-update/src/github.com/percona/pmm-update
2 changes: 1 addition & 1 deletion sources/pmm/src/github.com/percona/pmm
Submodule pmm updated 63 files
+1 −1 .github/CODEOWNERS
+1 −7 .github/CONTRIBUTING.md
+2 −1 .gitignore
+0 −3 .travis.yml
+0 −884 Gopkg.lock
+0 −66 Gopkg.toml
+1 −1 README.md
+34 −21 api/Makefile
+1 −1 api/README.md
+6 −4 api/agentlocalpb/json/agentlocalpb.json
+6 −2 api/agentlocalpb/json/client/agent_local/status_responses.go
+456 −207 api/agentpb/agent.pb.go
+24 −0 api/agentpb/agent.proto
+27 −0 api/agentpb/agent.validator.pb.go
+ api/api.descriptor
+12 −0 api/inventorypb/agent_status.dot
+9 −4 api/inventorypb/agent_status.pb.go
+2 −0 api/inventorypb/agent_status.proto
+6 −2 api/inventorypb/json/client/agents/add_azure_database_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/add_mongo_db_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/add_my_s_q_ld_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/add_node_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/add_postgres_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/add_proxy_sql_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/add_qan_mongo_db_profiler_agent_responses.go
+6 −2 api/inventorypb/json/client/agents/add_qan_my_sql_perf_schema_agent_responses.go
+6 −2 api/inventorypb/json/client/agents/add_qan_my_sql_slowlog_agent_responses.go
+6 −2 api/inventorypb/json/client/agents/add_qan_postgre_sql_pg_stat_monitor_agent_responses.go
+6 −2 api/inventorypb/json/client/agents/add_qan_postgre_sql_pg_statements_agent_responses.go
+6 −2 api/inventorypb/json/client/agents/add_rds_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/change_azure_database_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/change_mongo_db_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/change_my_s_q_ld_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/change_node_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/change_postgres_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/change_proxy_sql_exporter_responses.go
+6 −2 api/inventorypb/json/client/agents/change_qan_mongo_db_profiler_agent_responses.go
+6 −2 api/inventorypb/json/client/agents/change_qan_my_sql_perf_schema_agent_responses.go
+6 −2 api/inventorypb/json/client/agents/change_qan_my_sql_slowlog_agent_responses.go
+6 −2 api/inventorypb/json/client/agents/change_qan_postgre_sql_pg_stat_monitor_agent_responses.go
+6 −2 api/inventorypb/json/client/agents/change_qan_postgre_sql_pg_statements_agent_responses.go
+6 −2 api/inventorypb/json/client/agents/change_rds_exporter_responses.go
+78 −26 api/inventorypb/json/client/agents/get_agent_responses.go
+78 −26 api/inventorypb/json/client/agents/list_agents_responses.go
+150 −100 api/inventorypb/json/inventorypb.json
+113 −103 api/managementpb/checks.pb.go
+1 −0 api/managementpb/checks.proto
+12 −4 api/managementpb/json/client/mongo_db/add_mongo_db_responses.go
+18 −6 api/managementpb/json/client/my_sql/add_my_sql_responses.go
+18 −6 api/managementpb/json/client/postgre_sql/add_postgre_sql_responses.go
+6 −2 api/managementpb/json/client/proxy_sql/add_proxy_sql_responses.go
+30 −10 api/managementpb/json/client/rds/add_rds_responses.go
+3 −0 api/managementpb/json/client/security_checks/get_security_check_results_responses.go
+46 −28 api/managementpb/json/managementpb.json
+1 −9 api/prototool.yaml
+196 −128 api/swagger/swagger-dev.json
+196 −128 api/swagger/swagger.json
+11 −5 get-pmm.sh
+31 −0 go.mod
+399 −0 go.sum
+21 −0 tools/go.mod
+605 −0 tools/go.sum
+17 −0 tools/tools.go
2 changes: 1 addition & 1 deletion sources/qan-api2/src/github.com/percona/qan-api2
Submodule qan-api2 updated 1319 files
2 changes: 1 addition & 1 deletion sources/rds_exporter/src/github.com/percona/rds_exporter
Submodule rds_exporter updated 740 files

0 comments on commit f8f585a

Please sign in to comment.