query-performance-gauge/config_examples/mysql_credentials_with_tunnel_config.json

18 lines
455 B
JSON
Raw Normal View History

{
"connection_details": {
"engine": "mysql",
"host": "the-actual-host",
"port": 3306,
"user": "your_user",
"password": "your_password",
"schema": "comprea",
"ssh_tunneling": {
"use_tunnel": true,
"ssh_host": "the_ssh_tunnel_host",
"ssh_username": "the_ssh_tunnel_user",
"ssh_port": 22,
2022-08-19 17:25:34 +02:00
"path_to_key": "G:\\path\\to\\ssh\\key.pem",
"ssh_private_key_password": "my_keys_password"
}
2022-08-22 15:05:54 +02:00
}
}