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 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562
|
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 4//EN">
<HTML><HEAD>
<TITLE>Administration Guide</TITLE>
<!-- Begin Header Records ========================================== -->
<!-- /tmp/idwt3570/auagd000.scr converted by idb2h R4.2 (359) ID -->
<!-- Workbench Version (AIX) on 2 Oct 2000 at 11:42:14 -->
<META HTTP-EQUIV="updated" CONTENT="Mon, 02 Oct 2000 11:42:13">
<META HTTP-EQUIV="review" CONTENT="Tue, 02 Oct 2001 11:42:13">
<META HTTP-EQUIV="expires" CONTENT="Wed, 02 Oct 2002 11:42:13">
</HEAD><BODY>
<!-- (C) IBM Corporation 2000. All Rights Reserved -->
<BODY bgcolor="ffffff">
<!-- End Header Records ============================================ -->
<A NAME="Top_Of_Page"></A>
<H1>Administration Guide</H1>
<HR><P ALIGN="center"> <A HREF="../index.htm"><IMG SRC="../books.gif" BORDER="0" ALT="[Return to Library]"></A> <A HREF="auagd002.htm#ToC"><IMG SRC="../toc.gif" BORDER="0" ALT="[Contents]"></A> <A HREF="auagd023.htm"><IMG SRC="../prev.gif" BORDER="0" ALT="[Previous Topic]"></A> <A HREF="#Bot_Of_Page"><IMG SRC="../bot.gif" BORDER="0" ALT="[Bottom of Topic]"></A> <A HREF="auagd025.htm"><IMG SRC="../next.gif" BORDER="0" ALT="[Next Topic]"></A> <A HREF="auagd026.htm#HDRINDEX"><IMG SRC="../index.gif" BORDER="0" ALT="[Index]"></A> <P>
<HR><H1><A NAME="HDRWQ617" HREF="auagd002.htm#ToC_706">Appendix C. The afsmonitor Program Statistics</A></H1>
<P>This Appendix lists the statistics you can gather with the
<B>afsmonitor</B> program, grouping them by category and section, and
briefly describing each field, group, and section. For instructions on
using the <B>afsmonitor</B> program, see <A HREF="auagd013.htm#HDRWQ323">Monitoring and Auditing AFS Performance</A>
<A NAME="IDX8186"></A>
<HR><H2><A NAME="HDRWQ618" HREF="auagd002.htm#ToC_707">The Cache Manager Statistics</A></H2>
<A NAME="IDX8187"></A>
<P>Cache Manager statistics fields are classified into the following sections
and groups:
<UL>
<P><LI>PerfStats_section - Performance Statistics Section.
<UL>
<P><LI>PerfStats_group - Performance Statistics Group.
<P><LI>misc_group - Miscellaneous Group.
</UL>
<P><LI>Server_UpDown_section - Server Up/Down Statistics Section.
<UL>
<P><LI>FS_upDown_SC_group - File Server Up/Down Statistics in Same Cell
Group.
<P><LI>FS_upDown_OC_group - File Server Up/Down Statistics in Other Cells
Group.
<P><LI>VL_upDown_SC_group - VL Server Up/Down Statistics in Same Cell
Group.
<P><LI>VL_upDown_OC_group - VL Server Up/Down Statistics in Other Cells
Group.
</UL>
<P><LI>RPCop_section - RPC Operation Measurements Section.
<UL>
<P><LI>FS_RPCopTimes_group - File Server RPC Operation Timings
Group.
<P><LI>FS_RPCopErrors_group - File Server RPC Operation Errors
Group.
<P><LI>FS_RPCopBytes_group - File Server RPC Transfer Timings Group.
<P><LI>CM_RPCopTimes_group - Cache Manager RPC Operation Timings
Group.
</UL>
<P><LI>Auth_Access_section - Authentication and Replicated File Access
Section.
<UL>
<P><LI>Auth_Stats_group - Authentication Information for Cache Manager
Group.
<P><LI>Access_Stats_group - Unreplicated File Access Group.
</UL>
</UL>
<P>All Cache Manager variables categorized under these sections and groups
names are listed below.
<P><H3><A NAME="Header_708" HREF="auagd002.htm#ToC_708">Performance Statistics Section (PerfStats_section)</A></H3>
<P>Performance Statistics Group (PerfStats_group)
<UL>
<P><LI>dlocalAccesses: Number of data accesses to files within local
cell.
<P><LI>vlocalAccesses: Number of stat accesses to files within local
cell.
<P><LI>dremoteAccesses: Number of data accesses to files outside of local
cell.
<P><LI>vremoteAccesses: Number of stat accesses to files outside of local
cell.
<P><LI>cacheNumEntries: Number of cache entries.
<P><LI>cacheBlocksTotal: Number of (1K) blocks configured for cache.
<P><LI>cacheBlocksInUse: Number of cache blocks actively in use.
<P><LI>cacheBlocksOrig: Number of cache blocks at bootup.
<P><LI>cacheMaxDirtyChunks: Maximum number of dirty cache chunks
tolerated.
<P><LI>cacheCurrDirtyChunks: Current number of dirty cache chunks.
<P><LI>dcacheHits: Number of data files found in local cache.
<P><LI>vcacheHits: Number of stat entries found in local cache.
<P><LI>dcacheMisses: Number of data files <B>not</B> found in local
cache.
<P><LI>vcacheMisses: Number of stat entries <B>not</B> found in local
cache.
<P><LI>cacheFlushes: Number of files flushed from cache.
<P><LI>cacheFilesReused: Number of cache files reused.
<P><LI>dcacheXAllocs: Additionally allocated dcaches.
<P><LI>vcacheXAllocs: Additionally allocated vcaches.
<P><LI>bufAlloced: Number of buffers allocated by AFS.
<P><LI>bufHits: Number of pages found on buffer cache.
<P><LI>bufMisses: Number of pages <B>not</B> found on buffer
cache.
<P><LI>bufFlushDirty: Number of cached dirty buffers flushed because all
were busy.
<P><LI>LargeBlocksActive: Number of currently used large free pool
entries.
<P><LI>LargeBlocksAlloced: Number of allocated large free pool
entries.
<P><LI>SmallBlocksActive: Number of currently used small free pool
entries.
<P><LI>SmallBlocksAlloced: Number of allocated used small free pool
entries.
<P><LI>OutStandingMemUsage: Amount of allocated memory.
<P><LI>OutStandingAllocs: Outstanding osi_allocs (no osi_frees yet).
<P><LI>CallBackAlloced: Number of callback structures allocated.
<P><LI>CallBackFlushes: Number of callback flush operations
performed.
<P><LI>srvRecords: Number of servers currently on record.
<P><LI>srvRecordsHWM: Server record high water mark.
<P><LI>srvNumBuckets: Number of server hash chain buckets.
<P><LI>srvMaxChainLength: Maximum server hash chain length.
<P><LI>srvMaxChainLengthHWM: Server hash chain high water mark.
<P><LI>sysName_ID: Sysname ID for host hardware.
</UL>
<P>Miscellaneous Group (misc_group)
<UL>
<P><LI>numPerfCalls: Number of performance calls received.
<P><LI>epoch: Cache Manager epoch time.
<P><LI>numCellsVisible: Number of cells we know about.
<P><LI>numCellsContacted: Number of cells contacted.
</UL>
<P><H3><A NAME="Header_709" HREF="auagd002.htm#ToC_709">Server Up/Down Statistics Section (Server_UpDown_section)</A></H3>
<P>File Server Up/Down Statistics in Same Cell Group (FS_upDown_SC_group)
<P><B>Note:</B> The <I>records</I> referred to in this section
are the internal records kept by the <B>afsmonitor</B> program to track
the processes from which data is being gathered.
<UL>
<P><LI>fs_sc_numTtlRecords: Number of fileserver records, active or
inactive.
<P><LI>fs_sc_numUpRecords: Number of (active) fileserver records currently
marked up.
<P><LI>fs_sc_numDownRecords: Number of (active) fileserver records
currently marked down.
<P><LI>fs_sc_sumOfRecordAges: Sum of fileserver record lifetimes.
<P><LI>fs_sc_ageOfYoungestRecord: Age of youngest fileserver record.
<P><LI>fs_sc_ageOfOldestRecord: Age of oldest fileserver record.
<P><LI>fs_sc_numDowntimeIncidents: Number of (completed) downtime
incidents.
<P><LI>fs_sc_numRecordsNeverDown: Number of fileserver records never marked
down.
<P><LI>fs_sc_maxDowntimesInARecord: Maximum downtimes seen by any
fileserver record.
<P><LI>fs_sc_sumOfDowntimes: Sum of all (completed) downtimes, in
seconds.
<P><LI>fs_sc_shortestDowntime: Shortest downtime, in seconds.
<P><LI>fs_sc_longestDowntime: Longest downtime, in seconds.
<P><LI>fs_sc_down_0_10_min: Down time incidents: 0-10 minutes.
<P><LI>fs_sc_down_10_30_min: Down time incidents: 10-30
minutes.
<P><LI>fs_sc_down_half_1_hr: Down time incidents: 30-60
minutes.
<P><LI>fs_sc_down_1_2_hr: Down time incidents: 1-2 hours.
<P><LI>fs_sc_down_2_4_hr: Down time incidents: 2-4 hours.
<P><LI>fs_sc_down_4_8_hr: Down time incidents: 4-8 hours.
<P><LI>fs_sc_down_more_8_hr: Down time incidents: more than 8
hours.
<P><LI>fs_sc_downDst_0: Down time incidents: 0 times.
<P><LI>fs_sc_downDst_1: Down time incidents: 1 time.
<P><LI>fs_sc_downDst_2_5: Down time incidents: 2-5 times.
<P><LI>fs_sc_downDst_6_10: Down time incidents: 6-10 times.
<P><LI>fs_sc_downDst_10_50: Down time incidents: 10-50 times.
<P><LI>fs_sc_downDst_more_50: Down time incidents: more than 50
times.
</UL>
<P>File Server Up/Down Statistics in Other Cells Group (FS_upDown_OC_group)
<UL>
<P><LI>fs_oc_numTtlRecords: Number of fileserver records, active or
inactive.
<P><LI>fs_oc_numUpRecords: Number of (active) fileserver records currently
marked up.
<P><LI>fs_oc_numDownRecords: Number of (active) fileserver records
currently marked down.
<P><LI>fs_oc_sumOfRecordAges: Sum of server record lifetimes.
<P><LI>fs_oc_ageOfYoungestRecord: Age of youngest fileserver record.
<P><LI>fs_oc_ageOfOldestRecord: Age of oldest fileserver record.
<P><LI>fs_oc_numDowntimeIncidents: Number of (completed) downtime
incidents.
<P><LI>fs_oc_numRecordsNeverDown: Number of fileserver records never marked
down.
<P><LI>fs_oc_maxDowntimesInARecord: Maximum downtimes seen by any
fileserver.
<P><LI>fs_oc_sumOfDowntimes: Sum of all (completed) downtimes, in
seconds.
<P><LI>fs_oc_shortestDowntime: Shortest downtime, in seconds.
<P><LI>fs_oc_longestDowntime: Longest downtime, in seconds.
<P><LI>fs_oc_down_0_10_min: Down time incidents: 0-10 minutes.
<P><LI>fs_oc_down_10_30_min: Down time incidents: 10-30
minutes.
<P><LI>fs_oc_down_half_1_hr: Down time incidents: 30-60
minutes.
<P><LI>fs_oc_down_1_2_hr: Down time incidents: 1-2 hours.
<P><LI>fs_oc_down_2_4_hr: Down time incidents: 2-4 hours.
<P><LI>fs_oc_down_4_8_hr: Down time incidents: 4-8 hours.
<P><LI>fs_oc_down_more_8_hr: Down time incidents: more than 8
hours.
<P><LI>fs_oc_downDst_0: Down time incidents: 0 times.
<P><LI>fs_oc_downDst_1: Down time incidents: 1 time.
<P><LI>fs_oc_downDst_2_5: Down time incidents: 2-5 times.
<P><LI>fs_oc_downDst_6_10: Down time incidents: 6-10 times.
<P><LI>fs_oc_downDst_10_50: Down time incidents: 10-50 times.
<P><LI>fs_oc_downDst_more_50: Down time incidents: more than 50
times.
</UL>
<P>VL Server Up/Down Statistics in Same Cell Group (VL_upDown_SC_group)
<UL>
<P><LI>vl_sc_numTtlRecords: Number of vlserver records, active or
inactive.
<P><LI>vl_sc_numUpRecords: Number of (active) vlserver records currently
marked up.
<P><LI>vl_sc_numDownRecords: Number of (active) vlserver records currently
marked down.
<P><LI>vl_sc_sumOfRecordAges: Sum of vlserver record lifetimes.
<P><LI>vl_sc_ageOfYoungestRecord: Age of youngest vlserver record.
<P><LI>vl_sc_ageOfOldestRecord: Age of oldest vlserver record.
<P><LI>vl_sc_numDowntimeIncidents: Number of (completed) downtime
incidents.
<P><LI>vl_sc_numRecordsNeverDown: Number of vlserver records never marked
down.
<P><LI>vl_sc_maxDowntimesInARecord: Maximum downtimes seen by any vlserver
record.
<P><LI>vl_sc_sumOfDowntimes: Sum of all (completed) downtimes, in
seconds.
<P><LI>vl_sc_shortestDowntime: Shortest downtime, in seconds.
<P><LI>vl_sc_longestDowntime: Longest downtime, in seconds.
<P><LI>vl_sc_down_0_10_min: Down time incidents: 0-10 minutes.
<P><LI>vl_sc_down_10_30_min: Down time incidents: 10-30
minutes.
<P><LI>vl_sc_down_half_1_hr: Down time incidents: 30-60
minutes.
<P><LI>vl_sc_down_1_2_hr: Down time incidents: 1-2 hours.
<P><LI>vl_sc_down_2_4_hr: Down time incidents: 2-4 hours.
<P><LI>vl_sc_down_4_8_hr: Down time incidents: 4-8 hours.
<P><LI>vl_sc_down_more_8_hr: Down time incidents: more than 8
hours.
<P><LI>vl_sc_downDst_0: Down time incidents: 0 times.
<P><LI>vl_sc_downDst_1: Down time incidents: 1 time.
<P><LI>vl_sc_downDst_2_5: Down time incidents: 2-5 times.
<P><LI>vl_sc_downDst_6_10: Down time incidents: 6-10 times.
<P><LI>vl_sc_downDst_10_50: Down time incidents: 10-50 times.
<P><LI>vl_sc_downDst_more_50: Down time incidents: more than 50
times.
</UL>
<P>VL Server Up/Down Statistics in Other Cells Group (VL_upDown_DC_group)
<UL>
<P><LI>vl_oc_numTtlRecords: Number of vlserver records, active or
inactive.
<P><LI>vl_oc_numUpRecords: Number of (active) vlserver records currently
marked up.
<P><LI>vl_oc_numDownRecords: Number of (active) vlserver records currently
marked down.
<P><LI>vl_oc_sumOfRecordAges: Sum of vlserver record lifetimes.
<P><LI>vl_oc_ageOfYoungestRecord: Age of youngest vlserver record.
<P><LI>vl_oc_ageOfOldestRecord: Age of oldest vlserver record.
<P><LI>vl_oc_numDowntimeIncidents: Number of (completed) downtime
incidents.
<P><LI>vl_oc_numRecordsNeverDown: Number of vlserver records never marked
down.
<P><LI>vl_oc_maxDowntimesInARecord: Maximum downtimes seen by any vlserver
record.
<P><LI>vl_oc_sumOfDowntimes: Sum of all (completed) downtimes, in
seconds.
<P><LI>vl_oc_shortestDowntime: Shortest downtime, in seconds.
<P><LI>vl_oc_longestDowntime: Longest downtime, in seconds.
<P><LI>vl_oc_down_0_10_min: Down time incidents: 0-10 minutes.
<P><LI>vl_oc_down_10_30_min: Down time incidents: 10-30
minutes.
<P><LI>vl_oc_down_half_1_hr: Down time incidents: 30-60
minutes.
<P><LI>vl_oc_down_1_2_hr: Down time incidents: 1-2 hours.
<P><LI>vl_oc_down_2_4_hr: Down time incidents: 2-4 hours.
<P><LI>vl_oc_down_4_8_hr: Down time incidents: 4-8 hours.
<P><LI>vl_oc_down_more_8_hr: Down time incidents: more than 8
hours.
<P><LI>vl_oc_downDst_0: Down time incidents: 0 times.
<P><LI>vl_oc_downDst_1: Down time incidents: 1 time.
<P><LI>vl_oc_downDst_2_5: Down time incidents: 2-5 times.
<P><LI>vl_oc_downDst_6_10: Down time incidents: 6-10 times.
<P><LI>vl_oc_downDst_10_50: Down time incidents: 10-50 times.
<P><LI>vl_oc_downDst_more_50: Down time incidents: more than 50
times.
</UL>
<P><H3><A NAME="Header_710" HREF="auagd002.htm#ToC_710">RPC Operation Measurements Section (RPCop_section)</A></H3>
<P>File Server RPC Operation Timings Group (FS_RPCopTimes_group)
<UL>
<P><LI>FetchData_ops: Number of FetchData operations executed.
<P><LI>FetchData_ops_ok: Number of successful FetchData operations.
<P><LI>FetchData_sum: Sum of timings for FetchData operations.
<P><LI>FetchData_sqr: Sum of squares of sample timings for FetchData
operations.
<P><LI>FetchData_min: Minimum execution time observed for FetchData
operations.
<P><LI>FetchData_max: Maximum execution time observed for FetchData
operations.
<P><LI>FetchACL_ops: Number of FetchACL operations executed.
<P><LI>FetchACL_ops_ok: Number of successful FetchACL operations.
<P><LI>FetchACL_sum: Sum of timings for FetchACL operations.
<P><LI>FetchACL_sqr: Sum of squares of sample timings for FetchACL
operations.
<P><LI>FetchACL_min: Minimum execution time observed for FetchACL
operations.
<P><LI>FetchACL_max: Maximum execution time observed for FetchACL
operations.
<P><LI>FetchStatus_ops: Number of FetchStatus operations executed.
<P><LI>FetchStatus_ops_ok: Number of successful FetchStatus
operations.
<P><LI>FetchStatus_sum: Sum of timings for FetchStatus operations.
<P><LI>FetchStatus_sqr: Sum of squares of sample timings for FetchStatus
operations.
<P><LI>FetchStatus_min: Minimum execution time observed for FetchStatus
operations.
<P><LI>FetchStatus_max: Maximum execution time observed for FetchStatus
operations.
<P><LI>StoreData_ops: Number of StoreData operations executed.
<P><LI>StoreData_ops_ok: Number of successful StoreData operations.
<P><LI>StoreData_sum: Sum of timings for StoreData operations.
<P><LI>StoreData_sqr: Sum of squares of sample timings for StoreData
operations.
<P><LI>StoreData_min: Minimum execution time observed for StoreData
operations.
<P><LI>StoreData_max: Maximum execution time observed for StoreData
operations.
<P><LI>StoreACL_ops: Number of StoreACL operations executed.
<P><LI>StoreACL_ops_ok: Number of successful StoreACL operation.
<P><LI>StoreACL_sum: Sum of timings for StoreACL operations.
<P><LI>StoreACL_sqr: Sum of squares of sample timings for StoreACL
operations.
<P><LI>StoreACL_min: Minimum execution time observed for StoreACL
operations.
<P><LI>StoreACL_max: Maximum execution time observed for StoreACL
operations.
<P><LI>StoreStatus_ops: Number of StoreStatus operations executed.
<P><LI>StoreStatus_ops_ok: Number of successful StoreStatus
operations.
<P><LI>StoreStatus_sum: Sum of timings for StoreStatus operations.
<P><LI>StoreStatus_sqr: Sum of squares of sample timings for StoreStatus
operations.
<P><LI>StoreStatus_min: Minimum execution time observed for StoreStatus
operations.
<P><LI>StoreStatus_max: Maximum execution time observed for StoreStatus
operations.
<P><LI>RemoveFile_ops: Number of RemoveFile operations executed.
<P><LI>RemoveFile_ops_ok: Number of successful RemoveFile
operations.
<P><LI>RemoveFile_sum: Sum of timings for RemoveFile operations.
<P><LI>RemoveFile_sqr: Sum of squares of sample timings for RemoveFile
operations.
<P><LI>RemoveFile_min: Minimum execution time observed for RemoveFile
operations.
<P><LI>RemoveFile_max: Maximum execution time observed for RemoveFile
operations.
<P><LI>CreateFile_ops: Number of CreateFile operations executed.
<P><LI>CreateFile_ops_ok: Number of successful CreateFile
operations.
<P><LI>CreateFile_sum: Sum of timings for CreateFile operations.
<P><LI>CreateFile_sqr: Sum of squares of sample timings for CreateFile
operations.
<P><LI>CreateFile_min: Minimum execution time observed for CreateFile
operations.
<P><LI>CreateFile_max: Maximum execution time observed for CreateFile
operations.
<P><LI>Rename_ops: Number of Rename operations executed.
<P><LI>Rename_ops_ok: Number of successful Rename operations.
<P><LI>Rename_sum: Sum of timings for Rename operations.
<P><LI>Rename_sqr: Sum of squares of sample timings for Rename
operations.
<P><LI>Rename_min: Minimum execution time observed for Rename
operations.
<P><LI>Rename_max: Maximum execution time observed for Rename
operations.
<P><LI>Symlink_ops: Number of Symlink operations executed.
<P><LI>Symlink_ops_ok: Number of successful Symlink operations.
<P><LI>Symlink_sum: Sum of timings for Symlink operations.
<P><LI>Symlink_sqr: Sum of squares of sample timings for Symlink
operations.
<P><LI>Symlink_min: Minimum execution time observed for Symlink
operations.
<P><LI>Symlink_max: Maximum execution time observed for Symlink
operations.
<P><LI>Link_ops: Number of Link operations executed.
<P><LI>Link_ops_ok: Number of successful Link operations.
<P><LI>Link_sum: Sum of timings for Link operations.
<P><LI>Link_sqr: Sum of squares of sample timings for Link
operations.
<P><LI>Link_min: Minimum execution time observed for Link
operations.
<P><LI>Link_max: Maximum execution time observed for Link
operations.
<P><LI>MakeDir_ops: Number of MakeDir operations executed.
<P><LI>MakeDir_ops_ok: Number of successful MakeDir operations.
<P><LI>MakeDir_sum: Sum of timings for MakeDir operations.
<P><LI>MakeDir_sqr: Sum of squares of sample timings for MakeDir
operations.
<P><LI>MakeDir_min: Minimum execution time observed for MakeDir
operations.
<P><LI>MakeDir_max: Maximum execution time observed for MakeDir
operations.
<P><LI>RemoveDir_ops: Number of RemoveDir operations executed.
<P><LI>RemoveDir_ops_ok: Number of successful RemoveDir operations.
<P><LI>RemoveDir_sum: Sum of timings for RemoveDir operations.
<P><LI>RemoveDir_sqr: Sum of squares of sample timings for RemoveDir
operations.
<P><LI>RemoveDir_min: Minimum execution time observed for RemoveDir
operations.
<P><LI>RemoveDir_max: Maximum execution time observed for RemoveDir
operations.
<P><LI>SetLock_ops: Number of SetLock operations executed.
<P><LI>SetLock_ops_ok: Number of successful SetLock operations.
<P><LI>SetLock_sum: Sum of timings for SetLock operations.
<P><LI>SetLock_sqr: Sum of squares of sample timings for SetLock
operations.
<P><LI>SetLock_min: Minimum execution time observed for SetLock
operations.
<P><LI>SetLock_max: Maximum execution time observed for SetLock
operations.
<P><LI>ExtendLock_ops: Number of ExtendLock operations executed.
<P><LI>ExtendLock_ops_ok: Number of successful ExtendLock
operations.
<P><LI>ExtendLock_sum: Sum of timings for ExtendLock operations.
<P><LI>ExtendLock_sqr: Sum of squares of sample timings for ExtendLock
operations.
<P><LI>ExtendLock_min: Minimum execution time observed for ExtendLock
operations.
<P><LI>ExtendLock_max: Maximum execution time observed for ExtendLock
operations.
<P><LI>ReleaseLock_ops: Number of ReleaseLock operations executed.
<P><LI>ReleaseLock_ops_ok: Number of successful ReleaseLock
operations.
<P><LI>ReleaseLock_sum: Sum of timings for ReleaseLock operations.
<P><LI>ReleaseLock_sqr: Sum of squares of sample timings for StoreStatus
operations.
<P><LI>ReleaseLock_min: Minimum execution time observed for ReleaseLock
operations.
<P><LI>ReleaseLock_max: Maximum execution time observed for ReleaseLock
operations.
<P><LI>GetStatistics_ops: Number of GetStatistics operations
executed.
<P><LI>GetStatistics_ops_ok: Number of successful GetStatistics
operations.
<P><LI>GetStatistics_sum: Sum of timings for GetStatistics
operations.
<P><LI>GetStatistics_sqr: Sum of squares of sample timings for
GetStatistics operations.
<P><LI>GetStatistics_min: Minimum execution time observed for GetStatistics
operations.
<P><LI>GetStatistics_max: Maximum execution time observed for GetStatistics
operations.
<P><LI>GiveUpCallbacks_ops: Number of GiveUpCallbacks operations
executed.
<P><LI>GiveUpCallbacks_ops_ok: Number of successful GiveUpCallbacks
operations.
<P><LI>GiveUpCallbacks_sum: Sum of timings for GiveUpCallbacks
operations.
<P><LI>GiveUpCallbacks_sqr: Sum of squares of sample timings for
GiveUpCallbacks operations.
<P><LI>GiveUpCallbacks_min: Minimum execution time observed for
GiveUpCallbacks operations.
<P><LI>GiveUpCallbacks_max: Maximum execution time observed for
GiveUpCallbacks operations.
<P><LI>GetVolumeInfo_ops: Number of GetVolumeInfo operations
executed.
<P><LI>GetVolumeInfo_ops_ok: Number of successful GetVolumeInfo
operations.
<P><LI>GetVolumeInfo_sum: Sum of timings for GetVolumeInfo
operations.
<P><LI>GetVolumeInfo_sqr: Sum of squares of sample timings for
GetVolumeInfo operations.
<P><LI>GetVolumeInfo_min: Minimum execution time observed for GetVolumeInfo
operations.
<P><LI>GetVolumeInfo_max: Maximum execution time observed for GetVolumeInfo
operations.
<P><LI>GetVolumeStatus_ops: Number of GetVolumeStatus operations
executed.
<P><LI>GetVolumeStatus_ops_ok: Number of successful GetVolumeStatus
operations.
<P><LI>GetVolumeStatus_sum: Sum of timings for GetVolumeStatus
operations.
<P><LI>GetVolumeStatus_sqr: Sum of squares of sample timings for
GetVolumeStatus operations.
<P><LI>GetVolumeStatus_min: Minimum execution time observed for
GetVolumeStatus operations.
<P><LI>GetVolumeStatus_max: Maximum execution time observed for
GetVolumeStatus operations.
<P><LI>SetVolumeStatus_ops: Number of SetVolumeStatus operations
executed.
<P><LI>SetVolumeStatus_ops_ok: Number of successful SetVolumeStatus
operations.
<P><LI>SetVolumeStatus_sum: Sum of timings for SetVolumeStatus
operations.
<P><LI>SetVolumeStatus_sqr: Sum of squares of sample timings for
SetVolumeStatus operations.
<P><LI>SetVolumeStatus_min: Minimum execution time observed for
SetVolumeStatus operations.
<P><LI>SetVolumeStatus_max: Maximum execution time observed for
SetVolumeStatus operations.
<P><LI>GetRootVolume_ops: Number of GetRootVolume operations
executed.
<P><LI>GetRootVolume_ops_ok: Number of successful GetRootVolume
operations.
<P><LI>GetRootVolume_sum: Sum of timings for GetRootVolume
operations.
<P><LI>GetRootVolume_sqr: Sum of squares of sample timings for
GetRootVolume operations.
<P><LI>GetRootVolume_min: Minimum execution time observed for GetRootVolume
operations.
<P><LI>GetRootVolume_max: Maximum execution time observed for GetRootVolume
operations.
<P><LI>CheckToken_ops: Number of CheckToken operations executed.
<P><LI>CheckToken_ops_ok: Number of successful CheckToken
operations.
<P><LI>CheckToken_sum: Sum of timings for CheckToken operations.
<P><LI>CheckToken_sqr: Sum of squares of sample timings for CheckToken
operations.
<P><LI>CheckToken_min: Minimum execution time observed for CheckToken
operations.
<P><LI>CheckToken_max: Maximum execution time observed for CheckToken
operations.
<P><LI>GetTime_ops: Number of GetTime operations executed.
<P><LI>GetTime_ops_ok: Number of successful GetTime operations.
<P><LI>GetTime_sum: Sum of timings for GetTime operations.
<P><LI>GetTime_sqr: Sum of squares of sample timings for GetTime
operations.
<P><LI>GetTime_min: Minimum execution time observed for GetTime
operations.
<P><LI>GetTime_max: Maximum execution time observed for GetTime
operations.
<P><LI>NGetVolumeInfo_ops: Number of NGetVolumeInfo operations
executed.
<P><LI>NGetVolumeInfo_ops_ok: Number of successful NGetVolumeInfo
operations.
<P><LI>NGetVolumeInfo_sum: Sum of timings for NGetVolumeInfo
operations.
<P><LI>NGetVolumeInfo_sqr: Sum of squares of sample timings for
NGetVolumeInfo operations.
<P><LI>NGetVolumeInfo_min: Minimum execution time observed for
NGetVolumeInfo operations.
<P><LI>NGetVolumeInfo_max: Maximum execution time observed for
NGetVolumeInfo operations.
<P><LI>BulkStatus_ops: Number of BulkStatus operations executed.
<P><LI>BulkStatus_ops_ok: Number of successful BulkStatus
operations.
<P><LI>BulkStatus_sum: Sum of timings for BulkStatus operations.
<P><LI>BulkStatus_sqr: Sum of squares of sample timings for BulkStatus
operations.
<P><LI>BulkStatus_min: Minimum execution time observed for BulkStatus
operations.
<P><LI>BulkStatus_max: Maximum execution time observed for BulkStatus
operations.
<P><LI>XStatsVersion_ops: Number of XStatsVersion operations
executed.
<P><LI>XStatsVersion_ops_ok: Number of successful XStatsVersion
operations.
<P><LI>XStatsVersion_sum: Sum of timings for XStatsVersion
operations.
<P><LI>XStatsVersion_sqr: Sum of squares of sample timings for
XStatsVersion operations.
<P><LI>XStatsVersion_min: Minimum execution time observed for XStatsVersion
operations.
<P><LI>XStatsVersion_max: Maximum execution time observed for XStatsVersion
operations.
<P><LI>GetXStats_ops: Number of GetXStats operations executed.
<P><LI>GetXStats_ops_ok: Number of successful GetXStats operations.
<P><LI>GetXStats_sum: Sum of timings for GetXStats operations.
<P><LI>GetXstats_sqr: Sum of squares of sample timings for GetXStats
operations.
<P><LI>GetXStats_min: Minimum execution time observed for GetXStats
operations.
<P><LI>GetXStats_max: Maximum execution time observed for GetXStats
operations.
</UL>
<P>File Server RPC Operation Errors Group (FS_RPCopErrors_group)
<UL>
<P><LI>FetchData_srv_err: Number of server-down errors during FetchData
operations.
<P><LI>FetchData_net_err: Number of network errors during FetchData
operations.
<P><LI>FetchData_prot_err_err: Number of protection violations during
FetchData operations.
<P><LI>FetchData_vol_err: Number of volume related errors during FetchData
operations.
<P><LI>FetchData_busy_err: Number of volume busy conditions during
FetchData operations.
<P><LI>FetchData_other_err: Number of miscellaneous other errors during
FetchData operations.
<P><LI>FetchACL_srv_err: Number of server-down errors during FetchACL
operations.
<P><LI>FetchACL_net_err: Number of network errors during FetchACL
operations.
<P><LI>FetchACL_prot_err: Number of protection violations during FetchACL
operations.
<P><LI>FetchACL_vol_err: Number of volume related errors during FetchACL
operations.
<P><LI>FetchACL_busy_err: Number of volume busy conditions encountered
during FetchACL operations.
<P><LI>FetchACL_other_err: Number of miscellaneous other errors during
FetchACL operations.
<P><LI>FetchStatus_srv_err: Number of server-down errors during FetchStatus
operations.
<P><LI>FetchStatus_net_err: Number of network errors during FetchStatus
operations.
<P><LI>FetchStatus_prot_err: Number of protection violations during
FetchStatus operations.
<P><LI>FetchStatus_vol_err: Number of volume related errors during
FetchStatus operations.
<P><LI>FetchStatus_busy_err: Number of volume busy conditions encountered
during FetchStatus operations.
<P><LI>FetchStatus_other_err: Number of miscellaneous other errors during
FetchStatus operations.
<P><LI>StoreData_srv_err: Number of server-down errors during StoreData
operations.
<P><LI>StoreData_net_err: Number of network errors during StoreData
operations.
<P><LI>StoreData_prot_err: Number of protection violations during StoreData
operations.
<P><LI>StoreData_vol_err: Number of volume related errors during StoreData
operations.
<P><LI>StoreData_busy_err: Number of volume busy conditions encountered
during StoreData operations.
<P><LI>StoreData_other_err: Number of miscellaneous other errors during
StoreData operations.
<P><LI>StoreACL_srv_err: Number of server-down errors during StoreACL
operations.
<P><LI>StoreACL_net_err: Number of network errors during StoreACL
operations.
<P><LI>StoreACL_prot_err: Number of protection violations during StoreACL
operations.
<P><LI>StoreACL_vol_err: Number of volume related errors during StoreACL
operations.
<P><LI>StoreACL_busy_err: Number of volume busy conditions encountered
during StoreACL operations.
<P><LI>StoreACL_other_err: Number of miscellaneous other errors during
StoreACL operations.
<P><LI>StoreStatus_srv_err: Number of server-down errors during StoreStatus
operations.
<P><LI>StoreStatus_net_err: Number of network errors during StoreStatus
operations.
<P><LI>StoreStatus_prot_err: Number of protection violations during
StoreStatus operations.
<P><LI>StoreStatus_vol_err: Number of volume related errors during
StoreStatus operations.
<P><LI>StoreStatus_busy_err: Number of volume busy conditions encountered
during StoreStatus operations.
<P><LI>StoreStatus_other_err: Number of miscellaneous other errors during
StoreStatus operations.
<P><LI>RemoveFile_srv_err: Number of server-down errors during RemoveFile
operations.
<P><LI>RemoveFile_net_err: Number of network errors during RemoveFile
operations.
<P><LI>RemoveFile_prot_err: Number of protection violations during
RemoveFile operations.
<P><LI>RemoveFile_vol_err: Number of volume related errors during
RemoveFile operations.
<P><LI>RemoveFile_busy_err: Number of volume busy conditions encountered
during RemoveFile operations.
<P><LI>RemoveFile_other_err: Number of miscellaneous other errors during
RemoveFile operations.
<P><LI>CreateFile_srv_err: Number of server-down errors during CreateFile
operations.
<P><LI>CreateFile_net_err: Number of network errors during CreateFile
operations.
<P><LI>CreateFile_prot_err: Number of protection violations during
CreateFile operations.
<P><LI>CreateFile_vol_err: Number of volume related errors during
CreateFile operations.
<P><LI>CreateFile_busy_err: Number of volume busy conditions encountered
during CreateFile operations.
<P><LI>CreateFile_other_err: Number of miscellaneous other errors during
CreateFile operations.
<P><LI>Rename_srv_err: Number of server-down errors during Rename
operations.
<P><LI>Rename_net_err: Number of network errors during Rename
operations.
<P><LI>Rename_prot_err: Number of protection violations during Rename
operations.
<P><LI>Rename_vol_err: Number of volume related errors during Rename
operations.
<P><LI>Rename_busy_err: Number of volume busy conditions encountered during
Rename operations.
<P><LI>Rename_other_err: Number of miscellaneous other errors during Rename
operations.
<P><LI>Symlink_srv_err: Number of server-down errors during Symlink
operations.
<P><LI>Symlink_net_err: Number of network errors during Symlink
operations.
<P><LI>Symlink_prot_err: Number of protection violations during Symlink
operations.
<P><LI>Symlink_vol_err: Number of volume related errors during Symlink
operations.
<P><LI>Symlink_busy_err: Number of volume busy conditions encountered
during Symlink operations.
<P><LI>Symlink_other_err: Number of miscellaneous other errors during
Symlink operations.
<P><LI>Link_srv_err: Number of server-down errors during Link
operations.
<P><LI>Link_net_err: Number of network errors during Link
operations.
<P><LI>Link_prot_err: Number of protection violations during Link
operations.
<P><LI>Link_vol_err: Number of volume related errors during Link
operations.
<P><LI>Link_busy_err: Number of volume busy conditions encountered during
Link operations.
<P><LI>Link_other_err: Number of miscellaneous other errors during Link
operations.
<P><LI>MakeDir_srv_err: Number of server-down errors during MakeDir
operations.
<P><LI>MakeDir_net_err: Number of network errors during MakeDir
operations.
<P><LI>MakeDir_prot_err: Number of protection violations during MakeDir
operations.
<P><LI>MakeDir_vol_err: Number of volume related errors during MakeDir
operations.
<P><LI>MakeDir_busy_err: Number of volume busy conditions encountered
during MakeDir operations.
<P><LI>MakeDir_other_err: Number of miscellaneous other errors during
MakeDir operations.
<P><LI>RemoveDir_srv_err: Number of server-down errors during RemoveDir
operations.
<P><LI>RemoveDir_net_err: Number of network errors during RemoveDir
operations.
<P><LI>RemoveDir_prot_err: Number of protection violations during RemoveDir
operations.
<P><LI>RemoveDir_vol_err: Number of volume related errors during RemoveDir
operations.
<P><LI>RemoveDir_busy_err: Number of volume busy conditions encountered
during RemoveDir operations.
<P><LI>RemoveDir_other_err: Number of miscellaneous other errors during
RemoveDir operations.
<P><LI>SetLock_srv_err: Number of server-down errors during SetLock
operations.
<P><LI>SetLock_net_err: Number of network errors during SetLock
operations.
<P><LI>SetLock_prot_err: Number of protection violations during SetLock
operations.
<P><LI>SetLock_vol_err: Number of volume related errors during SetLock
operations.
<P><LI>SetLock_busy_err: Number of volume busy conditions encountered
during SetLock operations.
<P><LI>SetLock_other_err: Number of miscellaneous other errors during
SetLock operations.
<P><LI>ExtendLock_srv_err: Number of server-down errors during ExtendLock
operations.
<P><LI>ExtendLock_net_err: Number of network errors during ExtendLock
operations.
<P><LI>ExtendLock_prot_err: Number of protection violations during
ExtendLock operations.
<P><LI>ExtendLock_vol_err: Number of volume related errors during
ExtendLock operations.
<P><LI>ExtendLock_busy_err: Number of volume busy conditions encountered
during ExtendLock operations.
<P><LI>ExtendLock_other_err: Number of miscellaneous other errors during
ExtendLock operations.
<P><LI>ReleaseLock_srv_err: Number of server-down errors during ReleaseLock
operations.
<P><LI>ReleaseLock_net_err: Number of network errors during ReleaseLock
operations.
<P><LI>ReleaseLock_prot_err: Number of protection violations during
ReleaseLock operations.
<P><LI>ReleaseLock_vol_err: Number of volume related errors during
ReleaseLock operations.
<P><LI>ReleaseLock_busy_err: Number of volume busy conditions encountered
during ReleaseLock operations.
<P><LI>ReleaseLock_other_err: Number of miscellaneous other errors during
ReleaseLock operations.
<P><LI>GetStatistics_srv_err: Number of server-down errors during
GetStatistics operations.
<P><LI>GetStatistics_net_err: Number of network errors during GetStatistics
operations.
<P><LI>GetStatistics_prot_err: Number of protection violations during
GetStatistics operations.
<P><LI>GetStatistics_vol_err: Number of volume related errors during
GetStatistics operations.
<P><LI>GetStatistics_busy_err: Number of volume busy conditions encountered
during GetStatistics operations.
<P><LI>GetStatistics_other_err: Number of miscellaneous other errors during
GetStatistics operations.
<P><LI>GiveUpCallbacks_srv_err: Number of server-down errors during
GiveUpCallbacks operations.
<P><LI>GiveUpCallbacks_net_err: Number of network errors during
GiveUpCallbacks operations.
<P><LI>GiveUpCallbacks_prot_err: Number of protection violations during
GiveUpCallbacks operations.
<P><LI>GiveUpCallbacks_vol_err: Number of volume related errors during
GiveUpCallbacks operations.
<P><LI>GiveUpCallbacks_busy_err: Number of volume busy conditions
encountered during GiveUpCallbacks operations.
<P><LI>GiveUpCallbacks_other_err: Number of miscellaneous other errors
during GiveUpCallbacks operations.
<P><LI>GetVolumeInfo_srv_err: Number of server-down errors during
GetVolumeInfo operations.
<P><LI>GetVolumeInfo_net_err: Number of network errors during GetVolumeInfo
operations.
<P><LI>GetVolumeInfo_prot_err: Number of protection violations during
GetVolumeInfo operations.
<P><LI>GetVolumeInfo_vol_err: Number of volume related errors during
GetVolumeInfo operations.
<P><LI>GetVolumeInfo_busy_err: Number of volume busy conditions encountered
during GetVolumeInfo operations.
<P><LI>GetVolumeInfo_other_err: Number of miscellaneous other errors during
GetVolumeInfo operations.
<P><LI>GetVolumeStatus_srv_err: Number of server-down errors during
GetVolumeStatus operations.
<P><LI>GetVolumeStatus_net_err: Number of network errors during
GetVolumeStatus operations.
<P><LI>GetVolumeStatus_prot_err: Number of protection violations during
GetVolumeStatus operations.
<P><LI>GetVolumeStatus_vol_err: Number of volume related errors during
GetVolumeStatus operations.
<P><LI>GetVolumeStatus_busy_err: Number of volume busy conditions
encountered during GetVolumeStatus operations.
<P><LI>GetVolumeStatus_other_err: Number of miscellaneous other errors
during GetVolumeStatus operations.
<P><LI>SetVolumeStatus_srv_err : Number of server-down errors during
SetVolumeStatus operations.
<P><LI>SetVolumeStatus_net_err: Number of network errors during
SetVolumeStatus operations.
<P><LI>SetVolumeStatus_prot_err: Number of protection violations during
SetVolumeStatus operations.
<P><LI>SetVolumeStatus_vol_err: Number of volume related errors during
SetVolumeStatus operations.
<P><LI>SetVolumeStatus_busy_err: Number of volume busy conditions
encountered during SetVolumeStatus operations.
<P><LI>SetVolumeStatus_other_err: Number of miscellaneous other errors
during SetVolumeStatus operations.
<P><LI>GetRootVolume_srv_err: Number of server-down errors during
GetRootVolume operations.
<P><LI>GetRootVolume_net_err: Number of network errors during GetRootVolume
operations.
<P><LI>GetRootVolume_prot_err: Number of protection violations during
GetRootVolume operations.
<P><LI>GetRootVolume_vol_err: Number of volume related errors during
GetRootVolume operations.
<P><LI>GetRootVolume_busy_err: Number of volume busy conditions encountered
during GetRootVolume operations.
<P><LI>GetRootVolume_other_err: Number of miscellaneous other errors during
GetRootVolume operations.
<P><LI>CheckToken_srv_err: Number of server-down errors during CheckToken
operations.
<P><LI>CheckToken_net_err: Number of network errors during CheckToken
operations.
<P><LI>CheckToken_prot_err: Number of protection violations during
CheckToken operations.
<P><LI>CheckToken_vol_err: Number of volume related errors during
CheckToken operations.
<P><LI>CheckToken_busy_err: Number of volume busy conditions encountered
during CheckToken operations.
<P><LI>CheckToken_other_err: Number of miscellaneous other errors during
CheckToken operations.
<P><LI>GetTime_srv_err: Number of server-down errors during GetTime
operations.
<P><LI>GetTime_net_err: Number of network errors during GetTime
operations.
<P><LI>GetTime_prot_err: Number of protection violations during GetTime
operations.
<P><LI>GetTime_vol_err: Number of volume related errors during GetTime
operations.
<P><LI>GetTime_busy_err: Number of volume busy conditions encountered
during GetTime operations.
<P><LI>GetTime_other_err: Number of miscellaneous other errors during
GetTime operations.
<P><LI>NGetVolumeInfo_srv_err: Number of server-down errors during
NGetVolumeInfo operations.
<P><LI>NGetVolumeInfo_net_err: Number of network errors during
NGetVolumeInfo operations.
<P><LI>NGetVolumeInfo_prot_err: Number of protection violations during
NGetVolumeInfo operations.
<P><LI>NGetVolumeInfo_vol_err: Number of volume related errors during
NGetVolumeInfo operations.
<P><LI>NGetVolumeInfo_busy_err: Number of volume busy conditions
encountered during NGetVolumeInfo operations.
<P><LI>NGetVolumeInfo_other_err: Number of miscellaneous other errors
during NGetVolumeInfo operations.
<P><LI>BulkStatus_srv_err: Number of server-down errors during BulkStatus
operations.
<P><LI>BulkStatus_net_err: Number of network errors during BulkStatus
operations.
<P><LI>BulkStatus_prot_err: Number of protection violations during
BulkStatus operations.
<P><LI>BulkStatus_vol_err: Number of volume related errors during
BulkStatus operations.
<P><LI>BulkStatus_busy_err: Number of volume busy conditions encountered
during BulkStatus operations.
<P><LI>BulkStatus_other_err: Number of miscellaneous other errors during
BulkStatus operations.
<P><LI>XStatsVersion_srv_err: Number of server-down errors during
XStatsVersion operations.
<P><LI>XStatsVersion_net_err: Number of network errors during XStatsVersion
operations.
<P><LI>XStatsVersion_prot_err: Number of protection violations during
XStatsVersion operations.
<P><LI>XStatsVersion_vol_err: Number of volume related errors during
XStatsVersion operations.
<P><LI>XStatsVersion_busy_err: Number of volume busy conditions encountered
during XStatsVersion operations.
<P><LI>XStatsVersion_other_err: Number of miscellaneous other errors during
XStatsVersion operations.
<P><LI>GetXStats_srv_err: Number of server-down errors during GetXStats
operations.
<P><LI>GetXStats_net_err: Number of network errors during GetXStats
operations.
<P><LI>GetXStats_prot_err: Number of protection violations during GetXStats
operations.
<P><LI>GetXStats_vol_err: Number of volume related errors during GetXStats
operations.
<P><LI>GetXStats_busy_err: Number of volume busy conditions encountered
during GetXStats operations.
<P><LI>GetXStats_other_err: Number of miscellaneous other errors during
GetXStats operations.
</UL>
<P>File Server RPC Transfer Timings Group (FS_RPCopBytes_group)
<UL>
<P><LI>FetchData_xfers: Number of FetchData operations.
<P><LI>FetchData_xfers_ok: Number of successful FetchData
operations.
<P><LI>FetchData_xfers_sum: Sum of timing values for FetchData
operations.
<P><LI>FetchData_xfers_sqr: Sum of squares of sample timings for FetchData
operations.
<P><LI>FetchData_xfers_min: Minimum transfer time observed for FetchData
operations.
<P><LI>FetchData_xfers_max: Maximum transfer time observed for FetchData
operations.
<P><LI>FetchData_xfers_bytes_sum: Sum of bytes transferred for FetchData
operations.
<P><LI>FetchData_xfers_bytes_min: Minimum byte transfer observed for
FetchData operations.
<P><LI>FetchData_xfers_bytes_max: Maximum byte transfer observed for
FetchData operations.
<P><LI>FetchData_xfers_bucket0: Tally in bucket0 for FetchData
operations.
<P><LI>FetchData_xfers_bucket1: Tally in bucket1 for FetchData
operations.
<P><LI>FetchData_xfers_bucket2: Tally in bucket2 for FetchData
operations.
<P><LI>FetchData_xfers_bucket3: Tally in bucket3 for FetchData
operations.
<P><LI>FetchData_xfers_bucket4: Tally in bucket4 for FetchData
operations.
<P><LI>FetchData_xfers_bucket5: Tally in bucket5 for FetchData
operations.
<P><LI>FetchData_xfers_bucket6: Tally in bucket6 for FetchData
operations.
<P><LI>FetchData_xfers_bucket7: Tally in bucket7 for FetchData
operations.
<P><LI>FetchData_xfers_bucket8: Tally in bucket8 for FetchData
operations.
<P><LI>StoreData_xfers: Number of StoreData operations.
<P><LI>StoreData_xfers_ok: Number of successful StoreData
operations.
<P><LI>StoreData_xfers_sum: Sum of timing values for StoreData
operations.
<P><LI>StoreData_xfers_sqr: Sum of squares of sample timings for StoreData
operations.
<P><LI>StoreData_xfers_min: Minimum transfer time observed for StoreData
operations.
<P><LI>StoreData_xfers_max: Maximum transfer time observed for StoreData
operations.
<P><LI>StoreData_xfers_bytes_sum: Sum of bytes transferred for StoreData
operations.
<P><LI>StoreData_xfers_bytes_min: Minimum byte transfer observed for
StoreData operations.
<P><LI>StoreData_xfers_bytes_max: Maximum byte transfer observed for
StoreData operations.
<P><LI>StoreData_xfers_bucket0: Tally in bucket0 for StoreData
operations.
<P><LI>StoreData_xfers_bucket1: Tally in bucket1 for StoreData
operations.
<P><LI>StoreData_xfers_bucket2: Tally in bucket2 for StoreData
operations.
<P><LI>StoreData_xfers_bucket3: Tally in bucket3 for StoreData
operations.
<P><LI>StoreData_xfers_bucket4: Tally in bucket4 for StoreData
operations.
<P><LI>StoreData_xfers_bucket5: Tally in bucket5 for StoreData
operations.
<P><LI>StoreData_xfers_bucket6: Tally in bucket6 for StoreData
operations.
<P><LI>StoreData_xfers_bucket7: Tally in bucket7 for StoreData
operations.
<P><LI>StoreData_xfers_bucket8: Tally in bucket8 for StoreData
operations.
</UL>
<P>Cache Manager RPC Operation Timings Group (CM_RPCopTimes_group)
<UL>
<P><LI>CallBack_ops: Number of CallBack operations executed.
<P><LI>CallBack_ops_ok: Number of successful CallBack operations.
<P><LI>CallBack_ops_sum: Sum of timings for CallBack operations.
<P><LI>CallBack_ops_min: Minimum execution time observed for CallBack
operations.
<P><LI>CallBack_ops_max: Maximum execution time observed for CallBack
operations.
<P><LI>CallBack_ops_sqr: Sum of the square of CallBack operations executed.
<P><LI>InitCallBackState_ops: Number of InitCallBackState operations
executed.
<P><LI>InitCallBackState_ops_ok: Number of successful InitCallBackState
operations.
<P><LI>InitCallBackState_ops_sum: Sum of timings for InitCallBackState
operations.
<P><LI>InitCallBackState_ops_min: Minimum execution time observed for
InitCallBackState operations.
<P><LI>InitCallBackState_ops_max: Maximum execution time observed for
InitCallBackState operations.
<P><LI>InitCallBackState_ops_sqr: Sum of squares of timings for InitCallBackState
operations.
<P><LI>Probe_ops: Number of Probe operations executed.
<P><LI>Probe_ops_ok: Number of successful Probe operations.
<P><LI>Probe_ops_sum: Sum of timings for Probe operations.
<P><LI>Probe_ops_min: Minimum execution time observed for Probe
operations.
<P><LI>Probe_ops_max: Maximum execution time observed for Probe
operations.
<P><LI>Probe_ops_sqr: Sum of squares of timings for Probe operations.
<P><LI>GetLock_ops: Number of GetLock operations executed.
<P><LI>GetLock_ops_ok: Number of successful GetLock operations.
<P><LI>GetLock_ops_sum: Sum of timings for GetLock operations.
<P><LI>GetLock_ops_min: Minimum execution time observed for GetLock
operations.
<P><LI>GetLock_ops_max: Maximum execution time observed for GetLock
operations.
<P><LI>GetLock_ops_sqr: Sum of squares of timings for GetLock operations.
<P><LI>GetCE_ops: Number of GetCE operations executed.
<P><LI>GetCE_ops_ok: Number of successful GetCE operations.
<P><LI>GetCE_ops_sum: Sum of timings for GetCE operations.
<P><LI>GetCE_ops_min: Minimum execution time observed for GetCE
operations.
<P><LI>GetCE_ops_max: Maximum execution time observed for GetCE
operations.
<P><LI>GetCE_ops_sqr: Sum of squares of timings for GetCE operations.
<P><LI>XStatsVersion_CM_ops: Number of XStatsVersion operations
executed.
<P><LI>XStatsVersion_CM_ops_ok: Number of successful XStatsVersion
operations.
<P><LI>XStatsVersion_CM_ops_sum: Sum of timings for XStatsVersion
operations.
<P><LI>XStatsVersion_CM_ops_min: Minimum execution time observed for
XStatsVersion operations.
<P><LI>XStatsVersion_CM_ops_max: Maximum execution time observed for
XStatsVersion operations.
<P><LI>XStatsVersion_CM_ops_sqr: Sum of squares of timings for XStatsVersion
operations.
<P><LI>GetXStats_CM_ops: Number of GetXStats operations executed.
<P><LI>GetXStats_CM_ops_ok: Number of successful GetXStats
operations.
<P><LI>GetXStats_CM_ops_sum: Sum of timings for GetXStats
operations.
<P><LI>GetXStats_CM_ops_min: Minimum execution time observed for GetXStats
operations.
<P><LI>GetXStats_CM_ops_max: Maximum execution time observed for GetXStats
operations.
<P><LI>GetXStats_CM_ops_sqr: Sum of squares of timings for GetXStats
operations.
</UL>
<P><H3><A NAME="Header_711" HREF="auagd002.htm#ToC_711">Authentication and Replicated File Access Section (Auth_Access_section)</A></H3>
<P>Authentication Information for Cache Manager Group (Auth_Stats_group)
<UL>
<P><LI>curr_PAGs: Current number of PAGs.
<P><LI>curr_Records: Current number of records in table.
<P><LI>curr_AuthRecords: Current number of of authenticated records (with
valid ticket).
<P><LI>curr_UnauthRecords: Current number of of unauthenticated records
(without any ticket at all).
<P><LI>curr_MaxRecordsInPAG: Maximum records for a single PAG.
<P><LI>curr_LongestChain: Length of longest current hash chain.
<P><LI>PAGCreations: Number of PAG creations.
<P><LI>TicketUpdates: Number of ticket additions/refreshes.
<P><LI>HWM_PAGS: High water mark - number of PAGs.
<P><LI>HWM_Records: High water mark - number of records.
<P><LI>HWM_MaxRecordsInPAG: High water mark - maximum records for a
single PAG.
<P><LI>HWM_LongestChain: High water mark - longest hash chain.
</UL>
<P>Unreplicated File Access Group (Access_Stats_group)
<UL>
<P><LI>unreplicatedRefs: Number of references to unreplicated data.
<P><LI>replicatedRefs: Number of references to replicated data.
<P><LI>numReplicasAccessed: Number of replicas accessed.
<P><LI>maxReplicasPerRef: Maximum number of replicas accessed per
reference.
<P><LI>refFirstReplicaOK: Number of references satisfied by 1st
replica.
</UL>
<HR><H2><A NAME="HDRWQ619" HREF="auagd002.htm#ToC_712">The File Server Statistics</A></H2>
<A NAME="IDX8188"></A>
<P>File Server statistics are classified into the following sections and
groups:
<UL>
<P><LI>PerfStats_section: Performance Statistics Section.
<UL>
<P><LI>VnodeCache_group: Vnode Cache Group.
<P><LI>Directory_group: Directory Package Group.
<P><LI>Rx_group: Rx Group.
<P><LI>HostModule_group: Host Module Fields Group.
<P><LI>misc_group: Miscellaneous Variables Group.
</UL>
<P><LI>RPCop_section: RPC Operations Section.
<UL>
<P><LI>RPCopTimes_group: Individual RPC Operation Timings.
<P><LI>RPCopBytes_group: Byte Information for Certain RPC
Operations.
</UL>
</UL>
<P>All File Server variables categorized under the above sections and groups
names are listed below.
<P><H3><A NAME="Header_713" HREF="auagd002.htm#ToC_713">Performance Statistics Section (PerfStats_section)</A></H3>
<P>Vnode Cache Group (VnodeCache_group)
<UL>
<P><LI>vcache_L_Entries: Number of entries in LARGE vnode cache.
<P><LI>vcache_L_Allocs: Number of allocs (large).
<P><LI>vcache_L_Gets: Number of gets (large).
<P><LI>vcache_L_Reads: Number of reads (large).
<P><LI>vcache_L_Writes: Number of writes (large).
<P><LI>vcache_S_Entries: Number of entries in SMALL vnode cache.
<P><LI>vcache_S_Allocs: Number of allocs (small).
<P><LI>vcache_S_Gets: Number of gets (small).
<P><LI>vcache_S_Reads: Number of reads (small).
<P><LI>vcache_S_Writes: Number of writes (small).
<P><LI>vcache_H_Entries: Number of entries in HEADER vnode cache.
<P><LI>vcache_H_Gets: Number of gets (header)
<P><LI>vcache_H_Replacements: Number of replacements (header)
</UL>
<P>Directory Package Group (Directory_group)
<UL>
<P><LI>dir_Buffers: Number of buffers in use.
<P><LI>dir_Calls: Number of read calls made.
<P><LI>dir_IOs: I/O operations performed.
</UL>
<P>Rx Group (Rx_group)
<UL>
<P><LI>rx_packetRequests: Packet allocation requests.
<P><LI>rx_noPackets_RcvClass: Failed packet requests (receive
class).
<P><LI>rx_noPackets_SendClass: Failed packet requests (send class).
<P><LI>rx_noPackets_SpecialClass: Failed packet requests (special
class).
<P><LI>rx_socketGreedy: Did SO_GREEDY succeed?
<P><LI>rx_bogusPacketOnRead: Short packets received.
<P><LI>rx_bogusHost: Host address from bogus packets.
<P><LI>rx_noPacketOnRead: Read packets with no packet there.
<P><LI>rx_noPacketBuffersOnRead: Packets dropped due to buffer
shortage.
<P><LI>rx_selects: Selects waiting on packet or timeout.
<P><LI>rx_sendSelects: Selects forced upon sends.
<P><LI>rx_packetsRead_RcvClass: Packets read (receive class).
<P><LI>rx_packetsRead_SendClass: Packets read (send class).
<P><LI>rx_packetsRead_SpecialClass: Packets read (special class).
<P><LI>rx_dataPacketsRead: Unique data packets read off wire.
<P><LI>rx_ackPacketsRead: ACK packets read.
<P><LI>rx_dupPacketsRead: Duplicate data packets read.
<P><LI>rx_spuriousPacketsRead: Inappropriate packets read.
<P><LI>rx_packetsSent_RcvClass: Packets sent (receive class).
<P><LI>rx_packetsSent_SendClass: Packets sent (send class).
<P><LI>rx_packetsSent_SpecialClass: Packets sent (special class).
<P><LI>rx_ackPacketsSent: ACK packets sent.
<P><LI>rx_pingPacketsSent: Ping packets sent.
<P><LI>rx_abortPacketsSent: Abort packets sent.
<P><LI>rx_busyPacketsSent: Busy packets sent.
<P><LI>rx_dataPacketsSent: Unique data packets sent.
<P><LI>rx_dataPacketsReSent: Retransmissions sent.
<P><LI>rx_dataPacketsPushed: Retransmissions pushed by NACK.
<P><LI>rx_ignoreAckedPacket: Packets with ACKed flag on rxi_Start.
<P><LI>rx_totalRtt_Sec and rx_totalRtt_Usec: Total round trip time (in
seconds and milliseconds).
<P><LI>rx_minRtt_Sec and rx_minRtt_Usec: Minimum round trip time (in
seconds and milliseconds).
<P><LI>rx_maxRtt_Sec and rx_maxRtt_Usec: Maximum round trip time (in
seconds and milliseconds).
<P><LI>rx_nRttSamples: Round trip samples.
<P><LI>rx_nServerConns: Total server connections.
<P><LI>rx_nClientConns: Total client connections.
<P><LI>rx_nPeerStructs: Total peer structures.
<P><LI>rx_nCallStructs: Total call structures.
<P><LI>rx_nFreeCallStructs: Total free call structures.
</UL>
<P>Host Module Fields Group (HostModule_group)
<UL>
<P><LI>host_NumHostEntries: Number of host entries.
<P><LI>host_HostBlocks: Blocks in use for hosts.
<P><LI>host_NonDeletedHosts: Non-deleted hosts.
<P><LI>host_HostsInSameNetOrSubnet: Hosts in same subnet as server.
<P><LI>host_HostsInDiffSubnet: Hosts in different subnet than
server.
<P><LI>host_HostsInDiffNetwork: Hosts in different network than
server.
<P><LI>host_NumClients: Number of client entries.
<P><LI>host_ClientBlocks: Blocks in use for clients.
</UL>
<P>Miscellaneous Variables Group (misc_group)
<UL>
<P><LI>numPerfCalls: Number of performance calls received.
</UL>
<P><H3><A NAME="Header_714" HREF="auagd002.htm#ToC_714">RPC Operations Section (RPCop_section)</A></H3>
<P>Individual RPC Operation Timings Group (RPCopTimes_group)
<UL>
<P><LI>epoch: Time when data collection began.
<P><LI>FetchData_ops: Number of FetchData operations executed.
<P><LI>FetchData_ops_ok: Number of successful FetchData operations.
<P><LI>FetchData_sum: Sum of timings for FetchData operations.
<P><LI>FetchData_sqr: Sum of squares of sample timings for FetchData
operations.
<P><LI>FetchData_min: Minimum execution time observed for FetchData
operations.
<P><LI>FetchData_max: Maximum execution time observed for FetchData
operations.
<P><LI>FetchACL_ops: Number of FetchACL operations executed.
<P><LI>FetchACL_ops_ok: Number of successful FetchACL operations.
<P><LI>FetchACL_sum: Sum of timings for FetchACL operations.
<P><LI>FetchACL_sqr: Sum of squares of sample timings for FetchACL
operations.
<P><LI>FetchACL_min: Minimum execution time observed for FetchACL
operations.
<P><LI>FetchACL_max: Maximum execution time observed for FetchACL
operations.
<P><LI>FetchStatus_ops: Number of FetchStatus operations executed.
<P><LI>FetchStatus_ops_ok: Number of successful FetchStatus
operations.
<P><LI>FetchStatus_sum: Sum of timings for FetchStatus operations.
<P><LI>FetchStatus_sqr: Sum of squares of sample timings for FetchStatus
operations.
<P><LI>FetchStatus_min: Minimum execution time observed for FetchStatus
operations.
<P><LI>FetchStatus_max: Maximum execution time observed for FetchStatus
operations.
<P><LI>StoreData_ops: Number of StoreData operations executed.
<P><LI>StoreData_ops_ok: Number of successful StoreData operations.
<P><LI>StoreData_sum: Sum of timings for StoreData operations.
<P><LI>StoreData_sqr: Sum of squares of sample timings for StoreData
operations.
<P><LI>StoreData_min: Minimum execution time observed for StoreData
operations.
<P><LI>StoreData_max: Maximum execution time observed for StoreData
operations.
<P><LI>StoreACL_ops: Number of StoreACL operations executed.
<P><LI>StoreACL_ops_ok: Number of successful StoreACL operations.
<P><LI>StoreACL_sum: Sum of timings for StoreACL operations.
<P><LI>StoreACL_sqr: Sum of squares of sample timings for StoreACL
operations.
<P><LI>StoreACL_min: Minimum execution time observed for StoreACL
operations.
<P><LI>StoreACL_max: Maximum execution time observed for StoreACL
operations.
<P><LI>StoreStatus_ops: Number of StoreStatus operations executed.
<P><LI>StoreStatus_ops_ok: Number of successful StoreStatus
operations.
<P><LI>StoreStatus_sum: Sum of timings for StoreStatus operations.
<P><LI>StoreStatus_sqr: Sum of squares of sample timings for StoreStatus
operations.
<P><LI>StoreStatus_min: Minimum execution time observed for StoreStatus
operations.
<P><LI>StoreStatus_max: Maximum execution time observed for StoreStatus
operations.
<P><LI>RemoveFile_ops: Number of RemoveFile operations executed.
<P><LI>RemoveFile_ops_ok: Number of successful RemoveFile
operations.
<P><LI>RemoveFile_sum: Sum of timings for RemoveFile operations.
<P><LI>RemoveFile_sqr: Sum of squares of sample timings for RemoveFile
operations.
<P><LI>RemoveFile_min: Minimum execution time observed for RemoveFile
operations.
<P><LI>RemoveFile_max: Maximum execution time observed for RemoveFile
operations.
<P><LI>CreateFile_ops: Number of CreateFile operations executed.
<P><LI>CreateFile_ops_ok: Number of successful CreateFile
operations.
<P><LI>CreateFile_sum: Sum of timings for CreateFile operations.
<P><LI>CreateFile_sqr: Sum of squares of sample timings for CreateFile
operations.
<P><LI>CreateFile_min: Minimum execution time observed for CreateFile
operations.
<P><LI>CreateFile_max: Maximum execution time observed for CreateFile
operations.
<P><LI>Rename_ops: Number of Rename operations executed.
<P><LI>Rename_ops_ok: Number of successful Rename operations.
<P><LI>Rename_sum: Sum of timings for Rename operations.
<P><LI>Rename_sqr: Sum of squares of sample timings for Rename
operations.
<P><LI>Rename_min: Minimum execution time observed for Rename
operations.
<P><LI>Rename_max: Maximum execution time observed for Rename
operations.
<P><LI>Symlink_ops: Number of Symlink operations executed.
<P><LI>Symlink_ops_ok: Number of successful Symlink operations.
<P><LI>Symlink_sum: Sum of timings for Symlink operations.
<P><LI>Symlink_sqr: Sum of squares of sample timings for Symlink
operations.
<P><LI>Symlink_min: Minimum execution time observed for Symlink
operations.
<P><LI>Symlink_max: Maximum execution time observed for Symlink
operations.
<P><LI>Link_ops: Number of Link operations executed.
<P><LI>Link_ops_ok: Number of successful Link operations.
<P><LI>Link_sum: Sum of timings for Link operations.
<P><LI>Link_sqr: Sum of squares of sample timings for Link
operations.
<P><LI>Link_min: Minimum execution time observed for Link
operations.
<P><LI>Link_max: Maximum execution time observed for Link
operations.
<P><LI>MakeDir_ops: Number of MakeDir operations executed.
<P><LI>MakeDir_ops_ok: Number of successful MakeDir operations.
<P><LI>MakeDir_sum: Sum of timings for MakeDir operations.
<P><LI>MakeDir_sqr: Sum of squares of sample timings for MakeDir
operations.
<P><LI>MakeDir_min: Minimum execution time observed for MakeDir
operations.
<P><LI>MakeDir_max: Maximum execution time observed for MakeDir
operations.
<P><LI>RemoveDir_ops: Number of RemoveDir operations executed.
<P><LI>RemoveDir_ops_ok: Number of successful RemoveDir operations.
<P><LI>RemoveDir_sum: Sum of timings for RemoveDir operations.
<P><LI>RemoveDir_sqr: Sum of squares of sample timings for RemoveDir
operations.
<P><LI>RemoveDir_min: Minimum execution time observed for RemoveDir
operations.
<P><LI>RemoveDir_max: Maximum execution time observed for RemoveDir
operations.
<P><LI>SetLock_ops: Number of SetLock operations executed.
<P><LI>SetLock_ops_ok: Number of successful SetLock operations.
<P><LI>SetLock_sum: Sum of timings for SetLock operations.
<P><LI>SetLock_sqr: Sum of squares of sample timings for SetLock
operations.
<P><LI>SetLock_min: Minimum execution time observed for SetLock
operations.
<P><LI>SetLock_max: Maximum execution time observed for SetLock
operations.
<P><LI>ExtendLock_ops: Number of ExtendLock operations executed.
<P><LI>ExtendLock_ops_ok: Number of successful ExtendLock
operations.
<P><LI>ExtendLock_sum: Sum of timings for ExtendLock operations.
<P><LI>ExtendLock_sqr: Sum of squares of sample timings for ExtendLock
operations.
<P><LI>ExtendLock_min: Minimum execution time observed for ExtendLock
operations.
<P><LI>ExtendLock_max: Maximum execution time observed for ExtendLock
operations.
<P><LI>ReleaseLock_ops: Number of ReleaseLock operations executed.
<P><LI>ReleaseLock_ops_ok: Number of successful ReleaseLock
operations.
<P><LI>ReleaseLock_sum: Sum of timings for ReleaseLock operations.
<P><LI>ReleaseLock_sqr: Sum of squares of sample timings for ReleaseLock
operations.
<P><LI>ReleaseLock_min: Minimum execution time observed for ReleaseLock
operations.
<P><LI>ReleaseLock_max: Maximum execution time observed for ReleaseLock
operations.
<P><LI>GetStatistics_ops: Number of GetStatistics operations
executed.
<P><LI>GetStatistics_ops_ok: Number of successful GetStatistics
operations.
<P><LI>GetStatistics_sum: Sum of timings for GetStatistics
operations.
<P><LI>GetStatistics_sqr: Sum of squares of sample timings for
GetStatistics operations.
<P><LI>GetStatistics_min: Minimum execution time observed for GetStatistics
operations.
<P><LI>GetStatistics_max: Maximum execution time observed for GetStatistics
operations.
<P><LI>GiveUpCallbacks_ops: Number of GiveUpCallbacks operations
executed.
<P><LI>GiveUpCallbacks_ops_ok: Number of successful GiveUpCallbacks
operations.
<P><LI>GiveUpCallbacks_sum: Sum of timings for GiveUpCallbacks
operations.
<P><LI>GiveUpCallbacks_sqr: Sum of squares of sample timings for
GiveUpCallbacks operations.
<P><LI>GiveUpCallbacks_min: Minimum execution time observed for
GiveUpCallbacks operations.
<P><LI>GiveUpCallbacks_max: Maximum execution time observed for
GiveUpCallbacks operations.
<P><LI>GetVolumeInfo_ops: Number of GetVolumeInfo operations
executed.
<P><LI>GetVolumeInfo_ops_ok: Number of successful GetVolumeInfo
operations.
<P><LI>GetVolumeInfo_sum: Sum of timings for GetVolumeInfo
operations.
<P><LI>GetVolumeInfo_sqr: Sum of squares of sample timings for
GetVolumeInfo operations.
<P><LI>GetVolumeInfo_min: Minimum execution time observed for GetVolumeInfo
operations.
<P><LI>GetVolumeInfo_max: Maximum execution time observed for GetVolumeInfo
operations.
<P><LI>GetVolumeStatus_ops: Number of GetVolumeStatus operations
executed.
<P><LI>GetVolumeStatus_ops_ok: Number of successful GetVolumeStatus
operations.
<P><LI>GetVolumeStatus_sum: Sum of timings for GetVolumeStatus
operations.
<P><LI>GetVolumeStatus_sqr: Sum of squares of sample timings for
GetVolumeStatus operations.
<P><LI>GetVolumeStatus_min: Minimum execution time observed for
GetVolumeStatus operations.
<P><LI>GetVolumeStatus_max: Maximum execution time observed for
GetVolumeStatus operations.
<P><LI>SetVolumeStatus_ops: Number of SetVolumeStatus operations
executed.
<P><LI>SetVolumeStatus_ops_ok: Number of successful SetVolumeStatus
operations.
<P><LI>SetVolumeStatus_sum: Sum of timings for SetVolumeStatus
operations.
<P><LI>SetVolumeStatus_sqr: Sum of squares of sample timings for
SetVolumeStatus operations.
<P><LI>SetVolumeStatus_min: Minimum execution time observed for
SetVolumeStatus operations.
<P><LI>SetVolumeStatus_max: Maximum execution time observed for
SetVolumeStatus operations.
<P><LI>GetRootVolume_ops: Number of GetRootVolume operations
executed.
<P><LI>GetRootVolume_ops_ok: Number of successful GetRootVolume
operations.
<P><LI>GetRootVolume_sum: Sum of timings for GetRootVolume
operations.
<P><LI>GetRootVolume_sqr: Sum of squares of sample timings for
GetRootVolume operations.
<P><LI>GetRootVolume_min: Minimum execution time observed for GetRootVolume
operations.
<P><LI>GetRootVolume_max: Maximum execution time observed for GetRootVolume
operations.
<P><LI>CheckToken_ops: Number of CheckToken operations executed.
<P><LI>CheckToken_ops_ok: Number of successful CheckToken
operations.
<P><LI>CheckToken_sum: Sum of timings for CheckToken operations.
<P><LI>CheckToken_sqr: Sum of squares of sample timings for CheckToken
operations.
<P><LI>CheckToken_min: Minimum execution time observed for CheckToken
operations.
<P><LI>CheckToken_max: Maximum execution time observed for CheckToken
operations.
<P><LI>GetTime_ops: Number of GetTime operations executed.
<P><LI>GetTime_ops_ok: Number of successful GetTime operations.
<P><LI>GetTime_sum: Sum of timings for GetTime operations.
<P><LI>GetTime_sqr: Sum of squares of sample timings for GetTime
operations.
<P><LI>GetTime_min: Minimum execution time observed for GetTime
operations.
<P><LI>GetTime_max: Maximum execution time observed for GetTime
operations.
<P><LI>NGetVolumeInfo_ops: Number of NGetVolumeInfo operations
executed.
<P><LI>NGetVolumeInfo_ops_ok: Number of successful NGetVolumeInfo
operations.
<P><LI>NGetVolumeInfo_sum: Sum of timings for NGetVolumeInfo
operations.
<P><LI>NGetVolumeInfo_sqr: Sum of squares of sample timings for
NGetVolumeInfo operations.
<P><LI>NGetVolumeInfo_min: Minimum execution time observed for
NGetVolumeInfo operations.
<P><LI>NGetVolumeInfo_max: Maximum execution time observed for
NGetVolumeInfo operations.
<P><LI>BulkStatus_ops: Number of BulkStatus operations executed.
<P><LI>BulkStatus_ops_ok: Number of successful BulkStatus
operations.
<P><LI>BulkStatus_sum: Sum of timings for BulkStatus operations.
<P><LI>BulkStatus_sqr: Sum of squares of sample timings for BulkStatus
operations.
<P><LI>BulkStatus_min: Minimum execution time observed for BulkStatus
operations.
<P><LI>BulkStatus_max: Maximum execution time observed for BulkStatus
operations.
<P><LI>XStatsVersion_ops: Number of XStatsVersion operations
executed.
<P><LI>XStatsVersion_ops_ok: Number of successful XStatsVersion
operations.
<P><LI>XStatsVersion_sum: Sum of timings for XStatsVersion
operations.
<P><LI>XStatsVersion_sqr: Sum of squares of sample timings for
XStatsVersion operations.
<P><LI>XStatsVersion_min: Minimum execution time observed for XStatsVersion
operations.
<P><LI>XStatsVersion_max: Maximum execution time observed for XStatsVersion
operations.
<P><LI>GetXStats_ops: Number of GetXStats operations executed.
<P><LI>GetXStats_ops_ok: Number of successful GetXStats operations.
<P><LI>GetXStats_sum: Sum of timings for GetXStats operations.
<P><LI>GetXStats_sqr: Sum of squares of sample timings for GetXStats
operations.
<P><LI>GetXStats_min: Minimum execution time observed for GetXStats
operations.
<P><LI>GetXStats_max: Maximum execution time observed for GetXStats
operations.
</UL>
<P>Byte Information for Certain RPC Operations Group (RPCopBytes_group)
<UL>
<P><LI>FetchData_xfers: Number of FetchData operations.
<P><LI>FetchData_xfers_ok: Number of successful FetchData
operations.
<P><LI>FetchData_xfers_sum: Sum of timing values for FetchData
operations.
<P><LI>FetchData_xfers_sqr: Sum of squares of sample timings for FetchData
operations.
<P><LI>FetchData_xfers_min: Minimum transfer time observed for FetchData
operations.
<P><LI>FetchData_xfers_max: Maximum transfer time observed for FetchData
operations.
<P><LI>FetchData_xfers_bytes_sum: Sum of bytes transferred for FetchData
operations.
<P><LI>FetchData_xfers_bytes_min: Minimum byte transfer observed for
FetchData operations.
<P><LI>FetchData_xfers_bytes_max: Maximum byte transfer observed for
FetchData operations.
<P><LI>FetchData_xfers_bucket0: Tally in bucket0 for FetchData
operations.
<P><LI>FetchData_xfers_bucket1: Tally in bucket1 for FetchData
operations.
<P><LI>FetchData_xfers_bucket2: Tally in bucket2 for FetchData
operations.
<P><LI>FetchData_xfers_bucket3: Tally in bucket3 for FetchData
operations.
<P><LI>FetchData_xfers_bucket4: Tally in bucket4 for FetchData
operations.
<P><LI>FetchData_xfers_bucket5: Tally in bucket5 for FetchData
operations.
<P><LI>FetchData_xfers_bucket6: Tally in bucket6 for FetchData
operations.
<P><LI>FetchData_xfers_bucket7: Tally in bucket7 for FetchData
operations.
<P><LI>FetchData_xfers_bucket8: Tally in bucket8 for FetchData
operations.
<P><LI>StoreData_xfers: Number of StoreData operations.
<P><LI>StoreData_xfers_ok: Number of successful StoreData
operations.
<P><LI>StoreData_xfers_sum: Sum of timing values for StoreData
operations.
<P><LI>StoreData_xfers_sqr: Sum of squares of sample timings for StoreData
operations.
<P><LI>StoreData_xfers_min: Minimum transfer time observed for StoreData
operations.
<P><LI>StoreData_xfers_max: Maximum transfer time observed for StoreData
operations.
<P><LI>StoreData_xfers_bytes_sum: Sum of bytes transferred for StoreData
operations.
<P><LI>StoreData_xfers_bytes_min: Minimum byte transfer observed for
StoreData operations.
<P><LI>StoreData_xfers_bytes_max: Maximum byte transfer observed for
StoreData operations.
<P><LI>StoreData_xfers_bucket0: Tally in bucket0 for StoreData
operations.
<P><LI>StoreData_xfers_bucket1: Tally in bucket1 for StoreData
operations.
<P><LI>StoreData_xfers_bucket2: Tally in bucket2 for StoreData
operations.
<P><LI>StoreData_xfers_bucket3: Tally in bucket3 for StoreData
operations.
<P><LI>StoreData_xfers_bucket4: Tally in bucket4 for StoreData
operations.
<P><LI>StoreData_xfers_bucket5: Tally in bucket5 for StoreData
operations.
<P><LI>StoreData_xfers_bucket6: Tally in bucket6 for StoreData
operations.
<P><LI>StoreData_xfers_bucket7: Tally in bucket7 for StoreData
operations.
<P><LI>StoreData_xfers_bucket8: Tally in bucket8 for StoreData
operations.
</UL>
<HR><P ALIGN="center"> <A HREF="../index.htm"><IMG SRC="../books.gif" BORDER="0" ALT="[Return to Library]"></A> <A HREF="auagd002.htm#ToC"><IMG SRC="../toc.gif" BORDER="0" ALT="[Contents]"></A> <A HREF="auagd023.htm"><IMG SRC="../prev.gif" BORDER="0" ALT="[Previous Topic]"></A> <A HREF="#Top_Of_Page"><IMG SRC="../top.gif" BORDER="0" ALT="[Top of Topic]"></A> <A HREF="auagd025.htm"><IMG SRC="../next.gif" BORDER="0" ALT="[Next Topic]"></A> <A HREF="auagd026.htm#HDRINDEX"><IMG SRC="../index.gif" BORDER="0" ALT="[Index]"></A> <P>
<!-- Begin Footer Records ========================================== -->
<P><HR><B>
<br>© <A HREF="http://www.ibm.com/">IBM Corporation 2000.</A> All Rights Reserved
</B>
<!-- End Footer Records ============================================ -->
<A NAME="Bot_Of_Page"></A>
</BODY></HTML>
|