27 lines
No EOL
706 B
JSON
27 lines
No EOL
706 B
JSON
{
|
|
"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,
|
|
"path_to_key": "G:\\path\\to\\ssh\\key.pem"
|
|
}
|
|
},
|
|
"queries_to_measure": [
|
|
{
|
|
"name": "Fast Smoke Test",
|
|
"query_string": "SELECT 1"
|
|
},
|
|
{
|
|
"name": "Delivered carts on a day",
|
|
"query_string": "select * from comprea.cart c where c.status = 'delivered' and c.date_delivered >= UNIX_TIMESTAMP(date('2022-05-24'))"
|
|
}
|
|
]
|
|
} |