* Add a mode to test all metric queries * Add a script to run query tests against different versions of PostgeSQL * Add Docker elements for query testing * Switch to using a --config flag when specifying the config file * Fix some metric queries * Allow the agent address to be configured * Allow the sslmode connection parameter to be configured
17 lines
342 B
YAML
17 lines
342 B
YAML
---
|
|
|
|
# Bind to all interfaces so we can submit requests from outside the test container
|
|
address: 0.0.0.0
|
|
|
|
# We always just connect to the db container
|
|
dbhost: db
|
|
dbport: 5432
|
|
dbuser: postgres
|
|
|
|
# Allow some insecure SSL parameters for the 9.2 test
|
|
ssl_ciphers: DEFAULT@SECLEVEL=1
|
|
|
|
# Pull in the standard metrics
|
|
include:
|
|
- pgmon-metrics.yml
|