-
Notifications
You must be signed in to change notification settings - Fork 20
/
nfssvrtop
executable file
·523 lines (482 loc) · 15.3 KB
/
nfssvrtop
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
#!/usr/bin/ksh
#
# nfsvsvrtop - display top NFS v3 & v4 I/O events on a server.
#
# This is measuring the response time between an incoming NFS operation
# and its response. In general, this measures the server's view of how
# quickly it can respond to requests. By default, the list shows responses
# to each client.
#
# Top-level fields:
# load 1 min load average
# read total KB read during sample
# swrite total KB sync writes during sample
# awrite total KB async writes during sample
#
# The following per-client and "all" clients fields are shown
# Ver NFS version (3 or 4)
# Client IP addr of client
# NFSOPS NFS operations per second
# Reads Read operations per second
# SWrites Sync write operations per second
# AWrites Async write operations per second
# Commits Commits per second
# Rd_bw Read KB/sec
# SWr_bw Sync write KB/sec
# AWr_bw Async write KB/sec
# Rd_t Average read time in microseconds
# SWr_t Average sync write time in microseconds
# AWr_t Average async write time in microseconds
# Com_t Average commit time in microseconds
# Align% Percentage of read/write operations that have offset aligned to
# blocksize (default=4096 bytes)
#
# Note: NFSv4 compound operations are not measured, per se, but they are
# counted in the total operations count.
#
# Note: dtrace doesn't do floating point. A seemingly zero response or
# count can result due to integer division.
#
#
# INSPIRATION: top(1) by William LeFebvre and iotop by Brendan Gregg
#
# Copyright 2011, Nexenta Systems, Inc. All rights reserved.
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only
# (the "License"). You may not use this file except in compliance
# with the License.
#
# You can obtain a copy of the license at Docs/cddl1.txt
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# CDDL HEADER END
#
# Author: [email protected]
#
# Revision:
# 1.8 29-Nov-2012
#
# TODO: running count of nfsd threads (done efficiently)
# TODO: mount point filter
PATH=/usr/sbin:/usr/bin
##############################
# check to see if the NFS server module is loaded
# if not, then the dtrace probes will fail ungracefully
if [ "$(uname -s)" = "SunOS" ]; then
modinfo | awk '{print $6}' | grep -q nfssrv
if [ $? != 0 ]; then
echo "error: NFS server module is not loaded, are you serving NFS?"
exit 1
fi
fi
##############################
# --- Process Arguments ---
#
### default variables
opt_blocksize=4096 # blocksize for alignment measurements
opt_client=0 # set if -c option set
opt_clear=1 # set if screen to be cleared
opt_json=0 # set if output is JSON
opt_top=0 # set if list trimmed to top
top=0 # number of lines trimmed
opt_vers=0 # set if NFS version restricted
vers=3 # version of NFS to restrict
interval=10 # default interval
count=-1 # number of intervals to show
### process options
while getopts b:c:Cjn:t: name
do
case $name in
b) opt_blocksize=$OPTARG ;;
c) opt_client=1; client_IP=$OPTARG ;;
C) opt_clear=0 ;;
j) opt_json=1 ;;
n) opt_vers=1; vers=$OPTARG ;;
t) opt_top=1; top=$OPTARG ;;
h|?) cat <<END >&2
USAGE: nfssvrtop [-Cj] [-b blocksize] [-c client_IP] [-n vers] [-t top]
[interval [count]]
-b blocksize # alignment blocksize (default=4096)
-c client_IP # trace for this client only
-C # don't clear the screen
-j # print output in JSON format
-n vers # show only NFS version
-t top # print top number of entries only
examples:
nfssvrtop # default output, 10 second samples
nfssvrtop -b 1024 # check alignment on 1KB boundary
nfssvrtop 1 # 1 second samples
nfssvrtop -n 4 # only show NFSv4 traffic
nfssvrtop -C 60 # 60 second samples, do not clear screen
nfssvrtop -t 20 # print top 20 lines only
nfssvrtop 5 12 # print 12 x 5 second samples
END
exit 1
esac
done
shift $(($OPTIND - 1))
### option logic
if [ ! -z "$1" ]; then
interval=$1; shift
fi
if [ ! -z "$1" ]; then
count=$1; shift
fi
if [ $opt_clear = 1 ]; then
clearstr=$(clear)
else
clearstr=""
fi
#################################
# --- Main Program, DTrace ---
#
/usr/sbin/dtrace -Cn '
/*
* Command line arguments
*/
inline int OPT_blocksize = '$opt_blocksize';
inline int OPT_client = '$opt_client';
inline int OPT_clear = '$opt_clear';
inline int OPT_top = '$opt_top';
inline int OPT_json = '$opt_json';
inline int OPT_vers = '$opt_vers';
inline int INTERVAL = '$interval';
inline int COUNTER = '$count';
inline int TOP = '$top';
inline string CLIENT = "'$client_IP'";
inline int VERS = '$vers';
inline string CLEAR = "'$clearstr'";
#pragma D option quiet
/*
* increase dynvarsize if you get "dynamic variable drops"
*/
#pragma D option dynvarsize=12m
/*
* Print header
*/
dtrace:::BEGIN
{
/* starting values */
counts = COUNTER;
secs = INTERVAL;
total_read_b = 0;
total_swrite_b = 0;
total_awrite_b = 0;
OPT_json ? 1 : printf("Tracing... Please wait.\n");
}
/*
* Filter as needed, based on starts
*/
nfsv3:nfssrv::op-access-start,
nfsv3:nfssrv::op-create-start,
nfsv3:nfssrv::op-commit-start,
nfsv3:nfssrv::op-fsinfo-start,
nfsv3:nfssrv::op-fsstat-start,
nfsv3:nfssrv::op-getattr-start,
nfsv3:nfssrv::op-link-start,
nfsv3:nfssrv::op-lookup-start,
nfsv3:nfssrv::op-mkdir-start,
nfsv3:nfssrv::op-mknod-start,
nfsv3:nfssrv::op-null-start,
nfsv3:nfssrv::op-pathconf-start,
nfsv3:nfssrv::op-read-start,
nfsv3:nfssrv::op-readdir-start,
nfsv3:nfssrv::op-readdirplus-start,
nfsv3:nfssrv::op-readlink-start,
nfsv3:nfssrv::op-remove-start,
nfsv3:nfssrv::op-rename-start,
nfsv3:nfssrv::op-rmdir-start,
nfsv3:nfssrv::op-setattr-start,
nfsv3:nfssrv::op-symlink-start,
nfsv3:nfssrv::op-write-start
/OPT_client == 0 || CLIENT == args[0]->ci_remote/
{
self->vers = "3";
@c_nfsops[self->vers, args[0]->ci_remote] = count();
OPT_client == 0 ? @c_nfsops[self->vers, "all"] = count() : 1;
}
nfsv4:nfssrv::cb-recall-start,
nfsv4:nfssrv::compound-start,
nfsv4:nfssrv::null-start,
nfsv4:nfssrv::op-access-start,
nfsv4:nfssrv::op-close-start,
nfsv4:nfssrv::op-commit-start,
nfsv4:nfssrv::op-create-start,
nfsv4:nfssrv::op-delegpurge-start,
nfsv4:nfssrv::op-delegreturn-start,
nfsv4:nfssrv::op-getattr-start,
nfsv4:nfssrv::op-getfh-start,
nfsv4:nfssrv::op-link-start,
nfsv4:nfssrv::op-lock-start,
nfsv4:nfssrv::op-lockt-start,
nfsv4:nfssrv::op-locku-start,
nfsv4:nfssrv::op-lookup-start,
nfsv4:nfssrv::op-lookupp-start,
nfsv4:nfssrv::op-nverify-start,
nfsv4:nfssrv::op-open-confirm-start,
nfsv4:nfssrv::op-open-downgrade-start,
nfsv4:nfssrv::op-open-start,
nfsv4:nfssrv::op-openattr-start,
nfsv4:nfssrv::op-putfh-start,
nfsv4:nfssrv::op-putpubfh-start,
nfsv4:nfssrv::op-putrootfh-start,
nfsv4:nfssrv::op-read-start,
nfsv4:nfssrv::op-readdir-start,
nfsv4:nfssrv::op-readlink-start,
nfsv4:nfssrv::op-release-lockowner-start,
nfsv4:nfssrv::op-remove-start,
nfsv4:nfssrv::op-rename-start,
nfsv4:nfssrv::op-renew-start,
nfsv4:nfssrv::op-restorefh-start,
nfsv4:nfssrv::op-savefh-start,
nfsv4:nfssrv::op-secinfo-start,
nfsv4:nfssrv::op-setattr-start,
nfsv4:nfssrv::op-setclientid-confirm-start,
nfsv4:nfssrv::op-setclientid-start,
nfsv4:nfssrv::op-verify-start,
nfsv4:nfssrv::op-write-start
/OPT_client == 0 || CLIENT == args[0]->ci_remote/
{
self->vers = "4";
@c_nfsops[self->vers, args[0]->ci_remote] = count();
OPT_client == 0 ? @c_nfsops[self->vers, "all"] = count() : 1;
}
/* measure response time for commits, reads, and writes */
nfsv3:nfssrv::op-commit-start,
nfsv3:nfssrv::op-read-start,
nfsv3:nfssrv::op-write-start,
nfsv4:nfssrv::op-commit-start,
nfsv4:nfssrv::op-read-start,
nfsv4:nfssrv::op-write-start
/OPT_client == 0 || CLIENT == args[0]->ci_remote/
{
self->startts = timestamp;
}
/*
* commit
*/
nfsv3:nfssrv::op-commit-start,
nfsv4:nfssrv::op-commit-start
/self->startts/
{
@c_commit_client[self->vers, args[0]->ci_remote] = count();
OPT_client == 0 ? @c_commit_client[self->vers, "all"] = count() : 1;
}
nfsv3:nfssrv::op-commit-done,
nfsv4:nfssrv::op-commit-done
/self->startts/
{
t = timestamp - self->startts;
@avgtime_commit[self->vers, args[0]->ci_remote] = avg(t);
OPT_client == 0 ? @avgtime_commit[self->vers, "all"] = avg(t) : 1;
self->startts = 0;
}
/*
* read
*/
nfsv3:nfssrv::op-read-start,
nfsv4:nfssrv::op-read-start
/self->startts/
{
@c_read_client[self->vers, args[0]->ci_remote] = count();
OPT_client == 0 ? @c_read_client[self->vers, "all"] = count() : 1;
@read_b[self->vers, args[0]->ci_remote] = sum(args[2]->count);
OPT_client == 0 ? @read_b[self->vers, "all"] = sum(args[2]->count) : 1;
total_read_b += args[2]->count;
@avg_aligned[self->vers, args[0]->ci_remote] =
avg((args[2]->offset % OPT_blocksize) ? 0 : 100);
@avg_aligned[self->vers, "all"] =
avg((args[2]->offset % OPT_blocksize) ? 0 : 100);
}
nfsv3:nfssrv::op-read-done,
nfsv4:nfssrv::op-read-done
/self->startts/
{
t = timestamp - self->startts;
@avgtime_read[self->vers, args[0]->ci_remote] = avg(t);
OPT_client == 0 ? @avgtime_read[self->vers, "all"] = avg(t) : 1;
self->startts = 0;
}
/*
* write (sync)
*/
nfsv3:nfssrv::op-write-start,
nfsv4:nfssrv::op-write-start
/self->startts/
{
@avg_aligned[self->vers, args[0]->ci_remote] =
avg((args[2]->offset % OPT_blocksize) ? 0 : 100);
@avg_aligned[self->vers, "all"] =
avg((args[2]->offset % OPT_blocksize) ? 0 : 100);
}
nfsv3:nfssrv::op-write-start
/self->startts && args[2]->stable/
{
self->issync = 1;
data_len = args[2]->data.data_len;
@c_swrite_client[self->vers, args[0]->ci_remote] = count();
OPT_client == 0 ? @c_swrite_client[self->vers, "all"] = count() : 1;
@swrite_b[self->vers, args[0]->ci_remote] = sum(data_len);
OPT_client == 0 ? @swrite_b[self->vers, "all"] = sum(data_len) : 1;
total_swrite_b += data_len;
}
nfsv4:nfssrv::op-write-start
/self->startts && args[2]->stable/
{
self->issync = 1;
data_len = args[2]->data_len;
@c_swrite_client[self->vers, args[0]->ci_remote] = count();
OPT_client == 0 ? @c_swrite_client[self->vers, "all"] = count() : 1;
@swrite_b[self->vers, args[0]->ci_remote] = sum(data_len);
OPT_client == 0 ? @swrite_b[self->vers, "all"] = sum(data_len) : 1;
total_swrite_b += data_len;
}
nfsv3:nfssrv::op-write-done,
nfsv4:nfssrv::op-write-done
/self->startts && self->issync/
{
t = timestamp - self->startts;
@avgtime_swrite[self->vers, args[0]->ci_remote] = avg(t);
OPT_client == 0 ? @avgtime_swrite[self->vers, "all"] = avg(t) : 1;
self->startts = 0;
}
/*
* write (async)
*/
nfsv3:nfssrv::op-write-start
/self->startts && !args[2]->stable/
{
self->issync = 0;
data_len = args[2]->data.data_len;
@c_awrite_client[self->vers, args[0]->ci_remote] = count();
OPT_client == 0 ? @c_awrite_client[self->vers, "all"] = count() : 1;
@awrite_b[self->vers, args[0]->ci_remote] = sum(data_len);
OPT_client == 0 ? @awrite_b[self->vers, "all"] = sum(data_len) : 1;
total_awrite_b += data_len;
}
nfsv4:nfssrv::op-write-start
/self->startts && !args[2]->stable/
{
self->issync = 0;
data_len = args[2]->data_len;
@c_awrite_client[self->vers, args[0]->ci_remote] = count();
OPT_client == 0 ? @c_awrite_client[self->vers, "all"] = count() : 1;
@awrite_b[self->vers, args[0]->ci_remote] = sum(data_len);
OPT_client == 0 ? @awrite_b[self->vers, "all"] = sum(data_len) : 1;
total_awrite_b += data_len;
}
nfsv3:nfssrv::op-write-done,
nfsv4:nfssrv::op-write-done
/self->startts && !self->issync/
{
t = timestamp - self->startts;
@avgtime_awrite[self->vers, args[0]->ci_remote] = avg(t);
OPT_client == 0 ? @avgtime_awrite[self->vers, "all"] = avg(t) : 1;
self->startts = 0;
}
/*
* timer
*/
profile:::tick-1sec
{
secs--;
}
/*
* Print report
*/
profile:::tick-1sec
/secs == 0/
{
/* fetch 1 min load average */
self->load1a = `hp_avenrun[0] / 65536;
self->load1b = ((`hp_avenrun[0] % 65536) * 100) / 65536;
/* convert counters to Kbytes */
total_read_b /= 1024;
total_swrite_b /= 1024;
total_awrite_b /= 1024;
/* normalize to seconds giving a rate */
/* todo: this should be measured, not based on the INTERVAL */
normalize(@c_nfsops, INTERVAL);
normalize(@c_read_client, INTERVAL);
normalize(@c_swrite_client, INTERVAL);
normalize(@c_awrite_client, INTERVAL);
normalize(@c_commit_client, INTERVAL);
/* normalize to KB per second */
normalize(@read_b, 1024 * INTERVAL);
normalize(@awrite_b, 1024 * INTERVAL);
normalize(@swrite_b, 1024 * INTERVAL);
/* normalize average to microseconds */
normalize(@avgtime_read, 1000);
normalize(@avgtime_swrite, 1000);
normalize(@avgtime_awrite, 1000);
normalize(@avgtime_commit, 1000);
/* print status */
OPT_clear && !OPT_json ? printf("%s", CLEAR) : 1;
OPT_json ?
printf("{ \"collector\": \"nfssvrtop\", \"time\": \"%Y\", \"timestamp\": %d, \"interval\": %d, \"load\": %d.%02d, \"read_KB_int\": %d, \"sync_write_KB_int\": %d, \"async_write_KB_int\": %d, \"clientdata\": [",
walltimestamp, walltimestamp, INTERVAL,
self->load1a, self->load1b,
total_read_b, total_swrite_b, total_awrite_b)
:
printf("%Y, load: %d.%02d, read: %-8d KB, swrite: %-8d KB, awrite: %-8d KB\n",
walltimestamp, self->load1a, self->load1b,
total_read_b, total_swrite_b, total_awrite_b);
/* print headers */
OPT_json ? 1 :
printf("%s\t%-15s\t%7s\t%7s\t%7s\t%7s\t%7s\t%7s\t%7s\t%7s\t%7s\t%7s\t%7s\t%7s\t%7s\n",
"Ver", "Client", "NFSOPS",
"Reads", "SWrites", "AWrites", "Commits",
"Rd_bw", "SWr_bw", "AWr_bw",
"Rd_t", "SWr_t", "AWr_t", "Com_t", "Align%");
/* truncate to top lines if needed */
OPT_top ? trunc(@c_nfsops, TOP) : 1;
OPT_json ?
printa("{\"version\": \"%s\", \"address\": \"%s\", \"NFSOPS\": %@d, \"reads\": %@d, \"sync_writes\": %@d, \"async_writes\": %@d, \"commits\": %@d, \"read_bw\": %@d, \"sync_write_bw\": %@d, \"async_write_bw\": %@d, \"avg_read_t\": %@d, \"avg_sync_write_t\": %@d, \"avg_async_write_t\": %@d, \"avg_commit_t\": %@d, \"aligned_pct\": %@d },",
@c_nfsops, @c_read_client, @c_swrite_client, @c_awrite_client,
@c_commit_client, @read_b, @swrite_b, @awrite_b,
@avgtime_read, @avgtime_swrite, @avgtime_awrite,
@avgtime_commit, @avg_aligned)
:
printa("%s\t%-15s\t%7@d\t%7@d\t%7@d\t%7@d\t%7@d\t%7@d\t%7@d\t%7@d\t%7@d\t%7@d\t%7@d\t%7@d\t%7@d\n",
@c_nfsops, @c_read_client, @c_swrite_client, @c_awrite_client,
@c_commit_client, @read_b, @swrite_b, @awrite_b,
@avgtime_read, @avgtime_swrite, @avgtime_awrite,
@avgtime_commit, @avg_aligned);
OPT_json ? printf("{}]}\n") : 1;
/* clear data */
trunc(@c_nfsops); trunc(@c_read_client); trunc(@c_swrite_client);
trunc(@c_awrite_client); trunc(@c_commit_client);
trunc(@read_b); trunc(@awrite_b); trunc(@swrite_b);
trunc(@avgtime_read); trunc(@avgtime_swrite); trunc(@avgtime_awrite);
trunc(@avgtime_commit); trunc(@avg_aligned);
total_read_b = 0;
total_swrite_b = 0;
total_awrite_b = 0;
secs = INTERVAL;
counts--;
}
/*
* end of program
*/
profile:::tick-1sec
/counts == 0/
{
exit(0);
}
/*
* clean up when interrupted
*/
dtrace:::END
{
trunc(@c_nfsops); trunc(@c_read_client); trunc(@c_swrite_client);
trunc(@c_awrite_client); trunc(@c_commit_client);
trunc(@read_b); trunc(@awrite_b); trunc(@swrite_b);
trunc(@avgtime_read); trunc(@avgtime_swrite); trunc(@avgtime_awrite);
trunc(@avgtime_commit); trunc(@avg_aligned);
}
'