Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Commit b93247c

Browse files
[+] add pgwatch2-scalefield Docker image (#732)
--------- Co-authored-by: Pavlo Golub <[email protected]>
1 parent 9b962af commit b93247c

File tree

6 files changed

+104
-1
lines changed

6 files changed

+104
-1
lines changed

.github/workflows/docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: true
2323
matrix:
24-
image: ['-postgres', '-daemon', '-db-bootstrapper', '-webui']
24+
image: ['-postgres', '-daemon', '-db-bootstrapper', '-webui', '-scalefield']
2525
runs-on: ubuntu-latest
2626
steps:
2727

build-docker-scalefield.sh

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
docker build --no-cache --build-arg GIT_TIME=`git show -s --format=%cI HEAD` --build-arg GIT_HASH=`git show -s --format=%H HEAD` -t cybertec/pgwatch2-scalefield:latest -f docker/Dockerfile-scalefield .

docker-launcher-scalefield.sh

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
export USER=${DATA_SOURCE_USER:-postgres}
3+
export PASSWORD=${DATA_SOURCE_PASS:-postgres}
4+
export NAME=${DATA_SOURCE_URI:-localhost}
5+
export CLUSTERNAME=${DATA_SOURCE_CLUSTER:-localhost}
6+
export CUSTOMER=${PG_EXPORTER_CONSTANT_LABEL_CUSTOMER:-customer}
7+
export CLUSTER_NAME=${PG_EXPORTER_CONSTANT_LABEL_CLUSTER_NAME:-cluster_name}
8+
export SUPPORT_PLAN=${PG_EXPORTER_CONSTANT_LABEL_SUPPORT_PLAN:-support_plan}
9+
10+
cat /pgwatch2/config/scalefield.template | sed "s/%USER%/$USER/;s/%PASSWORD%/$PASSWORD/;s/%NAME%/$NAME/;s/%CUSTOMER%/$CUSTOMER/;s/%CLUSTER_NAME%/$CLUSTER_NAME/;s/%SUPPORT_PLAN%/$SUPPORT_PLAN/" > /pgwatch2/config/scalefield.yaml
11+
12+
/pgwatch2/metrics/00_helpers/rollout_helper.py --mode single-db --host "$CLUSTERNAME" --dbname postgres --user "$USER" --password "$PASSWORD" --monitoring-user "$USER" --confirm --metrics-path /pgwatch2/metrics/00_helpers/ --helpers get_load_average,get_psutil_cpu,get_psutil_disk_io_total,get_psutil_disk,get_psutil_mem --excluded-helpers ""
13+
14+
exec /pgwatch2/pgwatch2 -c /pgwatch2/config/scalefield.yaml --adhoc-create-helpers=true --prometheus-port=9189 --datastore=prometheus

docker/Dockerfile-scalefield

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
FROM golang:1.21
2+
3+
# For showing Git version via 'pgwatch2 --version'
4+
ARG GIT_HASH
5+
ARG GIT_TIME
6+
ENV GIT_HASH=${GIT_HASH}
7+
ENV GIT_TIME=${GIT_TIME}
8+
9+
ADD pgwatch2 /pgwatch2
10+
RUN cd /pgwatch2 && bash build_gatherer.sh
11+
12+
13+
FROM ubuntu:22.04
14+
15+
RUN apt-get -q update && apt-get -qy install wget git python3 python3-psycopg2 python3-yaml && apt autoremove -y && mkdir /pgwatch2
16+
17+
ADD pgwatch2/metrics /pgwatch2/metrics
18+
ADD pgwatch2/config /pgwatch2/config
19+
ADD docker-launcher-scalefield.sh /pgwatch2/entrypoint.sh
20+
RUN chmod +x /pgwatch2/entrypoint.sh
21+
22+
# Copy over the compiled gatherer
23+
COPY --from=0 /pgwatch2/pgwatch2 /pgwatch2
24+
25+
RUN chgrp -R 0 /pgwatch2 \
26+
&& chmod -R g=u /pgwatch2
27+
28+
# pgwatch2 internal status endpoint
29+
EXPOSE 8081
30+
# Prometheus metrics scraping port
31+
EXPOSE 9189
32+
33+
USER 10001
34+
35+
ENTRYPOINT ["/pgwatch2/entrypoint.sh"]

pgwatch2/config/scalefield.template

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
- unique_name: %NAME%
2+
dbtype: postgres
3+
host: 127.0.0.1
4+
dbname: postgres
5+
user: %USER%
6+
password: %PASSWORD%
7+
sslmode: require # supported options: disable, require, verify-ca, verify-full
8+
stmt_timeout: 5 # in seconds
9+
is_superuser: true
10+
preset_metrics: remotedba
11+
custom_metrics: # if both preset and custom are specified, custom wins
12+
preset_metrics_standby: # optional metrics configuration for standby / replica state, v1.8.1+
13+
custom_metrics_standby:
14+
dbname_include_pattern: # regex to filter databases to actually monitor for the "continuous" modes
15+
dbname_exclude_pattern:
16+
is_enabled: true
17+
custom_tags:
18+
support_plan: %SUPPORT_PLAN%
19+
customer: %CUSTOMER%
20+
cluster_name: %CLUSTER_NAME%
21+
group: default # just for logical grouping of DB hosts or for "sharding", i.e. splitting the workload between many gatherer daemons
22+
sslrootcert: ''
23+
sslcert: ''
24+
sslkey: ''

pgwatch2/metrics/preset-configs.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -350,3 +350,31 @@
350350
table_stats: 300
351351
wal: 60
352352
wal_receiver: 120
353+
354+
- name: remotedba
355+
description: Metrics used for monitoring of Remote-DBA Databases
356+
metrics:
357+
kpi: 120
358+
wal: 60
359+
locks: 60
360+
db_size: 300
361+
archiver: 60
362+
backends: 60
363+
bgwriter: 60
364+
cpu_load: 60
365+
db_stats: 60
366+
settings: 7200
367+
wal_size: 300
368+
locks_mode: 60
369+
index_stats: 900
370+
replication: 120
371+
sproc_stats: 180
372+
table_stats: 300
373+
wal_receiver: 120
374+
change_events: 300
375+
table_io_stats: 600
376+
sequence_health: 3600
377+
replication_slots: 120
378+
psutil_cpu: 120
379+
psutil_mem: 120
380+
psutil_disk: 120

0 commit comments

Comments
 (0)