Examples of configurations to make things easier.

This commit is contained in:
Pablo Martin 2022-07-21 18:35:34 +02:00
parent 1bc6306cf2
commit c1792ef245
4 changed files with 79 additions and 8 deletions

View file

@ -0,0 +1,22 @@
{
"connection_details": {
"engine": "mysql",
"host": "the-sql-host",
"port": 3306,
"user": "your_user",
"password": "your_password",
"schema": "comprea",
"ssh_tunneling": {
"use_tunnel": false
},
"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'))"
}
]
}