Brendan Gregg | 9c1f362 | 2016-02-14 23:14:12 -0800 | [diff] [blame] | 1 | #!/usr/bin/python |
| 2 | # @lint-avoid-python-3-compatibility-imports |
| 3 | # |
| 4 | # zfsdist Summarize ZFS operation latency. |
| 5 | # For Linux, uses BCC, eBPF. |
| 6 | # |
| 7 | # USAGE: zfsdist [-h] [-T] [-m] [-p PID] [interval] [count] |
| 8 | # |
| 9 | # Copyright 2016 Netflix, Inc. |
| 10 | # Licensed under the Apache License, Version 2.0 (the "License") |
| 11 | # |
| 12 | # 14-Feb-2016 Brendan Gregg Created this. |
| 13 | |
| 14 | from __future__ import print_function |
| 15 | from bcc import BPF |
| 16 | from time import sleep, strftime |
| 17 | import argparse |
| 18 | |
| 19 | # arguments |
| 20 | examples = """examples: |
| 21 | ./zfsdist # show operation latency as a histogram |
| 22 | ./zfsdist -p 181 # trace PID 181 only |
| 23 | ./zfsdist 1 10 # print 1 second summaries, 10 times |
| 24 | ./zfsdist -m 5 # 5s summaries, milliseconds |
| 25 | """ |
| 26 | parser = argparse.ArgumentParser( |
| 27 | description="Summarize ZFS operation latency", |
| 28 | formatter_class=argparse.RawDescriptionHelpFormatter, |
| 29 | epilog=examples) |
| 30 | parser.add_argument("-T", "--notimestamp", action="store_true", |
| 31 | help="don't include timestamp on interval output") |
| 32 | parser.add_argument("-m", "--milliseconds", action="store_true", |
| 33 | help="output in milliseconds") |
| 34 | parser.add_argument("-p", "--pid", |
| 35 | help="trace this PID only") |
| 36 | parser.add_argument("interval", nargs="?", |
| 37 | help="output interval, in seconds") |
| 38 | parser.add_argument("count", nargs="?", default=99999999, |
| 39 | help="number of outputs") |
| 40 | args = parser.parse_args() |
| 41 | pid = args.pid |
| 42 | countdown = int(args.count) |
| 43 | if args.milliseconds: |
| 44 | factor = 1000000 |
| 45 | label = "msecs" |
| 46 | else: |
| 47 | factor = 1000 |
| 48 | label = "usecs" |
| 49 | if args.interval and int(args.interval) == 0: |
| 50 | print("ERROR: interval 0. Exiting.") |
| 51 | exit() |
| 52 | debug = 0 |
| 53 | |
| 54 | # define BPF program |
| 55 | bpf_text = """ |
| 56 | #include <uapi/linux/ptrace.h> |
| 57 | #include <linux/fs.h> |
| 58 | #include <linux/sched.h> |
| 59 | |
| 60 | #define OP_NAME_LEN 8 |
| 61 | typedef struct dist_key { |
| 62 | char op[OP_NAME_LEN]; |
| 63 | u64 slot; |
| 64 | } dist_key_t; |
| 65 | BPF_HASH(start, u32); |
| 66 | BPF_HISTOGRAM(dist, dist_key_t); |
| 67 | |
| 68 | // time operation |
| 69 | int trace_entry(struct pt_regs *ctx) |
| 70 | { |
| 71 | u32 pid = bpf_get_current_pid_tgid(); |
| 72 | if (FILTER_PID) |
| 73 | return 0; |
| 74 | u64 ts = bpf_ktime_get_ns(); |
| 75 | start.update(&pid, &ts); |
| 76 | return 0; |
| 77 | } |
| 78 | |
| 79 | static int trace_return(struct pt_regs *ctx, const char *op) |
| 80 | { |
| 81 | u64 *tsp; |
| 82 | u32 pid = bpf_get_current_pid_tgid(); |
| 83 | |
| 84 | // fetch timestamp and calculate delta |
| 85 | tsp = start.lookup(&pid); |
| 86 | if (tsp == 0) { |
| 87 | return 0; // missed start or filtered |
| 88 | } |
| 89 | u64 delta = (bpf_ktime_get_ns() - *tsp) / FACTOR; |
| 90 | |
| 91 | // store as histogram |
| 92 | dist_key_t key = {.slot = bpf_log2l(delta)}; |
| 93 | __builtin_memcpy(&key.op, op, sizeof(key.op)); |
| 94 | dist.increment(key); |
| 95 | |
| 96 | start.delete(&pid); |
| 97 | return 0; |
| 98 | } |
| 99 | |
| 100 | int trace_read_return(struct pt_regs *ctx) |
| 101 | { |
| 102 | char *op = "read"; |
| 103 | return trace_return(ctx, op); |
| 104 | } |
| 105 | |
| 106 | int trace_write_return(struct pt_regs *ctx) |
| 107 | { |
| 108 | char *op = "write"; |
| 109 | return trace_return(ctx, op); |
| 110 | } |
| 111 | |
| 112 | int trace_open_return(struct pt_regs *ctx) |
| 113 | { |
| 114 | char *op = "open"; |
| 115 | return trace_return(ctx, op); |
| 116 | } |
| 117 | |
| 118 | int trace_fsync_return(struct pt_regs *ctx) |
| 119 | { |
| 120 | char *op = "fsync"; |
| 121 | return trace_return(ctx, op); |
| 122 | } |
| 123 | """ |
| 124 | bpf_text = bpf_text.replace('FACTOR', str(factor)) |
| 125 | if args.pid: |
| 126 | bpf_text = bpf_text.replace('FILTER_PID', 'pid != %s' % pid) |
| 127 | else: |
| 128 | bpf_text = bpf_text.replace('FILTER_PID', '0') |
| 129 | if debug: |
| 130 | print(bpf_text) |
| 131 | |
| 132 | # load BPF program |
| 133 | b = BPF(text=bpf_text) |
| 134 | |
| 135 | # common file functions |
Marcin Skarbek | 4f444a5 | 2017-08-28 17:39:50 +0200 | [diff] [blame^] | 136 | if BPF.get_kprobe_functions('zpl_iter'): |
| 137 | b.attach_kprobe(event="zpl_iter_read", fn_name="trace_entry") |
| 138 | b.attach_kprobe(event="zpl_iter_write", fn_name="trace_entry") |
| 139 | elif BPF.get_kprobe_functions('zpl_aio'): |
| 140 | b.attach_kprobe(event="zpl_aio_read", fn_name="trace_entry") |
| 141 | b.attach_kprobe(event="zpl_aio_write", fn_name="trace_entry") |
| 142 | else: |
| 143 | b.attach_kprobe(event="zpl_read", fn_name="trace_entry") |
| 144 | b.attach_kprobe(event="zpl_write", fn_name="trace_entry") |
Brendan Gregg | 9c1f362 | 2016-02-14 23:14:12 -0800 | [diff] [blame] | 145 | b.attach_kprobe(event="zpl_open", fn_name="trace_entry") |
| 146 | b.attach_kprobe(event="zpl_fsync", fn_name="trace_entry") |
Marcin Skarbek | 4f444a5 | 2017-08-28 17:39:50 +0200 | [diff] [blame^] | 147 | if BPF.get_kprobe_functions('zpl_iter'): |
| 148 | b.attach_kretprobe(event="zpl_iter_read", fn_name="trace_read_return") |
| 149 | b.attach_kretprobe(event="zpl_iter_write", fn_name="trace_write_return") |
| 150 | elif BPF.get_kprobe_functions('zpl_aio'): |
| 151 | b.attach_kretprobe(event="zpl_aio_read", fn_name="trace_read_return") |
| 152 | b.attach_kretprobe(event="zpl_aio_write", fn_name="trace_write_return") |
| 153 | else: |
| 154 | b.attach_kretprobe(event="zpl_read", fn_name="trace_read_return") |
| 155 | b.attach_kretprobe(event="zpl_write", fn_name="trace_write_return") |
Brendan Gregg | 9c1f362 | 2016-02-14 23:14:12 -0800 | [diff] [blame] | 156 | b.attach_kretprobe(event="zpl_open", fn_name="trace_open_return") |
| 157 | b.attach_kretprobe(event="zpl_fsync", fn_name="trace_fsync_return") |
| 158 | |
| 159 | print("Tracing ZFS operation latency... Hit Ctrl-C to end.") |
| 160 | |
| 161 | # output |
| 162 | exiting = 0 |
| 163 | dist = b.get_table("dist") |
| 164 | while (1): |
| 165 | try: |
| 166 | if args.interval: |
| 167 | sleep(int(args.interval)) |
| 168 | else: |
| 169 | sleep(99999999) |
| 170 | except KeyboardInterrupt: |
| 171 | exiting = 1 |
| 172 | |
| 173 | print() |
| 174 | if args.interval and (not args.notimestamp): |
| 175 | print(strftime("%H:%M:%S:")) |
| 176 | |
| 177 | dist.print_log2_hist(label, "operation") |
| 178 | dist.clear() |
| 179 | |
| 180 | countdown -= 1 |
| 181 | if exiting or countdown == 0: |
| 182 | exit() |