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
|