Updated config examples.
This commit is contained in:
parent
02f412a42e
commit
0effe7f3c8
3 changed files with 4 additions and 8 deletions
20
config_examples/mysql_config.json
Normal file
20
config_examples/mysql_config.json
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"connection_details": {
|
||||
"engine": "mysql",
|
||||
"host": "the-sql-host",
|
||||
"port": 3306,
|
||||
"user": "your_user",
|
||||
"password": "your_password",
|
||||
"schema": "comprea"
|
||||
},
|
||||
"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'))"
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue