Skip to content

Commit e2df41f

Browse files
authored
Fix queries for awsrds (prometheus-community#370)
* excluding rolname 'rdsadmin' in pg_stat_statements * notes on using postgres-exporter with AWS:RDS
1 parent 77d4293 commit e2df41f

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

README-RDS.md

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Using Postgres-Exporter with AWS:RDS
2+
3+
### When using postgres-exporter with Amazon Web Services' RDS, the
4+
rolname "rdsadmin" and datname "rdsadmin" must be excluded.
5+
6+
I had success running docker container 'wrouesnel/postgres_exporter:latest'
7+
with queries.yaml as the PG_EXPORTER_EXTEND_QUERY_PATH. errors
8+
mentioned in issue#335 appeared and I had to modify the
9+
'pg_stat_statements' query with the following:
10+
`WHERE t2.rolname != 'rdsadmin'`
11+
12+
Running postgres-exporter in a container like so:
13+
```
14+
DBNAME='postgres'
15+
PGUSER='postgres'
16+
PGPASS='psqlpasswd123'
17+
PGHOST='name.blahblah.us-east-1.rds.amazonaws.com'
18+
docker run --rm --detach \
19+
--name "postgresql_exporter_rds" \
20+
--publish 9187:9187 \
21+
--volume=/etc/prometheus/postgresql-exporter/queries.yaml:/var/lib/postgresql/queries.yaml \
22+
-e DATA_SOURCE_NAME="postgresql://${PGUSER}:${PGPASS}@${PGHOST}:5432/${DBNAME}?sslmode=disable" \
23+
-e PG_EXPORTER_EXCLUDE_DATABASES=rdsadmin \
24+
-e PG_EXPORTER_DISABLE_DEFAULT_METRICS=true \
25+
-e PG_EXPORTER_DISABLE_SETTINGS_METRICS=true \
26+
-e PG_EXPORTER_EXTEND_QUERY_PATH='/var/lib/postgresql/queries.yaml' \
27+
wrouesnel/postgres_exporter
28+
```
29+
30+
### Expected changes to RDS:
31+
+ see stackoverflow notes
32+
(https://stackoverflow.com/questions/43926499/amazon-postgres-rds-pg-stat-statements-not-loaded#43931885)
33+
+ you must also use a specific RDS parameter_group that includes the following:
34+
```
35+
shared_preload_libraries = "pg_stat_statements,pg_hint_plan"
36+
```
37+
+ lastly, you must reboot the RDS instance.
38+

queries.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ pg_database:
134134
description: "Disk space used by the database"
135135

136136
pg_stat_statements:
137-
query: "SELECT t2.rolname, t3.datname, queryid, calls, total_time / 1000 as total_time_seconds, min_time / 1000 as min_time_seconds, max_time / 1000 as max_time_seconds, mean_time / 1000 as mean_time_seconds, stddev_time / 1000 as stddev_time_seconds, rows, shared_blks_hit, shared_blks_read, shared_blks_dirtied, shared_blks_written, local_blks_hit, local_blks_read, local_blks_dirtied, local_blks_written, temp_blks_read, temp_blks_written, blk_read_time / 1000 as blk_read_time_seconds, blk_write_time / 1000 as blk_write_time_seconds FROM pg_stat_statements t1 join pg_roles t2 on (t1.userid=t2.oid) join pg_database t3 on (t1.dbid=t3.oid)"
137+
query: "SELECT t2.rolname, t3.datname, queryid, calls, total_time / 1000 as total_time_seconds, min_time / 1000 as min_time_seconds, max_time / 1000 as max_time_seconds, mean_time / 1000 as mean_time_seconds, stddev_time / 1000 as stddev_time_seconds, rows, shared_blks_hit, shared_blks_read, shared_blks_dirtied, shared_blks_written, local_blks_hit, local_blks_read, local_blks_dirtied, local_blks_written, temp_blks_read, temp_blks_written, blk_read_time / 1000 as blk_read_time_seconds, blk_write_time / 1000 as blk_write_time_seconds FROM pg_stat_statements t1 JOIN pg_roles t2 ON (t1.userid=t2.oid) JOIN pg_database t3 ON (t1.dbid=t3.oid) WHERE t2.rolname != 'rdsadmin'"
138138
master: true
139139
metrics:
140140
- rolname:

0 commit comments

Comments
 (0)