1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
# Connection string for MySQL Router REST API - Required
MYSQLROUTER_EXPORTER_URL=''
# MySQL Router service name
MYSQLROUTER_EXPORTER_SERVICE_NAME=''
# MySQL Router REST API username
MYSQLROUTER_EXPORTER_USER=''
# MySQL Router REST API password
MYSQLROUTER_EXPORTER_PASS=''
# MySQL Router TLS CA cert location
MYSQLROUTER_TLS_CACERT_PATH=''
# MySQL Router TLS cert location
MYSQLROUTER_TLS_CERT_PATH=''
# MySQL Router TLS key location
MYSQLROUTER_TLS_KEY_PATH=''
# Set the additional command-line arguments to pass to the server.
# Due to shell escaping, to pass backslashes for regexes, you need to double
# them (\\d for \d). If running under systemd, you need to double them again
# (\\\\d to mean \d), and escape newlines too.
ARGS=''
|