Skip to content

Commit b5d5ff5

Browse files
authored
Update monitor versions in deps scripts (#3394)
Updates pgMonitor and postgres-exporter version in dep scripts. Issue: [sc-15707]
1 parent 3951ab8 commit b5d5ff5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

bin/get-deps.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515

1616
echo "Getting project dependencies..."
1717
BINDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
18-
POSTGRES_EXPORTER_VERSION=0.8.0
18+
POSTGRES_EXPORTER_VERSION=0.10.1
1919

2020
# Download Postgres Exporter, only required to build the Crunchy Postgres Exporter container
21-
wget -O $PGOROOT/postgres_exporter.tar.gz https://github.com/wrouesnel/postgres_exporter/releases/download/v${POSTGRES_EXPORTER_VERSION?}/postgres_exporter_v${POSTGRES_EXPORTER_VERSION?}_linux-amd64.tar.gz
21+
wget -O $PGOROOT/postgres_exporter.tar.gz https://github.com/prometheus-community/postgres_exporter/releases/download/v${POSTGRES_EXPORTER_VERSION?}/postgres_exporter-${POSTGRES_EXPORTER_VERSION?}.linux-amd64.tar.gz
2222

2323
# pgMonitor Setup
2424
source $BINDIR/get-pgmonitor.sh

bin/get-pgmonitor.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# limitations under the License.
1515

1616
echo "Getting pgMonitor..."
17-
PGMONITOR_COMMIT='6eb120a38a0eefb059d5b9abc24159733870aa72'
17+
PGMONITOR_COMMIT='v4.7'
1818

1919
# pgMonitor Setup
2020
if [[ -d ${PGOROOT?}/tools/pgmonitor ]]

docs/content/architecture/monitoring.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ stack is made up of several open source components:
3232

3333
- [pgMonitor](https://github.com/CrunchyData/pgmonitor), which provides the core
3434
of the monitoring infrastructure including the following components:
35-
- [postgres_exporter](https://github.com/CrunchyData/pgmonitor/tree/master/exporter/postgres),
35+
- [postgres_exporter](https://github.com/CrunchyData/pgmonitor/tree/main/postgres_exporter),
3636
which provides queries used to collect metrics information about a PostgreSQL
3737
instance.
3838
- [Prometheus](https://github.com/prometheus/prometheus), a time-series

hack/update-pgmonitor-installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
directory=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
2020

2121
# The pgMonitor tag to use to refresh the current monitoring installer
22-
pgmonitor_tag=v4.6-RC1
22+
pgmonitor_tag=v4.7
2323

2424
# Set the directory for the monitoring Kustomize installer
2525
pgo_examples_monitoring_dir="${directory}/../../postgres-operator-examples/kustomize/monitoring"

0 commit comments

Comments
 (0)