Lines Matching full:mysql
3 # dbslower Trace MySQL and PostgreSQL queries slower than a threshold.
6 # {mysql,postgres}
12 # 1) USDT probes, which means it needs MySQL and PostgreSQL built with
15 # PATH_TO_BINARY parameter. (At the moment only MySQL support)
18 # all MySQL or PostgreSQL database processes and uses USDT probes.
36 dbslower mysql -p 480 -m 30 # trace MySQL queries slower than 30ms
37 dbslower mysql -p 480 -v # trace MySQL queries & print the BPF program
38 dbslower mysql -x $(which mysqld) # trace MySQL queries with uprobes
46 parser.add_argument("db", choices=["mysql", "postgres"],
62 if args.db == "mysql":
97 MySQL clears query packet before uretprobe call - so copy query in advance
175 if mode.startswith("MYSQL"):
185 if args.db == "mysql":
222 if mode.startswith("MYSQL"):