File: 654.out

package info (click to toggle)
pcp 7.0.5-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 252,916 kB
  • sloc: ansic: 1,478,844; sh: 177,285; xml: 160,462; cpp: 83,809; python: 24,349; perl: 18,303; yacc: 6,877; lex: 2,864; makefile: 2,694; awk: 165; fortran: 60; java: 52
file content (2934 lines) | stat: -rw-r--r-- 114,176 bytes parent folder | download
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
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
QA output created by 654

=== Installing GFS2 PMDA ===
== Checking metric descriptors and values - gfs2-root-001.tgz

gfs2.control.buffer_size_kb PMID: 115.6.14 [Sets the buffer size for trace_pipe (per cpu).]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
The size of the trace_pipe buffer can be controlled with this metrics, it
allows the increase of the trace_pipe buffer to 128MB (131072KB) per cpu
on the system. It is useful to increase the size of the buffer when there
is expected to be heavy load on the file system in order to reduce the
risk of overwritten entries in the trace_pipe before they are read (default
value is 32MB (32768KB).
    value 0

gfs2.control.global_tracing PMID: 115.6.15 [Indication whether global tracing is enabled.]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
The global tracing can be controlled using pmstore gfs2.control.global_tracing
0 [off] or 1 [on]. This is required to be on for most of the gfs2 metrics to
function.
    value 0

gfs2.control.glock_threshold PMID: 115.6.18 [Threshold for maximum number of glocks accepted]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
per fetch. The number of glocks that will be processed and accepted over all
ftrace read trace statistics. This number can be manually altered using pmstore
in order to tailor the number of glocks processed. This value must be positive.
    value 750000

gfs2.control.latency PMID: 115.6.17 [Indication whether gfs2.latency statistics are enabled.]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
The gfs2.latency statistics can be manually controlled using pmstore
gfs2.control.latency 0 [off] or 1 [on]. Setting the value of the metric
controls the behaviour of the PMDA to whether it tries to collect the latency
metrics or not. The machice must have the gfs2 trace-points available for the
latency metrics to function.
    value 1

gfs2.control.tracepoints.ail_flush PMID: 115.6.10 [Indication whether ail_flush glock stats]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
are enabled. The gfs2 tracepoint statistics can be manually controlled using
pmstore gfs2.control.tracepoints.ail_flush 0 [off] or 1 [on]. Setting the value
of the metric controls the behavior of the PMDA to whether it tries to collect
from tracepoint metrics or not.
    value 0

gfs2.control.tracepoints.all PMID: 115.6.0 [Indication whether glock statistics are enabled]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
The gfs2 tracepoint statistics can be manually controlled using pmstore
gfs2.control.tracepoints.all 0 [off] or 1 [on]. Setting the value of the metric
controls the behavior of the PMDA to whether it tries to collect from tracepoint
metrics or not.
    value 0

gfs2.control.tracepoints.block_alloc PMID: 115.6.11 [Indication whether block_alloc glock]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
stats are enabled. The gfs2 tracepoint statistics can be manually controlled 
using pmstore gfs2.control.tracepoints.block_alloc 0 [off] or 1 [on]. Setting
the value of the metric controls the behavior of the PMDA to whether it tries
to collect from tracepoint metrics or not.
    value 0

gfs2.control.tracepoints.bmap PMID: 115.6.12 [Indication whether bmap glock stats are enabled.]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
The gfs2 tracepoint statistics can be manually controlled using pmstore 
gfs2.control.tracepoints.bmap 0 [off] or 1 [on]. Setting the value of the 
metric controls the behavior of the PMDA to whether it tries to collect from
tracepoint metrics or not.
    value 0

gfs2.control.tracepoints.demote_rq PMID: 115.6.3 [Indication whether glock_demote_rq glock]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
stats are enabled. The gfs2 tracepoint statistics can be manually controlled
using pmstore gfs2.control.tracepoints.glock_demote_rq 0 [off] or 1 [on].
Setting the value of the metric controls the behavior of the PMDA to whether
it tries to collect from tracepoint metrics or not.
    value 0

gfs2.control.tracepoints.glock_lock_time PMID: 115.6.6 [Indication whether glock_lock_time]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
glock stats are enabled. The gfs2 tracepoint statistics can be manually
controlled using pmstore gfs2.control.tracepoints.glock_lock_time 0 [off] or 1
[on]. Setting the value of the metric controls the behavior of the PMDA to
whether it tries to collect from tracepoint metrics or not.
    value 0

gfs2.control.tracepoints.glock_put PMID: 115.6.2 [Indication whether glock_put glock stats]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
are enabled. The gfs2 tracepoint statistics can be manually controlled using
pmstore gfs2.control.tracepoints.glock_put 0 [off] or 1 [on]. Setting the value
of the metric controls the behavior of the PMDA to whether it tries to collect 
from tracepoint metrics or not.
    value 0

gfs2.control.tracepoints.glock_queue PMID: 115.6.5 [Indication whether glock_queue glock]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
stats are enabled. The gfs2 tracepoint statistics can be manually controlled
using pmstore gfs2.control.tracepoints.glock_queue 0 [off] or 1 [on]. Setting
the value of the metric controls the behavior of the PMDA to whether it tries
to collect from tracepoint metrics or not.
    value 0

gfs2.control.tracepoints.glock_state_change PMID: 115.6.1 [Indication whether ]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
glock_state_change glock stats are enabled. The gfs2 tracepoint statistics
can be manually controlled using pmstore
gfs2.control.tracepoints.glock_state_change 0 [off] or 1 [on]. Setting the
value of the metric controls the behavior of the PMDA to whether it tries to
collect from tracepoint metrics or not.
    value 0

gfs2.control.tracepoints.log_blocks PMID: 115.6.9 [Indication whether log_blocks glock stats]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
are enabled. The gfs2 tracepoint statistics can be manually controlled using
pmstore gfs2.control.tracepoints.log_blocks 0 [off] or 1 [on]. Setting the
value of the metric controls the behavior of the PMDA to whether it tries to
collect from tracepoint metrics or not.
    value 0

gfs2.control.tracepoints.log_flush PMID: 115.6.8 [Indication whether log_flush glock stats]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
are enabled. The gfs2 tracepoint statistics can be manually controlled using
pmstore gfs2.control.tracepoints.log_flush 0 [off] or 1 [on]. Setting the
value of the metric controls the behavior of the PMDA to whether it tries to
collect from tracepoint metrics or not.
    value 0

gfs2.control.tracepoints.pin PMID: 115.6.7 [Indication whether pin glock stats are enabled. ]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
The gfs2 tracepoint statistics can be manually controlled using pmstore 
gfs2.control.tracepoints.pin 0 [off] or 1 [on]. Setting the value of the
metric controls the behavior of the PMDA to whether it tries to collect from
tracepoint metrics or not.
    value 0

gfs2.control.tracepoints.promote PMID: 115.6.4 [Indication whether glock_promote glock stats]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
are enabled. The gfs2 tracepoint statistics can be manually controlled using
pmstore gfs2.control.tracepoints.glock_promte 0 [off] or 1 [on]. Setting the 
value of the metric controls the behavior of the PMDA to whether it tries to
collect from tracepoint metrics or not.
    value 0

gfs2.control.tracepoints.rs PMID: 115.6.13 [Indication whether rs glock stats are enabled.]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
The gfs2 tracepoint statistics can be manually controlled using pmstore 
gfs2.control.tracepoints.rs 0 [off] or 1 [on]. Setting the value of the metric
controls the behavior of the PMDA to whether it tries to collect from
tracepoint metrics or not.
    value 0

gfs2.control.worst_glock PMID: 115.6.16 [Indication whether gfs2.glock_lock_time statistics ]
    Data Type: 32-bit unsigned int  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
are enabled. The gfs2.glock_lock_time statistics can be manually controlled
using pmstore gfs2.control.glock_lock_time 0 [off] or 1 [on]. Setting the value
of the metric controls the behavior of the PMDA to whether it tries to collect
the lock_time metrics or not. The machine must have the gfs2 trace-points
available for the glock_lock_time based metrics to function.
    value 1

gfs2.glockfd.fds PMID: 115.8.1 [File descriptors with glock holders per filesystem]
    Data Type: 32-bit int  InDom: 115.1 0x1cc00001
    Semantics: instant  Units: none
Help:
File descriptors with glock holders per filesystem
    inst [0 or "loop0::holder_0"] value 4923
    inst [1 or "loop0::holder_1"] value 4960

gfs2.glockfd.pids PMID: 115.8.0 [List of process PID with glock holders per filesystem]
    Data Type: 32-bit int  InDom: 115.1 0x1cc00001
    Semantics: instant  Units: none
Help:
List of process PID with glock holders per filesystem
    inst [0 or "loop0::holder_0"] value 9
    inst [1 or "loop0::holder_1"] value 9

gfs2.glockfd.total PMID: 115.7.0 [Total number of glock holders per filesystem]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Total number of glock holders per filesystem
    inst [0 or "loop0"] value 2

gfs2.glocks.deferred PMID: 115.0.3 [GFS2 global locks in deferred state]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures in deferred state, based on parsing
/sys/kernel/debug/gfs2/<bdev>/glocks entries with state field (s:) value "DF".
    inst [0 or "loop0"] value 0

gfs2.glocks.exclusive PMID: 115.0.4 [GFS2 global locks in exclusive state]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures in exclusive state, based on parsing
/sys/kernel/debug/gfs2/<bdev>/glocks entries with state field (s:) value "EX".
    inst [0 or "loop0"] value 3

gfs2.glocks.flags.blocking_request PMID: 115.0.17 [GFS2 global locks with the blocking request flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the blocking request flag set, 
based onparsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag 
field (f:) value "b".
    inst [0 or "loop0"] value 21

gfs2.glocks.flags.demote PMID: 115.0.6 [GFS2 global locks with the demote flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the demote flag set, based on
parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag field (f:)
value "D".
    inst [0 or "loop0"] value 0

gfs2.glocks.flags.demote_pending PMID: 115.0.7 [GFS2 global locks with the demote pending flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the demote pending flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "d".
 
    inst [0 or "loop0"] value 0

gfs2.glocks.flags.demote_progress PMID: 115.0.8 [GFS2 global locks with the demote in progress flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the demote in progress flag
set, based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with
flag field (f:) value "p".
    inst [0 or "loop0"] value 0

gfs2.glocks.flags.dirty PMID: 115.0.9 [GFS2 global locks with the dirty flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the dirty flag set, based on
parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag field (f:) 
value "y".
    inst [0 or "loop0"] value 0

gfs2.glocks.flags.frozen PMID: 115.0.14 [GFS2 global locks with the frozen flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the frozen flag set, based on
parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag field (f:) 
value "f".
    inst [0 or "loop0"] value 0

gfs2.glocks.flags.initial PMID: 115.0.13 [GFS2 global locks with the initial flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the initial flag set, based
on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag field 
(f:) value "I".
    inst [0 or "loop0"] value 0

gfs2.glocks.flags.instantiate_in_prog PMID: 115.0.36 [GFS2 global locks with the instantiate progress flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the instantiate in progress
flag set, based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with 
flag field (f:) value "N".
    inst [0 or "loop0"] value 2

gfs2.glocks.flags.instantiate_needed PMID: 115.0.35 [GFS2 global locks with the instantiate needed flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the instantiate needed flag 
set, based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "n".
    inst [0 or "loop0"] value 1

gfs2.glocks.flags.invalidate PMID: 115.0.11 [GFS2 global locks with the invalidate flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the invalidate flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "i".
    inst [0 or "loop0"] value 0

gfs2.glocks.flags.locked PMID: 115.0.5 [GFS2 global locks with the locked flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the locked flag set, based on
parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag field (f:)
value "l".
    inst [0 or "loop0"] value 0

gfs2.glocks.flags.log_flush PMID: 115.0.10 [GFS2 global locks with the log flush flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the log flush flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "f".
    inst [0 or "loop0"] value 0

gfs2.glocks.flags.lru PMID: 115.0.18 [GFS2 global locks with the lru flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the LRU list flag set, based on
parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag field (f:) 
value "L".
    inst [0 or "loop0"] value 4

gfs2.glocks.flags.object_attached PMID: 115.0.16 [GFS2 global locks with the object attached flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the object is attached
flag set, based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries
with flag field (f:) value "o".
    inst [0 or "loop0"] value 23

gfs2.glocks.flags.queued PMID: 115.0.15 [GFS2 global locks with the queued flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the queued flag set, based on
parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag field (f:) 
value "q".
    inst [0 or "loop0"] value 22

gfs2.glocks.flags.reply_pending PMID: 115.0.12 [GFS2 global locks with the reply pending flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the reply pending flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag 
field (f:) value "r".
    inst [0 or "loop0"] value 0

gfs2.glocks.flags.try_to_evict PMID: 115.0.37 [GFS2 global locks with the try to evict flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the try to evict flag set, 
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag field
(f:) value "e".
    inst [0 or "loop0"] value 1

gfs2.glocks.flags.verify_delete PMID: 115.0.38 [GFS2 global locks with the verify delete flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures with the verify delete flag set, 
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag field 
(f:) value "E".
    inst [0 or "loop0"] value 1

gfs2.glocks.shared PMID: 115.0.1 [GFS2 global locks in shared state]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures in shared state, based on parsing
/sys/kernel/debug/gfs2/<bdev>/glocks entries with state field (s:) value "SH".
    inst [0 or "loop0"] value 22

gfs2.glocks.total PMID: 115.0.0 [Count of total observed incore GFS2 global locks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of total incore GFS2 glock data structures based on parsing the contents
of the /sys/kernel/debug/gfs2/<bdev>/glocks files.
    inst [0 or "loop0"] value 33

gfs2.glocks.unlocked PMID: 115.0.2 [GFS2 global locks in unlocked state]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock data structures in unlocked state, based on parsing
/sys/kernel/debug/gfs2/<bdev>/glocks entries with state field (s:) value "UN".
    inst [0 or "loop0"] value 8

gfs2.glstats.flock PMID: 115.2.6 [The number of flock(2) syscall glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The count of the current number of flock(2) syscall type glocks that currently
exist for the given filesystem. The data is recorded and counted from /sys/
kernel/debug/gfs2/<bdev>glstats file entries for this type of glock.
    inst [0 or "loop0"] value 0

gfs2.glstats.inode PMID: 115.2.2 [The number of inode (metadata and data) glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The count of the current number of inode metadata and data type glocks that
currently exist for the given filesystem. The data is recorded and counted from
/sys/kernel/debug/gfs2/<bdev>glstats file entries for this type of glock.
    inst [0 or "loop0"] value 10

gfs2.glstats.iopen PMID: 115.2.5 [The number of inode last closer detection glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The count of the current number of inode last closer detection type glocks that
currently exist for the given filesystem. The data is recorded and counted from
/sys/kernel/debug/gfs2/<bdev>glstats file entries for this type of glock.
    inst [0 or "loop0"] value 9

gfs2.glstats.journal PMID: 115.2.9 [The number of journal mutex glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The count of the current number of journal mutex type glocks that currently
exist for the given filesystem. The data is recorded and counted from /sys/
kernel/debug/gfs2/<bdev>glstats file entries for this type of glock.
    inst [0 or "loop0"] value 1

gfs2.glstats.meta PMID: 115.2.4 [The number of superblock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The count of the current number of superblock type glocks that currently exist
for the given filesystem. The data is recorded and counted from /sys/kernel/
debug/gfs2/<bdev>glstats file entries for this type of glock.
    inst [0 or "loop0"] value 1

gfs2.glstats.quota PMID: 115.2.8 [The number of quota operations glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The count of the current number of quota operations type glocks that currently
exist for the given filesystem. The data is recorded and counted from /sys/
kernel/debug/gfs2/<bdev>glstats file entries for this type of glock.
    inst [0 or "loop0"] value 0

gfs2.glstats.rgrp PMID: 115.2.3 [The number of resource group metadata glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The count of the current number of resource group metadata type glocks that
currently exist for the given filesystem. The data is recorded and counted from
/sys/kernel/debug/gfs2/<bdev>glstats file entries for this type of glock.
    inst [0 or "loop0"] value 5

gfs2.glstats.total PMID: 115.2.0 [The total number of current glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Total count of the number of glocks which currently reside for filesystem on 
the given node. Data is based from /sys/kernel/debug/gfs2/<bdev>/glstats
counting the total number of glock entries.
    inst [0 or "loop0"] value 29

gfs2.glstats.trans PMID: 115.2.1 [The number of transaction glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The count of the current number of transaction type glocks that currently exist
for the given filesystem. The data is recorded and counted from /sys/kernel/
debug/gfs2/<bdev>glstats file entries for this type of glock.
    inst [0 or "loop0"] value 3

gfs2.holders.defered PMID: 115.0.22 [GFS2 global lock holder in deferred state]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structure in shared state, based on parsing
/sys/kernel/debug/gfs2/<bdev>/glocks entries with state field (s:) value "DF".
    inst [0 or "loop0"] value 0

gfs2.holders.exclusive PMID: 115.0.23 [GFS2 global lock holder in exclusive state]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structure in shared state, based on parsing
/sys/kernel/debug/gfs2/<bdev>/glocks entries with state field (s:) value "EX".
    inst [0 or "loop0"] value 3

gfs2.holders.flags.any PMID: 115.0.25 [GFS2 global holder with the any flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structures with the any flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "A".
    inst [0 or "loop0"] value 0

gfs2.holders.flags.async PMID: 115.0.24 [GFS2 global holder with the async flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structures with the async flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "a".
    inst [0 or "loop0"] value 0

gfs2.holders.flags.exact PMID: 115.0.28 [GFS2 global holder with the exact flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structures with the exact flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "E".
    inst [0 or "loop0"] value 11

gfs2.holders.flags.first PMID: 115.0.29 [GFS2 global holder with the first flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structures with the first flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "F".
    inst [0 or "loop0"] value 0

gfs2.holders.flags.holder PMID: 115.0.30 [GFS2 global holder with the holder flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structures with the holder flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "H".
    inst [0 or "loop0"] value 14

gfs2.holders.flags.no_cache PMID: 115.0.26 [GFS2 global holder with the no cache flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structures with the no cache flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "c".
    inst [0 or "loop0"] value 2

gfs2.holders.flags.no_expire PMID: 115.0.27 [GFS2 global holder with the no expire flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structures with the no expire flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "e".
    inst [0 or "loop0"] value 3

gfs2.holders.flags.priority PMID: 115.0.31 [GFS2 global holder with the priority flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structures with the priority flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "p".
    inst [0 or "loop0"] value 0

gfs2.holders.flags.try PMID: 115.0.32 [GFS2 global holder with the try flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structures with the try flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "t".
    inst [0 or "loop0"] value 0

gfs2.holders.flags.try_1cb PMID: 115.0.33 [GFS2 global holder with the try 1CB flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structures with the try 1CB flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "T".
    inst [0 or "loop0"] value 0

gfs2.holders.flags.wait PMID: 115.0.34 [GFS2 global holder with the wait flag]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structures with the wait flag set,
based on parsing /sys/kernel/debug/gfs2/<bdev>/glocks entries with flag
field (f:) value "W".
    inst [0 or "loop0"] value 0

gfs2.holders.shared PMID: 115.0.20 [GFS2 global lock holder in shared state]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structure in shared state, based on parsing
/sys/kernel/debug/gfs2/<bdev>/glocks entries with state field (s:) value "SH".
    inst [0 or "loop0"] value 11

gfs2.holders.total PMID: 115.0.19 [Count of total observed incore GFS2 global locks holders]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of total incore GFS2 glock holder structures based on parsing the contents
of the /sys/kernel/debug/gfs2/<bdev>/glocks files.
    inst [0 or "loop0"] value 14

gfs2.holders.unlocked PMID: 115.0.21 [GFS2 global lock holder in unlocked state]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of incore GFS2 glock holder structure in shared state, based on parsing
/sys/kernel/debug/gfs2/<bdev>/glocks entries with state field (s:) value "UN".
    inst [0 or "loop0"] value 0

gfs2.latency.demote.all PMID: 115.5.7 [Average time in ms for all states. The total average]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
latency time in ms for all lock states for demotes.
No value(s) available!

gfs2.latency.demote.concurrent_read PMID: 115.5.9 [Average time in ms to concurrent read]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
lock state. The total average latency time in ms to change to concurrent read
lock state for demotes.
No value(s) available!

gfs2.latency.demote.concurrent_write PMID: 115.5.10 [Average time in ms to concurrent write]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
lock state. The total average latency time in ms to change to concurrent write
lock state for demotes.
No value(s) available!

gfs2.latency.demote.exclusive PMID: 115.5.13 [Average time in ms to exclusive lock state. ]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The total average latency time in ms to change to exclusive lock state for
demotes.
No value(s) available!

gfs2.latency.demote.null_lock PMID: 115.5.8 [Average time in ms to null lock state. The]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
total average latency time in ms to change to null lock state for demotes.
No value(s) available!

gfs2.latency.demote.protected_read PMID: 115.5.11 [Average time in ms to protected read]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
lock state. The total average latency time in ms to change to protected read
lock state for demotes.
No value(s) available!

gfs2.latency.demote.protected_write PMID: 115.5.12 [Average time in ms to protected write]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
lock state. The total average latency time in ms to change to protected write
lock state for demotes.
No value(s) available!

gfs2.latency.grant.all PMID: 115.5.0 [Average time in ms for all states. The total average]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
latency time in ms for all lock states for grants.
No value(s) available!

gfs2.latency.grant.concurrent_read PMID: 115.5.2 [Average time in ms to concurrent read]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
lock state. The total average latency time in ms to change to concurrent read
lock state for grants.
No value(s) available!

gfs2.latency.grant.concurrent_write PMID: 115.5.3 [Average time in ms to concurrent write]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
lock state. The total average latency time in ms to change to concurrent write
lock state for grants.
No value(s) available!

gfs2.latency.grant.exclusive PMID: 115.5.6 [Average time in ms to exclusive lock state. The]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
total average latency time in ms to change to exclusive lock state for grants.
No value(s) available!

gfs2.latency.grant.null_lock PMID: 115.5.1 [Average time in ms to null lock state. The]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
total average latency time in ms to change to null lock state for grants.
No value(s) available!

gfs2.latency.grant.protected_read PMID: 115.5.4 [Average time in ms to protected read]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
lock state. The total average latency time in ms to change to protected read
lock state for grants.
No value(s) available!

gfs2.latency.grant.protected_write PMID: 115.5.5 [Average time in ms to protected write]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
lock state. The total average latency time in ms to change to protected write
lock state for grants.
No value(s) available!

gfs2.latency.queue.all PMID: 115.5.14 [Average time in ms for all states. The total average]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
latency time in ms for all lock states for queues.
No value(s) available!

gfs2.latency.queue.concurrent_read PMID: 115.5.16 [Average time in ms to concurrent read]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
lock state. The total average latency time in ms to change to concurrent read
lock state for queues.
No value(s) available!

gfs2.latency.queue.concurrent_write PMID: 115.5.17 [Average time in ms to concurrent write]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
lock state. The total average latency time in ms to change to concurrent write
lock state for queues.
No value(s) available!

gfs2.latency.queue.exclusive PMID: 115.5.20 [Average time in ms to exclusive lock state.]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The total average latency time in ms to change to exclusive lock state for 
queues.
No value(s) available!

gfs2.latency.queue.null_lock PMID: 115.5.15 [Average time in ms to null lock state. The]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
total average latency time in ms to change to null lock state for queues.
No value(s) available!

gfs2.latency.queue.protected_read PMID: 115.5.18 [Average time in ms to protected read]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
lock state. The total average latency time in ms to change to protected read
lock state for queues.
No value(s) available!

gfs2.latency.queue.protected_write PMID: 115.5.19 [Average time in ms to protected write]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
lock state. The total average latency time in ms to change to protected write
lock state for queues.
No value(s) available!

gfs2.sbstats.flock.dlm PMID: 115.1.54 [Count of Distributed Lock Manager requests for flock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of Distributed Lock Manager requests for flock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.queue PMID: 115.1.55 [Count of gfs2_holder queues for flock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of gfs2_holder queues for flock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.sirt PMID: 115.1.52 [Smoothed inter-request time for flock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request time for flock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.sirtvar PMID: 115.1.53 [Smoothed inter-request variance for flock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request variance for flock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.srtt PMID: 115.1.48 [Non-blocking smoothed round trip time for flock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed round trip time for flock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.srttb PMID: 115.1.50 [Blocking smoothed round trip time for flock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed round trip time for flock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.srttvar PMID: 115.1.49 [Non-blocking smoothed variance for flock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed variance for flock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.srttvarb PMID: 115.1.51 [Blocking smoothed variance for flock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed variance for flock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.dlm PMID: 115.1.22 [Count of Distributed Lock Manager requests for inode glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of Distributed Lock Manager requests for inode glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.queue PMID: 115.1.23 [Count of gfs2_holder queues for inode glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of gfs2_holder queues for inode glocks
    inst [0 or "loop0"] value 38

gfs2.sbstats.inode.sirt PMID: 115.1.20 [Smoothed inter-request time for inode glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request time for inode glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.sirtvar PMID: 115.1.21 [Smoothed inter-request variance for inode glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request variance for inode glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.srtt PMID: 115.1.16 [Non-blocking smoothed round trip time for inode glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed round trip time for inode glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.srttb PMID: 115.1.18 [Blocking smoothed round trip time for inode glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed round trip time for inode glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.srttvar PMID: 115.1.17 [Non-blocking smoothed variance for inode glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed variance for inode glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.srttvarb PMID: 115.1.19 [Blocking smoothed variance for inode glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed variance for inode glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.dlm PMID: 115.1.46 [Count of Distributed Lock Manager requests for iopen glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of Distributed Lock Manager requests for iopen glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.queue PMID: 115.1.47 [Count of gfs2_holder queues for iopen glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of gfs2_holder queues for iopen glocks
    inst [0 or "loop0"] value 11

gfs2.sbstats.iopen.sirt PMID: 115.1.44 [Smoothed inter-request time for iopen glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request time for iopen glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.sirtvar PMID: 115.1.45 [Smoothed inter-request variance for iopen glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request variance for iopen glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.srtt PMID: 115.1.40 [Non-blocking smoothed round trip time for iopen glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed round trip time for iopen glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.srttb PMID: 115.1.42 [Blocking smoothed round trip time for iopen glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed round trip time for iopen glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.srttvar PMID: 115.1.41 [Non-blocking smoothed variance for iopen glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed variance for iopen glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.srttvarb PMID: 115.1.43 [Blocking smoothed variance for iopen glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed variance for iopen glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.dlm PMID: 115.1.78 [Count of Distributed Lock Manager requests for journal glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of Distributed Lock Manager requests for journal glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.queue PMID: 115.1.79 [Count of gfs2_holder queues for journal glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of gfs2_holder queues for journal glocks
    inst [0 or "loop0"] value 1

gfs2.sbstats.journal.sirt PMID: 115.1.76 [Smoothed inter-request time for journal glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request time for journal glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.sirtvar PMID: 115.1.77 [Smoothed inter-request variance for journal glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request variance for journal glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.srtt PMID: 115.1.72 [Non-blocking smoothed round trip time for journal glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed round trip time for journal glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.srttb PMID: 115.1.74 [Blocking smoothed round trip time for journal glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed round trip time for journal glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.srttvar PMID: 115.1.73 [Non-blocking smoothed variance for journal glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed variance for journal glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.srttvarb PMID: 115.1.75 [Blocking smoothed variance for journal glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed variance for journal glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.dlm PMID: 115.1.38 [Count of Distributed Lock Manager requests for meta glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of Distributed Lock Manager requests for meta glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.queue PMID: 115.1.39 [Count of gfs2_holder queues for meta glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of gfs2_holder queues for meta glocks
    inst [0 or "loop0"] value 1

gfs2.sbstats.meta.sirt PMID: 115.1.36 [Smoothed inter-request time for meta glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request time for meta glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.sirtvar PMID: 115.1.37 [Smoothed inter-request variance for meta glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request variance for meta glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.srtt PMID: 115.1.32 [Non-blocking smoothed round trip time for meta glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed round trip time for meta glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.srttb PMID: 115.1.34 [Blocking smoothed round trip time for meta glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed round trip time for meta glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.srttvar PMID: 115.1.33 [Non-blocking smoothed variance for meta glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed variance for meta glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.srttvarb PMID: 115.1.35 [Blocking smoothed variance for meta glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed variance for meta glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.dlm PMID: 115.1.14 [Count of Distributed Lock Manager requests for nondisk glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of Distributed Lock Manager requests for nondisk glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.queue PMID: 115.1.15 [Count of gfs2_holder queues for nondisk glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of gfs2_holder queues for nondisk glocks
    inst [0 or "loop0"] value 3

gfs2.sbstats.nondisk.sirt PMID: 115.1.12 [Smoothed inter-request time for nondisk glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request time for nondisk glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.sirtvar PMID: 115.1.13 [Smoothed inter-request variance for nondisk glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request variance for nondisk glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.srtt PMID: 115.1.8 [Non-blocking smoothed round trip time for nondisk glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed round trip time for nondisk glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.srttb PMID: 115.1.10 [Blocking smoothed round trip time for nondisk glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed round trip time for nondisk glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.srttvar PMID: 115.1.9 [Non-blocking smoothed variance for nondisk glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed variance for nondisk glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.srttvarb PMID: 115.1.11 [Blocking smoothed variance for nondisk glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed variance for nondisk glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.dlm PMID: 115.1.62 [Count of Distributed Lock Manager requests for plock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of Distributed Lock Manager requests for plock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.queue PMID: 115.1.63 [Count of gfs2_holder queues for plock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of gfs2_holder queues for plock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.sirt PMID: 115.1.60 [Smoothed inter-request time for plock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request time for plock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.sirtvar PMID: 115.1.61 [Smoothed inter-request variance for plock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request variance for plock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.srtt PMID: 115.1.56 [Non-blocking smoothed round trip time for plock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed round trip time for plock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.srttb PMID: 115.1.58 [Blocking smoothed round trip time for plock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed round trip time for plock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.srttvar PMID: 115.1.57 [Non-blocking smoothed variance for plock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed variance for plock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.srttvarb PMID: 115.1.59 [Blocking smoothed variance for plock glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed variance for plock glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.dlm PMID: 115.1.70 [Count of Distributed Lock Manager requests for quota glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of Distributed Lock Manager requests for quota glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.queue PMID: 115.1.71 [Count of gfs2_holder queues for quota glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of gfs2_holder queues for quota glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.sirt PMID: 115.1.68 [Smoothed inter-request time for quota glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request time for quota glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.sirtvar PMID: 115.1.69 [Smoothed inter-request variance for quota glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request variance for quota glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.srtt PMID: 115.1.64 [Non-blocking smoothed round trip time for quota glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed round trip time for quota glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.srttb PMID: 115.1.66 [Blocking smoothed round trip time for quota glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed round trip time for quota glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.srttvar PMID: 115.1.65 [Non-blocking smoothed variance for quota glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed variance for quota glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.srttvarb PMID: 115.1.67 [Blocking smoothed variance for quota glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed variance for quota glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.dlm PMID: 115.1.6 [Count of Distributed Lock Manager requests for reserved glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of Distributed Lock Manager requests for reserved glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.queue PMID: 115.1.7 [Count of gfs2_holder queues for reserved glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of gfs2_holder queues for reserved glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.sirt PMID: 115.1.4 [Smoothed inter-request time for reserved glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request time for reserved glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.sirtvar PMID: 115.1.5 [Smoothed inter-request variance for reserved glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request variance for reserved glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.srtt PMID: 115.1.0 [Non-blocking smoothed round trip time for reserved glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed round trip time for reserved glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.srttb PMID: 115.1.2 [Blocking smoothed round trip time for reserved glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed round trip time for reserved glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.srttvar PMID: 115.1.1 [Non-blocking smoothed variance for reserved glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed variance for reserved glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.srttvarb PMID: 115.1.3 [Blocking smoothed variance for reserved glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed variance for reserved glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.dlm PMID: 115.1.30 [Count of Distributed Lock Manager requests for rgrp glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of Distributed Lock Manager requests for rgrp glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.queue PMID: 115.1.31 [Count of gfs2_holder queues for rgrp glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: counter  Units: count
Help:
Count of gfs2_holder queues for rgrp glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.sirt PMID: 115.1.28 [Smoothed inter-request time for rgrp glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request time for rgrp glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.sirtvar PMID: 115.1.29 [Smoothed inter-request variance for rgrp glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Smoothed inter-request variance for rgrp glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.srtt PMID: 115.1.24 [Non-blocking smoothed round trip time for rgrp glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed round trip time for rgrp glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.srttb PMID: 115.1.26 [Blocking smoothed round trip time for rgrp glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed round trip time for rgrp glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.srttvar PMID: 115.1.25 [Non-blocking smoothed variance for rgrp glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Non-blocking smoothed variance for rgrp glocks
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.srttvarb PMID: 115.1.27 [Blocking smoothed variance for rgrp glocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: none
Help:
Blocking smoothed variance for rgrp glocks
    inst [0 or "loop0"] value 0

gfs2.tracepoints.ail_flush.total PMID: 115.3.68 [Total AIL flushes. The total number of]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
flushes back to the AIL.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.block_alloc.dinode PMID: 115.3.72 [Dinode blocks. The number of blocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
used for dinode.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.block_alloc.free PMID: 115.3.70 [Freed blocks. The number of blocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
freed. 
    inst [0 or "loop0"] value 0

gfs2.tracepoints.block_alloc.total PMID: 115.3.69 [Total blocks allocated/deallocated. ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The total number of allocated/freed blocks this call.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.block_alloc.unlinked PMID: 115.3.73 [Unlinked blocks. The number of]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
unlinked blocks.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.block_alloc.used PMID: 115.3.71 [Used blocks. The number of blocks]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
used.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.bmap.create PMID: 115.3.75 [Number of create bmap allocations. The number]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
of create bmap allocations.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.bmap.nocreate PMID: 115.3.76 [Number of nocreate bmap allocations. The]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
number of nocreate bmap allocations.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.bmap.total PMID: 115.3.74 [Total number of bmap allocations. The total]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
number of bmap allocations.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.demote_rq.concurrent_read PMID: 115.3.18 [Number of lock demote requests to]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
concurrent_read. The total number of lock demotion requests to the 
concurrent_read state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.demote_rq.concurrent_write PMID: 115.3.19 [Number of lock demote requests to]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
concurrent_write. The total number of lock demotion requests to the 
concurrent_write state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.demote_rq.exclusive PMID: 115.3.22 [Number of lock demote requests to]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
exclusive. The total number of lock demotion requests to the 
exclusive state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.demote_rq.null_lock PMID: 115.3.17 [Number of lock demote requests to]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
null_lock. The total number of lock demotion requests to the null_lock state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.demote_rq.protected_read PMID: 115.3.20 [Number of lock demote requests to]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
protected_read. The total number of lock demotion requests to the 
protected_read state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.demote_rq.protected_write PMID: 115.3.21 [Number of lock demote requests to]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
protected_write. The total number of lock demotion requests to the 
protected_write state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.demote_rq.requested.local PMID: 115.3.24 [Number of demote requests (local).]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The total number of demote requests which were requested by a local node of
the cluster
    inst [0 or "loop0"] value 0

gfs2.tracepoints.demote_rq.requested.remote PMID: 115.3.23 [Number of demote requests (remote).]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The total number of demote requests which were requested by a remote node of
the cluster.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.demote_rq.total PMID: 115.3.16 [Total number of lock demote requests.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The total number of lock demotion requests.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_lock_time.flock PMID: 115.3.59 [Number of flock lock updates.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The number of updates for flock based glocks.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_lock_time.inode PMID: 115.3.55 [Number of inode lock updates.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The number of updates for inode based glocks.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_lock_time.iopen PMID: 115.3.58 [Number of iopen lock updates.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The number of updates for iopen based glocks.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_lock_time.journal PMID: 115.3.61 [Number of journal lock updates.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The number of updates for journal based glocks.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_lock_time.meta PMID: 115.3.57 [Number of metadata lock updates.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The number of updates for metadata based glocks.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_lock_time.quota PMID: 115.3.60 [Number of quota lock updates.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The number of updates for quota based glocks.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_lock_time.rgrp PMID: 115.3.56 [Number of resource group lock updates.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The number of updates for resource group based glocks.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_lock_time.total PMID: 115.3.53 [Total number of lock updates.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The total number of lock updates.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_lock_time.trans PMID: 115.3.54 [Number of transaction lock updates.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The number of updates for transaction based glocks.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_put.concurrent_read PMID: 115.3.11 [Number of glocks put]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
in concurrent_read. The number of glocks put into the concurrent_read
state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_put.concurrent_write PMID: 115.3.12 [Number of glocks put]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
in concurrent_write. The number of glocks put into the concurrent_write
state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_put.exclusive PMID: 115.3.15 [Number of glocks put]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
in exclusive. The number of glocks put into the exclusive
state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_put.null_lock PMID: 115.3.10 [Number of released locks.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The number of glocks put into the null_lock state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_put.protected_read PMID: 115.3.13 [Number of glocks put]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
in protected_read. The number of glocks put into the protected_read
state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_put.protected_write PMID: 115.3.14 [Number of glocks put]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
in protected_wirte. The number of glocks put into the protected_write
state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_put.total PMID: 115.3.9 [Total number of glocks changed.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The total number of glocks that have been changed.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.dequeue.concurrent_read PMID: 115.3.48 [Number of concurrent_read ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests. The number of lock requests to the concurrent_read state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.dequeue.concurrent_write PMID: 115.3.49 [Number of concurrent_write ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests. The number of lock requests to the concurrent_write state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.dequeue.exclusive PMID: 115.3.52 [Number of exclusive ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests. The number of lock requests to the exclusive state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.dequeue.null_lock PMID: 115.3.47 [Number of null_lock requests. The]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
number of lock requests to the null_lock state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.dequeue.protected_read PMID: 115.3.50 [Number of protected_read ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests. The number of lock requests to the protected_read state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.dequeue.protected_write PMID: 115.3.51 [Number of protected_write ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests. The number of lock requests to the protected_write state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.dequeue.total PMID: 115.3.46 [Total number of dequeued lock requests.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The total number of dequeued lock requests.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.queue.concurrent_read PMID: 115.3.41 [Number of concurrent_read ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests. The number of lock requests to the concurrent_read state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.queue.concurrent_write PMID: 115.3.42 [Number of concurrent_write ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests. The number of lock requests to the concurrent_write state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.queue.exclusive PMID: 115.3.45 [Number of exclusive ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests. The number of lock requests to the exclusive state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.queue.null_lock PMID: 115.3.40 [Number of null_lock requests. The]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
number of lock requests to the null_lock state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.queue.protected_read PMID: 115.3.43 [Number of protected_read ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests. The number of lock requests to the protected_read state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.queue.protected_write PMID: 115.3.44 [Number of protected_write ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests. The number of lock requests to the protected_write state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.queue.total PMID: 115.3.39 [Total number of queued lock requests.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The total number of queued lock requests.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_queue.total PMID: 115.3.38 [Total numbe rof queued and dequeued]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests. The total number of both queued and dequeued requests.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_state_change.concurrent_read PMID: 115.3.2 [Number of]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
concurrent_read state changes. The total number of glock state changes
to current_read state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_state_change.concurrent_write PMID: 115.3.3 [Number of ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
concurrent_write state changes. The total number of glock state changes
to current_write state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_state_change.exclusive PMID: 115.3.6 [Number of exclusive state]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
changes. The total number of glock state changes to exclusive state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_state_change.glocks.changed_target PMID: 115.3.7 [Number of]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
changed locks. The number of state changes that achieved their expected
state change.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_state_change.glocks.missed_target PMID: 115.3.8 [Number of ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
missed locks. The number of state changes that did not achieve their
expected state change.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_state_change.null_lock PMID: 115.3.1 [Number of null_lock state]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
changes. The total number of glock state changes to the null_lock state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_state_change.protected_read PMID: 115.3.4 [Number of ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
protected_read state changes. The total number of glock state changes to
protected_read state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_state_change.protected_write PMID: 115.3.5 [Number of]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
protected_write state changes. The total number of glock state changes to
protected_write state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.glock_state_change.total PMID: 115.3.0 [Total number of glock state]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
changes. The total number of counted glock state changes.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.log_block.total PMID: 115.3.67 [Total log blocks. The total number of]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
blocks placed upon the log.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.log_flush.total PMID: 115.3.66 [Total log flushes. The total number of]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
log flushes observed
    inst [0 or "loop0"] value 0

gfs2.tracepoints.pin.longest_pinned PMID: 115.3.65 [Longest pinned. The longest pinned]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
inode or resource group log block
    inst [0 or "loop0"] value 0

gfs2.tracepoints.pin.pin_total PMID: 115.3.63 [Number of pin requests. The total number of]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests to pin blocks on the log.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.pin.total PMID: 115.3.62 [Total number of Pin/Unpin requests. The total]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
number of requests to pin/unpin blocks on the log.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.pin.unpin_total PMID: 115.3.64 [Number of unpin requests. The total number]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
requests to unpin blocks on the log.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.first.concurrent_read PMID: 115.3.27 [Number of lock state to ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
concurrent_read. The total number of successful first time lock state to the 
concurrent_read state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.first.concurrent_write PMID: 115.3.28 [Number of lock state to ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
concurrent_write. The total number of successful first time lock state to the 
concurrent_write state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.first.exclusive PMID: 115.3.31 [Number of lock state to ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
exclusive. The total number of successful first time lock state to the 
exclusive state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.first.null_lock PMID: 115.3.26 [Number of lock state to null_lock.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The total number of successful first time lock state to the null_lock state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.first.protected_read PMID: 115.3.29 [Number of lock state to ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
protected_read. The total number of successful first time lock state to the 
protected_read state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.first.protected_write PMID: 115.3.30 [Number of lock state to ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
protected_write. The total number of successful first time lock state to the 
protected_write state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.other.concurrent_read PMID: 115.3.33 [Number of lock state to ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
concurrent_read. The total number of successful other time lock state to the 
concurrent_read state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.other.concurrent_write PMID: 115.3.34 [Number of lock state to ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
concurrent_write. The total number of successful other time lock state to the 
concurrent_write state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.other.exclusive PMID: 115.3.37 [Number of lock state to ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
exclusive. The total number of successful other time lock state to the 
exclusive state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.other.null_lock PMID: 115.3.32 [Number of lock state to null_lock.]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
The total number of successful other time lock state to the null_lock state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.other.protected_read PMID: 115.3.35 [Number of lock state to ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
protected_read. The total number of successful other time lock state to the 
protected_read state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.other.protected_write PMID: 115.3.36 [Number of lock state to ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
protected_write. The total number of successful other time lock state to the 
protected_write state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.promote.total PMID: 115.3.25 [Total number of lock state. The total number]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
of lock state.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.rs.clm PMID: 115.3.81 [Number of resource group claims. The total number of ]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
resource group claim calls.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.rs.del PMID: 115.3.78 [Number of resource group delete. The total number of]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
resource group delete calls.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.rs.ins PMID: 115.3.80 [Number of resource group insert. The total number of]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
resource group insert calls.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.rs.tdel PMID: 115.3.79 [Number of resource group tree delete. The total number]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
of resource group tree delete calls.
    inst [0 or "loop0"] value 0

gfs2.tracepoints.rs.total PMID: 115.3.77 [Total multi-block allocations. The total number]
    Data Type: 64-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
of multi-block allocations. 
    inst [0 or "loop0"] value 0

gfs2.worst_glock.eighth.dlm PMID: 115.4.78 [Count of Distributed Lock Manager requests for eighth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of Distributed Lock Manager requests for eighth worst glock
No value(s) available!

gfs2.worst_glock.eighth.lock_type PMID: 115.4.70 [Glock type number for eighth worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Glock type number for eighth worst glock
No value(s) available!

gfs2.worst_glock.eighth.number PMID: 115.4.71 [Inode or resource group number for eighth worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Inode or resource group number for eighth worst glock
No value(s) available!

gfs2.worst_glock.eighth.queue PMID: 115.4.79 [Count of gfs2_holder queues for eighth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of gfs2_holder queues for eighth worst glock
No value(s) available!

gfs2.worst_glock.eighth.sirt PMID: 115.4.76 [Smoothed Inter-request time for eighth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request time for eighth worst glock
No value(s) available!

gfs2.worst_glock.eighth.sirtvar PMID: 115.4.77 [Smoothed Inter-request variance for eighth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request variance for eighth worst glock
No value(s) available!

gfs2.worst_glock.eighth.srtt PMID: 115.4.72 [Non-blocking smoothed round trip time for eighth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed round trip time for eighth worst glock
No value(s) available!

gfs2.worst_glock.eighth.srttb PMID: 115.4.74 [Blocking smoothed round trip time for eighth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed round trip time for eighth worst glock
No value(s) available!

gfs2.worst_glock.eighth.srttvar PMID: 115.4.73 [Non-blocking smoothed variance for eighth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed variance for eighth worst glock
No value(s) available!

gfs2.worst_glock.eighth.srttvarb PMID: 115.4.75 [Blocking smoothed variance for eighth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed variance for eighth worst glock
No value(s) available!

gfs2.worst_glock.fifth.dlm PMID: 115.4.48 [Count of Distributed Lock Manager requests for fifth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of Distributed Lock Manager requests for fifth worst glock
No value(s) available!

gfs2.worst_glock.fifth.lock_type PMID: 115.4.40 [Glock type number for fifth worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Glock type number for fifth worst glock
No value(s) available!

gfs2.worst_glock.fifth.number PMID: 115.4.41 [Inode or resource group number for fifth worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Inode or resource group number for fifth worst glock
No value(s) available!

gfs2.worst_glock.fifth.queue PMID: 115.4.49 [Count of gfs2_holder queues for fifth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of gfs2_holder queues for fifth worst glock
No value(s) available!

gfs2.worst_glock.fifth.sirt PMID: 115.4.46 [Smoothed Inter-request time for fifth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request time for fifth worst glock
No value(s) available!

gfs2.worst_glock.fifth.sirtvar PMID: 115.4.47 [Smoothed Inter-request variance for fifth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request variance for fifth worst glock
No value(s) available!

gfs2.worst_glock.fifth.srtt PMID: 115.4.42 [Non-blocking smoothed round trip time for fifth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed round trip time for fifth worst glock
No value(s) available!

gfs2.worst_glock.fifth.srttb PMID: 115.4.44 [Blocking smoothed round trip time for fifth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed round trip time for fifth worst glock
No value(s) available!

gfs2.worst_glock.fifth.srttvar PMID: 115.4.43 [Non-blocking smoothed variance for fifth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed variance for fifth worst glock
No value(s) available!

gfs2.worst_glock.fifth.srttvarb PMID: 115.4.45 [Blocking smoothed variance for fifth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed variance for fifth worst glock
No value(s) available!

gfs2.worst_glock.first.dlm PMID: 115.4.8 [Count of Distributed Lock Manager requests for first worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of Distributed Lock Manager requests for first worst glock
No value(s) available!

gfs2.worst_glock.first.lock_type PMID: 115.4.0 [Glock type number for first worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Glock type number for first worst glock
No value(s) available!

gfs2.worst_glock.first.number PMID: 115.4.1 [Inode or resource group number for first worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Inode or resource group number for first worst glock
No value(s) available!

gfs2.worst_glock.first.queue PMID: 115.4.9 [Count of gfs2_holder queues for first worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of gfs2_holder queues for first worst glock
No value(s) available!

gfs2.worst_glock.first.sirt PMID: 115.4.6 [Smoothed Inter-request time for first worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request time for first worst glock
No value(s) available!

gfs2.worst_glock.first.sirtvar PMID: 115.4.7 [Smoothed Inter-request variance for first worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request variance for first worst glock
No value(s) available!

gfs2.worst_glock.first.srtt PMID: 115.4.2 [Non-blocking smoothed round trip time for first worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed round trip time for first worst glock
No value(s) available!

gfs2.worst_glock.first.srttb PMID: 115.4.4 [Blocking smoothed round trip time for first worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed round trip time for first worst glock
No value(s) available!

gfs2.worst_glock.first.srttvar PMID: 115.4.3 [Non-blocking smoothed variance for first worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed variance for first worst glock
No value(s) available!

gfs2.worst_glock.first.srttvarb PMID: 115.4.5 [Blocking smoothed variance for first worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed variance for first worst glock
No value(s) available!

gfs2.worst_glock.fourth.dlm PMID: 115.4.38 [Count of Distributed Lock Manager requests for fourth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of Distributed Lock Manager requests for fourth worst glock
No value(s) available!

gfs2.worst_glock.fourth.lock_type PMID: 115.4.30 [Glock type number for fourth worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Glock type number for fourth worst glock
No value(s) available!

gfs2.worst_glock.fourth.number PMID: 115.4.31 [Inode or resource group number for fourth worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Inode or resource group number for fourth worst glock
No value(s) available!

gfs2.worst_glock.fourth.queue PMID: 115.4.39 [Count of gfs2_holder queues for fourth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of gfs2_holder queues for fourth worst glock
No value(s) available!

gfs2.worst_glock.fourth.sirt PMID: 115.4.36 [Smoothed Inter-request time for fourth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request time for fourth worst glock
No value(s) available!

gfs2.worst_glock.fourth.sirtvar PMID: 115.4.37 [Smoothed Inter-request variance for fourth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request variance for fourth worst glock
No value(s) available!

gfs2.worst_glock.fourth.srtt PMID: 115.4.32 [Non-blocking smoothed round trip time for fourth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed round trip time for fourth worst glock
No value(s) available!

gfs2.worst_glock.fourth.srttb PMID: 115.4.34 [Blocking smoothed round trip time for fourth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed round trip time for fourth worst glock
No value(s) available!

gfs2.worst_glock.fourth.srttvar PMID: 115.4.33 [Non-blocking smoothed variance for fourth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed variance for fourth worst glock
No value(s) available!

gfs2.worst_glock.fourth.srttvarb PMID: 115.4.35 [Blocking smoothed variance for fourth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed variance for fourth worst glock
No value(s) available!

gfs2.worst_glock.ninth.dlm PMID: 115.4.88 [Count of Distributed Lock Manager requests for ninth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of Distributed Lock Manager requests for ninth worst glock
No value(s) available!

gfs2.worst_glock.ninth.lock_type PMID: 115.4.80 [Glock type number for ninth worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Glock type number for ninth worst glock
No value(s) available!

gfs2.worst_glock.ninth.number PMID: 115.4.81 [Inode or resource group number for ninth worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Inode or resource group number for ninth worst glock
No value(s) available!

gfs2.worst_glock.ninth.queue PMID: 115.4.89 [Count of gfs2_holder queues for ninth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of gfs2_holder queues for ninth worst glock
No value(s) available!

gfs2.worst_glock.ninth.sirt PMID: 115.4.86 [Smoothed Inter-request time for ninth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request time for ninth worst glock
No value(s) available!

gfs2.worst_glock.ninth.sirtvar PMID: 115.4.87 [Smoothed Inter-request variance for ninth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request variance for ninth worst glock
No value(s) available!

gfs2.worst_glock.ninth.srtt PMID: 115.4.82 [Non-blocking smoothed round trip time for ninth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed round trip time for ninth worst glock
No value(s) available!

gfs2.worst_glock.ninth.srttb PMID: 115.4.84 [Blocking smoothed round trip time for ninth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed round trip time for ninth worst glock
No value(s) available!

gfs2.worst_glock.ninth.srttvar PMID: 115.4.83 [Non-blocking smoothed variance for ninth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed variance for ninth worst glock
No value(s) available!

gfs2.worst_glock.ninth.srttvarb PMID: 115.4.85 [Blocking smoothed variance for ninth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed variance for ninth worst glock
No value(s) available!

gfs2.worst_glock.second.dlm PMID: 115.4.18 [Count of Distributed Lock Manager requests for second worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of Distributed Lock Manager requests for second worst glock
No value(s) available!

gfs2.worst_glock.second.lock_type PMID: 115.4.10 [Glock type number for second worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Glock type number for second worst glock
No value(s) available!

gfs2.worst_glock.second.number PMID: 115.4.11 [Inode or resource group number for second worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Inode or resource group number for second worst glock
No value(s) available!

gfs2.worst_glock.second.queue PMID: 115.4.19 [Count of gfs2_holder queues for second worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of gfs2_holder queues for second worst glock
No value(s) available!

gfs2.worst_glock.second.sirt PMID: 115.4.16 [Smoothed Inter-request time for second worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request time for second worst glock
No value(s) available!

gfs2.worst_glock.second.sirtvar PMID: 115.4.17 [Smoothed Inter-request variance for second worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request variance for second worst glock
No value(s) available!

gfs2.worst_glock.second.srtt PMID: 115.4.12 [Non-blocking smoothed round trip time for second worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed round trip time for second worst glock
No value(s) available!

gfs2.worst_glock.second.srttb PMID: 115.4.14 [Blocking smoothed round trip time for second worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed round trip time for second worst glock
No value(s) available!

gfs2.worst_glock.second.srttvar PMID: 115.4.13 [Non-blocking smoothed variance for second worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed variance for second worst glock
No value(s) available!

gfs2.worst_glock.second.srttvarb PMID: 115.4.15 [Blocking smoothed variance for second worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed variance for second worst glock
No value(s) available!

gfs2.worst_glock.seventh.dlm PMID: 115.4.68 [Count of Distributed Lock Manager requests for seventh worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of Distributed Lock Manager requests for seventh worst glock
No value(s) available!

gfs2.worst_glock.seventh.lock_type PMID: 115.4.60 [Glock type number for seventh worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Glock type number for seventh worst glock
No value(s) available!

gfs2.worst_glock.seventh.number PMID: 115.4.61 [Inode or resource group number for seventh worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Inode or resource group number for seventh worst glock
No value(s) available!

gfs2.worst_glock.seventh.queue PMID: 115.4.69 [Count of gfs2_holder queues for seventh worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of gfs2_holder queues for seventh worst glock
No value(s) available!

gfs2.worst_glock.seventh.sirt PMID: 115.4.66 [Smoothed Inter-request time for seventh worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request time for seventh worst glock
No value(s) available!

gfs2.worst_glock.seventh.sirtvar PMID: 115.4.67 [Smoothed Inter-request variance for seventh worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request variance for seventh worst glock
No value(s) available!

gfs2.worst_glock.seventh.srtt PMID: 115.4.62 [Non-blocking smoothed round trip time for seventh worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed round trip time for seventh worst glock
No value(s) available!

gfs2.worst_glock.seventh.srttb PMID: 115.4.64 [Blocking smoothed round trip time for seventh worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed round trip time for seventh worst glock
No value(s) available!

gfs2.worst_glock.seventh.srttvar PMID: 115.4.63 [Non-blocking smoothed variance for seventh worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed variance for seventh worst glock
No value(s) available!

gfs2.worst_glock.seventh.srttvarb PMID: 115.4.65 [Blocking smoothed variance for seventh worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed variance for seventh worst glock
No value(s) available!

gfs2.worst_glock.sixth.dlm PMID: 115.4.58 [Count of Distributed Lock Manager requests for sixth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of Distributed Lock Manager requests for sixth worst glock
No value(s) available!

gfs2.worst_glock.sixth.lock_type PMID: 115.4.50 [Glock type number for sixth worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Glock type number for sixth worst glock
No value(s) available!

gfs2.worst_glock.sixth.number PMID: 115.4.51 [Inode or resource group number for sixth worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Inode or resource group number for sixth worst glock
No value(s) available!

gfs2.worst_glock.sixth.queue PMID: 115.4.59 [Count of gfs2_holder queues for sixth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of gfs2_holder queues for sixth worst glock
No value(s) available!

gfs2.worst_glock.sixth.sirt PMID: 115.4.56 [Smoothed Inter-request time for sixth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request time for sixth worst glock
No value(s) available!

gfs2.worst_glock.sixth.sirtvar PMID: 115.4.57 [Smoothed Inter-request variance for sixth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request variance for sixth worst glock
No value(s) available!

gfs2.worst_glock.sixth.srtt PMID: 115.4.52 [Non-blocking smoothed round trip time for sixth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed round trip time for sixth worst glock
No value(s) available!

gfs2.worst_glock.sixth.srttb PMID: 115.4.54 [Blocking smoothed round trip time for sixth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed round trip time for sixth worst glock
No value(s) available!

gfs2.worst_glock.sixth.srttvar PMID: 115.4.53 [Non-blocking smoothed variance for sixth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed variance for sixth worst glock
No value(s) available!

gfs2.worst_glock.sixth.srttvarb PMID: 115.4.55 [Blocking smoothed variance for sixth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed variance for sixth worst glock
No value(s) available!

gfs2.worst_glock.tenth.dlm PMID: 115.4.98 [Count of Distributed Lock Manager requests for tenth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of Distributed Lock Manager requests for tenth worst glock
No value(s) available!

gfs2.worst_glock.tenth.lock_type PMID: 115.4.90 [Glock type number for tenth worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Glock type number for tenth worst glock
No value(s) available!

gfs2.worst_glock.tenth.number PMID: 115.4.91 [Inode or resource group number for tenth worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Inode or resource group number for tenth worst glock
No value(s) available!

gfs2.worst_glock.tenth.queue PMID: 115.4.99 [Count of gfs2_holder queues for tenth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of gfs2_holder queues for tenth worst glock
No value(s) available!

gfs2.worst_glock.tenth.sirt PMID: 115.4.96 [Smoothed Inter-request time for tenth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request time for tenth worst glock
No value(s) available!

gfs2.worst_glock.tenth.sirtvar PMID: 115.4.97 [Smoothed Inter-request variance for tenth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request variance for tenth worst glock
No value(s) available!

gfs2.worst_glock.tenth.srtt PMID: 115.4.92 [Non-blocking smoothed round trip time for tenth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed round trip time for tenth worst glock
No value(s) available!

gfs2.worst_glock.tenth.srttb PMID: 115.4.94 [Blocking smoothed round trip time for tenth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed round trip time for tenth worst glock
No value(s) available!

gfs2.worst_glock.tenth.srttvar PMID: 115.4.93 [Non-blocking smoothed variance for tenth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed variance for tenth worst glock
No value(s) available!

gfs2.worst_glock.tenth.srttvarb PMID: 115.4.95 [Blocking smoothed variance for tenth worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed variance for tenth worst glock
No value(s) available!

gfs2.worst_glock.third.dlm PMID: 115.4.28 [Count of Distributed Lock Manager requests for third worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of Distributed Lock Manager requests for third worst glock
No value(s) available!

gfs2.worst_glock.third.lock_type PMID: 115.4.20 [Glock type number for third worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Glock type number for third worst glock
No value(s) available!

gfs2.worst_glock.third.number PMID: 115.4.21 [Inode or resource group number for third worst glock]
    Data Type: 32-bit unsigned int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Inode or resource group number for third worst glock
No value(s) available!

gfs2.worst_glock.third.queue PMID: 115.4.29 [Count of gfs2_holder queues for third worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Count of gfs2_holder queues for third worst glock
No value(s) available!

gfs2.worst_glock.third.sirt PMID: 115.4.26 [Smoothed Inter-request time for third worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request time for third worst glock
No value(s) available!

gfs2.worst_glock.third.sirtvar PMID: 115.4.27 [Smoothed Inter-request variance for third worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Smoothed Inter-request variance for third worst glock
No value(s) available!

gfs2.worst_glock.third.srtt PMID: 115.4.22 [Non-blocking smoothed round trip time for third worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed round trip time for third worst glock
No value(s) available!

gfs2.worst_glock.third.srttb PMID: 115.4.24 [Blocking smoothed round trip time for third worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed round trip time for third worst glock
No value(s) available!

gfs2.worst_glock.third.srttvar PMID: 115.4.23 [Non-blocking smoothed variance for third worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Non-blocking smoothed variance for third worst glock
No value(s) available!

gfs2.worst_glock.third.srttvarb PMID: 115.4.25 [Blocking smoothed variance for third worst glock]
    Data Type: 64-bit int  InDom: 115.0 0x1cc00000
    Semantics: instant  Units: count
Help:
Blocking smoothed variance for third worst glock
No value(s) available!
== Checking with valgrind - gfs2-root-001.tgz
=== std out ===

gfs2.glocks.total
    inst [0 or "loop0"] value 33

gfs2.sbstats.journal.queue
    inst [0 or "loop0"] value 1

gfs2.sbstats.journal.dlm
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.sirtvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.sirt
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.srttvarb
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.srttb
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.srttvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.journal.srtt
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.queue
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.dlm
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.sirtvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.sirt
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.srttvarb
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.srttb
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.srttvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.quota.srtt
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.queue
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.dlm
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.sirtvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.sirt
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.srttvarb
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.srttb
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.srttvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.plock.srtt
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.queue
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.dlm
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.sirtvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.sirt
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.srttvarb
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.srttb
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.srttvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.flock.srtt
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.queue
    inst [0 or "loop0"] value 11

gfs2.sbstats.iopen.dlm
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.sirtvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.sirt
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.srttvarb
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.srttb
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.srttvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.iopen.srtt
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.queue
    inst [0 or "loop0"] value 1

gfs2.sbstats.meta.dlm
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.sirtvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.sirt
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.srttvarb
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.srttb
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.srttvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.meta.srtt
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.queue
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.dlm
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.sirtvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.sirt
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.srttvarb
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.srttb
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.srttvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.rgrp.srtt
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.queue
    inst [0 or "loop0"] value 38

gfs2.sbstats.inode.dlm
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.sirtvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.sirt
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.srttvarb
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.srttb
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.srttvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.inode.srtt
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.queue
    inst [0 or "loop0"] value 3

gfs2.sbstats.nondisk.dlm
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.sirtvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.sirt
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.srttvarb
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.srttb
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.srttvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.nondisk.srtt
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.queue
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.dlm
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.sirtvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.sirt
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.srttvarb
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.srttb
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.srttvar
    inst [0 or "loop0"] value 0

gfs2.sbstats.reserved.srtt
    inst [0 or "loop0"] value 0

gfs2.holders.total
    inst [0 or "loop0"] value 14

gfs2.glstats.total
    inst [0 or "loop0"] value 29

gfs2.tracepoints.glock_state_change.total
    inst [0 or "loop0"] value 0

gfs2.latency.grant.all
No value(s) available!
=== std err ===
=== filtered valgrind report ===
Memcheck, a memory error detector
Command: pminfo -L -K clear -K add,115,PCP_PMDAS_DIR/gfs2/pmda_gfs2.so,gfs2_init -f gfs2.glocks.total gfs2.sbstats gfs2.holders.total gfs2.glstats.total gfs2.tracepoints.glock_state_change.total gfs2.latency.grant.all
LEAK SUMMARY:
definitely lost: 0 bytes in 0 blocks
indirectly lost: 0 bytes in 0 blocks
ERROR SUMMARY: 0 errors from 0 contexts ...

== done