-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'PMM-2.0' into PMM-12757-environment-summary-error
- Loading branch information
Showing
16 changed files
with
84 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.41.1 | ||
2.41.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
pyaml==23.9.5 | ||
GitPython==3.1.40 | ||
PyGithub==1.59.1 | ||
pyaml==23.12.0 | ||
GitPython==3.1.42 | ||
PyGithub==2.2.0 |
Submodule grafana-dashboards
updated
63 files
Submodule grafana
updated
from c7a425 to fc39d5
2 changes: 1 addition & 1 deletion
2
sources/mongodb_exporter/src/github.com/percona/mongodb_exporter
Submodule mongodb_exporter
updated
32 files
+1 −1 | .github/workflows/go.yml | |
+1 −1 | .github/workflows/lint.yml | |
+1 −1 | .github/workflows/release.yml | |
+1 −1 | Makefile | |
+16 −1 | README.md | |
+1 −0 | REFERENCE.md | |
+55 −36 | docker-compose.yml | |
+18 −2 | docker/scripts/init-shard.sh | |
+29 −13 | docker/scripts/setup.sh | |
+11 −15 | exporter/collstats_collector.go | |
+49 −4 | exporter/common.go | |
+43 −6 | exporter/common_test.go | |
+3 −3 | exporter/diagnostic_data_collector.go | |
+99 −48 | exporter/diagnostic_data_collector_test.go | |
+11 −6 | exporter/exporter.go | |
+13 −6 | exporter/indexstats_collector.go | |
+189 −0 | exporter/shards_collector.go | |
+69 −0 | exporter/shards_collector_test.go | |
+6 −17 | exporter/topology_info.go | |
+17 −15 | exporter/topology_info_test.go | |
+70 −20 | exporter/v1_compatibility.go | |
+77 −15 | exporter/v1_compatibility_test.go | |
+4 −4 | go.mod | |
+8 −13 | go.sum | |
+4 −3 | internal/proto/proto.go | |
+13 −7 | internal/proto/replstatus.go | |
+14 −4 | internal/tu/testutils.go | |
+17 −5 | internal/util/util.go | |
+33 −9 | main.go | |
+19 −0 | main_test.go | |
+84 −75 | tools/go.mod | |
+188 −247 | tools/go.sum |
Submodule mysqld_exporter
updated
5 files
+1 −1 | .promu.yml | |
+13 −12 | go.mod | |
+27 −44 | go.sum | |
+166 −122 | tools/go.mod | |
+376 −2,127 | tools/go.sum |
Submodule node_exporter
updated
13 files
+1 −0 | .github/CODEOWNERS | |
+6 −3 | .github/workflows/golangci-lint.yml | |
+66 −0 | .github/workflows/main.yml | |
+1 −1 | CHANGELOG.md | |
+1 −1 | collector/btrfs_linux.go | |
+1 −1 | collector/supervisord.go | |
+16 −15 | go.mod | |
+36 −55 | go.sum | |
+14 −1 | percona/tests/upstream_update/env_prepare_test.go | |
+13 −0 | percona/tests/upstream_update/metrics_test.go | |
+13 −0 | percona/tests/upstream_update/performance_test.go | |
+13 −0 | percona/tests/upstream_update/utils_test.go | |
+2 −0 | scripts/codespell_ignore.txt |
Submodule pmm-qa
updated
23 files
Submodule pmm-ui-tests
updated
42 files
2 changes: 1 addition & 1 deletion
2
sources/postgres_exporter/src/github.com/percona/postgres_exporter
Submodule postgres_exporter
updated
8 files
+3 −8 | .github/workflows/go.yml | |
+2 −2 | .github/workflows/golangci-lint.yml | |
+2 −0 | cmd/postgres_exporter/queries.go | |
+1 −1 | collector/pg_wal.go | |
+9 −9 | go.mod | |
+18 −18 | go.sum | |
+88 −81 | tools/go.mod | |
+197 −2,536 | tools/go.sum |