-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathconfig.toml
42 lines (33 loc) · 897 Bytes
/
config.toml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[MySQL]
mysql_host = ""
mysql_port = 3306
mysql_username = ""
mysql_password = ""
# hosted_in_aws_rds: Optional.
#
# Uses "CALL mysql.rds_kill()" instead of "kill" command.
# Useful in RDS databases or replica where
# "mysql_username" may not have privilege to use "kill"
hosted_in_aws_rds = false
# db: Optional.
#
# If provided, filter out long running
# queries from other databases
db = ""
[ssh_tunnel]
use_ssh_tunnel = false
ssh_host = ""
ssh_port = 22
ssh_username = ""
ssh_password = ""
# ssh_private_key takes priority over ssh_password
# if both are provided
ssh_private_key = ""
# ssh_key_passphrase: Optional.
ssh_key_passphrase = ""
[long_running_query]
# Default is 10 seconds.
# kill-mysql-query will only list running queries
# those are being executed for more than or equal to
# this value.
timeout_second = 10