This file is indexed.

/var/lib/pcp/testsuite/1191.out is in pcp-testsuite 4.0.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
QA output created by 1191
Waiting for pmcd to terminate ...

=== prometheus agent installation ===

prometheus.bad_summary_nometa.sample_counter0001 [Sample counter metric.]
    Data Type: double  InDom: 144.6145 0x24001801
    Semantics: counter  Units: none
Help:
Sample counter metric.
    inst [0 or "0 baz:0.0"] value 0
    inst [1 or "1 baz:0.7"] value 170205394
    inst [2 or "2 baz:1.4"] value 340410788
    inst [3 or "3 baz:2.0999999999999996"] value 510616182
    inst [4 or "4 baz:2.8"] value 680821576

prometheus.bad_summary_nometa.sample_gauge0000 [Sample gauge metric.]
    Data Type: double  InDom: 144.6144 0x24001800
    Semantics: instant  Units: none
Help:
Sample gauge metric.
    inst [0 or "0 bar:0"] value 0
    inst [1 or "1 bar:1"] value 12.1
    inst [2 or "2 bar:2"] value 48.4
    inst [3 or "3 bar:3"] value 108.9
    inst [4 or "4 bar:4"] value 193.6

prometheus.bad_summary_nometa.sample_summary0002 [Sample summary metric has instances.]
    Data Type: double  InDom: 144.6146 0x24001802
    Semantics: instant  Units: none
Help:
Sample summary metric has instances.
    inst [0 or "0 quantile:0.0"] value 0
    inst [1 or "1 quantile:0.25"] value 0.000319246
    inst [2 or "2 quantile:0.5"] value 0.0006384920000000001
    inst [3 or "3 quantile:0.75"] value 0.000957738
    inst [4 or "4 quantile:1.0"] value 0.001276984

prometheus.bad_summary_nometa.sample_summary_count0002 [Sample summary metric has instances.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Sample summary metric has instances.
    value 3636

prometheus.bad_summary_nometa.sample_summary_sum0002 [Sample summary metric has instances.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Sample summary metric has instances.
    value 2.78241354

prometheus.collectd_sample.collectd_cpu_percent [Collectd exporter: 'cpu' Type: 'percent' Dstype: 'api.Gauge' Dsname: 'value']
    Data Type: double  InDom: 144.7168 0x24001c00
    Semantics: instant  Units: none
Help:
Collectd exporter: 'cpu' Type: 'percent' Dstype: 'api.Gauge' Dsname: 'value'
    inst [0 or "0 cpu:0 instance:172-20-12-224 type:idle"] value 97.78894472361809
    inst [1 or "1 cpu:0 instance:172-20-12-224 type:interrupt"] value 0
    inst [2 or "2 cpu:0 instance:172-20-12-224 type:nice"] value 0
    inst [3 or "3 cpu:0 instance:172-20-12-224 type:softirq"] value 0
    inst [4 or "4 cpu:0 instance:172-20-12-224 type:steal"] value 0
    inst [5 or "5 cpu:0 instance:172-20-12-224 type:system"] value 0.3015075376884422
    inst [6 or "6 cpu:0 instance:172-20-12-224 type:user"] value 0.5025125628140703
    inst [7 or "7 cpu:0 instance:172-20-12-224 type:wait"] value 1.407035175879397
    inst [8 or "8 cpu:1 instance:172-20-12-224 type:idle"] value 98.5929648241206
    inst [9 or "9 cpu:1 instance:172-20-12-224 type:interrupt"] value 0
    inst [10 or "10 cpu:1 instance:172-20-12-224 type:nice"] value 0
    inst [11 or "11 cpu:1 instance:172-20-12-224 type:softirq"] value 0
    inst [12 or "12 cpu:1 instance:172-20-12-224 type:steal"] value 0.2010050251256282
    inst [13 or "13 cpu:1 instance:172-20-12-224 type:system"] value 0.3015075376884422
    inst [14 or "14 cpu:1 instance:172-20-12-224 type:user"] value 0.3015075376884422
    inst [15 or "15 cpu:1 instance:172-20-12-224 type:wait"] value 0.6030150753768845
    inst [16 or "16 cpu:2 instance:172-20-12-224 type:idle"] value 99.19517102615694
    inst [17 or "17 cpu:2 instance:172-20-12-224 type:interrupt"] value 0
    inst [18 or "18 cpu:2 instance:172-20-12-224 type:nice"] value 0
    inst [19 or "19 cpu:2 instance:172-20-12-224 type:softirq"] value 0
    inst [20 or "20 cpu:2 instance:172-20-12-224 type:steal"] value 0
    inst [21 or "21 cpu:2 instance:172-20-12-224 type:system"] value 0.4024144869215292
    inst [22 or "22 cpu:2 instance:172-20-12-224 type:user"] value 0.4024144869215292
    inst [23 or "23 cpu:2 instance:172-20-12-224 type:wait"] value 0
    inst [24 or "24 cpu:3 instance:172-20-12-224 type:idle"] value 99.19678714859437
    inst [25 or "25 cpu:3 instance:172-20-12-224 type:interrupt"] value 0
    inst [26 or "26 cpu:3 instance:172-20-12-224 type:nice"] value 0
    inst [27 or "27 cpu:3 instance:172-20-12-224 type:softirq"] value 0
    inst [28 or "28 cpu:3 instance:172-20-12-224 type:steal"] value 0
    inst [29 or "29 cpu:3 instance:172-20-12-224 type:system"] value 0.3012048192771085
    inst [30 or "30 cpu:3 instance:172-20-12-224 type:user"] value 0.5020080321285141
    inst [31 or "31 cpu:3 instance:172-20-12-224 type:wait"] value 0

prometheus.collectd_sample.collectd_disk_disk_io_time_0 [Collectd exporter: 'disk' Type: 'disk_io_time' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7169 0x24001c01
    Semantics: counter  Units: none
Help:
Collectd exporter: 'disk' Type: 'disk_io_time' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 disk:vda instance:172-20-12-224"] value 211795
    inst [1 or "1 disk:vda1 instance:172-20-12-224"] value 190436
    inst [2 or "2 disk:vda2 instance:172-20-12-224"] value 21

prometheus.collectd_sample.collectd_disk_disk_io_time_1 [Collectd exporter: 'disk' Type: 'disk_io_time' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7170 0x24001c02
    Semantics: counter  Units: none
Help:
Collectd exporter: 'disk' Type: 'disk_io_time' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 disk:vda instance:172-20-12-224"] value 2556452
    inst [1 or "1 disk:vda1 instance:172-20-12-224"] value 2528054
    inst [2 or "2 disk:vda2 instance:172-20-12-224"] value 27

prometheus.collectd_sample.collectd_disk_disk_merged_0 [Collectd exporter: 'disk' Type: 'disk_merged' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7171 0x24001c03
    Semantics: counter  Units: none
Help:
Collectd exporter: 'disk' Type: 'disk_merged' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 disk:vda instance:172-20-12-224"] value 24
    inst [1 or "1 disk:vda1 instance:172-20-12-224"] value 24
    inst [2 or "2 disk:vda2 instance:172-20-12-224"] value 0

prometheus.collectd_sample.collectd_disk_disk_merged_1 [Collectd exporter: 'disk' Type: 'disk_merged' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7172 0x24001c04
    Semantics: counter  Units: none
Help:
Collectd exporter: 'disk' Type: 'disk_merged' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 disk:vda instance:172-20-12-224"] value 630
    inst [1 or "1 disk:vda1 instance:172-20-12-224"] value 630
    inst [2 or "2 disk:vda2 instance:172-20-12-224"] value 0

prometheus.collectd_sample.collectd_disk_disk_octets_0 [Collectd exporter: 'disk' Type: 'disk_octets' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7173 0x24001c05
    Semantics: counter  Units: none
Help:
Collectd exporter: 'disk' Type: 'disk_octets' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 disk:vda instance:172-20-12-224"] value 727850496
    inst [1 or "1 disk:vda1 instance:172-20-12-224"] value 725892608
    inst [2 or "2 disk:vda2 instance:172-20-12-224"] value 1138688

prometheus.collectd_sample.collectd_disk_disk_octets_1 [Collectd exporter: 'disk' Type: 'disk_octets' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7174 0x24001c06
    Semantics: counter  Units: none
Help:
Collectd exporter: 'disk' Type: 'disk_octets' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 disk:vda instance:172-20-12-224"] value 166722048
    inst [1 or "1 disk:vda1 instance:172-20-12-224"] value 166722048
    inst [2 or "2 disk:vda2 instance:172-20-12-224"] value 0

prometheus.collectd_sample.collectd_disk_disk_ops_0 [Collectd exporter: 'disk' Type: 'disk_ops' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7175 0x24001c07
    Semantics: counter  Units: none
Help:
Collectd exporter: 'disk' Type: 'disk_ops' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 disk:vda instance:172-20-12-224"] value 12905
    inst [1 or "1 disk:vda1 instance:172-20-12-224"] value 12674
    inst [2 or "2 disk:vda2 instance:172-20-12-224"] value 139

prometheus.collectd_sample.collectd_disk_disk_ops_1 [Collectd exporter: 'disk' Type: 'disk_ops' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7176 0x24001c08
    Semantics: counter  Units: none
Help:
Collectd exporter: 'disk' Type: 'disk_ops' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 disk:vda instance:172-20-12-224"] value 7151
    inst [1 or "1 disk:vda1 instance:172-20-12-224"] value 6388
    inst [2 or "2 disk:vda2 instance:172-20-12-224"] value 0

prometheus.collectd_sample.collectd_disk_disk_time_0 [Collectd exporter: 'disk' Type: 'disk_time' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7177 0x24001c09
    Semantics: counter  Units: none
Help:
Collectd exporter: 'disk' Type: 'disk_time' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 disk:vda instance:172-20-12-224"] value 27198
    inst [1 or "1 disk:vda1 instance:172-20-12-224"] value 27199
    inst [2 or "2 disk:vda2 instance:172-20-12-224"] value 2

prometheus.collectd_sample.collectd_disk_disk_time_1 [Collectd exporter: 'disk' Type: 'disk_time' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7178 0x24001c0a
    Semantics: counter  Units: none
Help:
Collectd exporter: 'disk' Type: 'disk_time' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 disk:vda instance:172-20-12-224"] value 242003
    inst [1 or "1 disk:vda1 instance:172-20-12-224"] value 260282
    inst [2 or "2 disk:vda2 instance:172-20-12-224"] value 0

prometheus.collectd_sample.collectd_disk_pending_operations [Collectd exporter: 'disk' Type: 'pending_operations' Dstype: 'api.Gauge' Dsname: 'value']
    Data Type: double  InDom: 144.7179 0x24001c0b
    Semantics: instant  Units: none
Help:
Collectd exporter: 'disk' Type: 'pending_operations' Dstype: 'api.Gauge' Dsname: 'value'
    inst [0 or "0 disk:vda instance:172-20-12-224"] value 0
    inst [1 or "1 disk:vda1 instance:172-20-12-224"] value 0
    inst [2 or "2 disk:vda2 instance:172-20-12-224"] value 0

prometheus.collectd_sample.collectd_exporter_build_info [A metric with a constant '1' value labeled by version, revision, branch, and goversion from which collectd_exporter was built.]
    Data Type: double  InDom: 144.7180 0x24001c0c
    Semantics: instant  Units: none
Help:
A metric with a constant '1' value labeled by version, revision, branch, and goversion from which collectd_exporter was built.
    inst [0 or "0 branch:cut-0.3.0 goversion:go1.6.2 revision:3abb95c version:0.3.1"] value 1

prometheus.collectd_sample.collectd_interface_if_errors_0 [Collectd exporter: 'interface' Type: 'if_errors' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7181 0x24001c0d
    Semantics: counter  Units: none
Help:
Collectd exporter: 'interface' Type: 'if_errors' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 instance:172-20-12-224 interface:eth0"] value 0

prometheus.collectd_sample.collectd_interface_if_errors_1 [Collectd exporter: 'interface' Type: 'if_errors' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7182 0x24001c0e
    Semantics: counter  Units: none
Help:
Collectd exporter: 'interface' Type: 'if_errors' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 instance:172-20-12-224 interface:eth0"] value 0

prometheus.collectd_sample.collectd_interface_if_octets_0 [Collectd exporter: 'interface' Type: 'if_octets' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7183 0x24001c0f
    Semantics: counter  Units: none
Help:
Collectd exporter: 'interface' Type: 'if_octets' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 instance:172-20-12-224 interface:eth0"] value 14762652

prometheus.collectd_sample.collectd_interface_if_octets_1 [Collectd exporter: 'interface' Type: 'if_octets' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7184 0x24001c10
    Semantics: counter  Units: none
Help:
Collectd exporter: 'interface' Type: 'if_octets' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 instance:172-20-12-224 interface:eth0"] value 534845

prometheus.collectd_sample.collectd_interface_if_packets_0 [Collectd exporter: 'interface' Type: 'if_packets' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7185 0x24001c11
    Semantics: counter  Units: none
Help:
Collectd exporter: 'interface' Type: 'if_packets' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 instance:172-20-12-224 interface:eth0"] value 43352

prometheus.collectd_sample.collectd_interface_if_packets_1 [Collectd exporter: 'interface' Type: 'if_packets' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7186 0x24001c12
    Semantics: counter  Units: none
Help:
Collectd exporter: 'interface' Type: 'if_packets' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 instance:172-20-12-224 interface:eth0"] value 4984

prometheus.collectd_sample.collectd_last_push_timestamp_seconds [Unix timestamp of the last received collectd metrics push in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: sec
Help:
Unix timestamp of the last received collectd metrics push in seconds.
    value 1472825201.754032

prometheus.collectd_sample.collectd_memory [Collectd exporter: 'memory' Type: 'memory' Dstype: 'api.Gauge' Dsname: 'value']
    Data Type: double  InDom: 144.7188 0x24001c14
    Semantics: instant  Units: none
Help:
Collectd exporter: 'memory' Type: 'memory' Dstype: 'api.Gauge' Dsname: 'value'
    inst [0 or "0 instance:172-20-12-224 memory:buffered"] value 897024
    inst [1 or "1 instance:172-20-12-224 memory:cached"] value 786964480
    inst [2 or "2 instance:172-20-12-224 memory:free"] value 845369344
    inst [3 or "3 instance:172-20-12-224 memory:slab_recl"] value 56627200
    inst [4 or "4 instance:172-20-12-224 memory:slab_unrecl"] value 21671936
    inst [5 or "5 instance:172-20-12-224 memory:used"] value 4377649152

prometheus.collectd_sample.collectd_virt_disk_octets_0 [Collectd exporter: 'virt' Type: 'disk_octets' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7189 0x24001c15
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'disk_octets' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:hdc virt:560f9665261043c1aefdeba0b88499d7"] value 0
    inst [1 or "1 instance:560f9665261043c1aefdeba0b88499d7 type:vda virt:560f9665261043c1aefdeba0b88499d7"] value 6228480

prometheus.collectd_sample.collectd_virt_disk_octets_1 [Collectd exporter: 'virt' Type: 'disk_octets' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7190 0x24001c16
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'disk_octets' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:hdc virt:560f9665261043c1aefdeba0b88499d7"] value 0
    inst [1 or "1 instance:560f9665261043c1aefdeba0b88499d7 type:vda virt:560f9665261043c1aefdeba0b88499d7"] value 90112

prometheus.collectd_sample.collectd_virt_disk_ops_0 [Collectd exporter: 'virt' Type: 'disk_ops' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7191 0x24001c17
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'disk_ops' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:hdc virt:560f9665261043c1aefdeba0b88499d7"] value 0
    inst [1 or "1 instance:560f9665261043c1aefdeba0b88499d7 type:vda virt:560f9665261043c1aefdeba0b88499d7"] value 421

prometheus.collectd_sample.collectd_virt_disk_ops_1 [Collectd exporter: 'virt' Type: 'disk_ops' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7192 0x24001c18
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'disk_ops' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:hdc virt:560f9665261043c1aefdeba0b88499d7"] value 0
    inst [1 or "1 instance:560f9665261043c1aefdeba0b88499d7 type:vda virt:560f9665261043c1aefdeba0b88499d7"] value 36

prometheus.collectd_sample.collectd_virt_if_dropped_0 [Collectd exporter: 'virt' Type: 'if_dropped' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7193 0x24001c19
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'if_dropped' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:vnic3.0 virt:560f9665261043c1aefdeba0b88499d7"] value 0

prometheus.collectd_sample.collectd_virt_if_dropped_1 [Collectd exporter: 'virt' Type: 'if_dropped' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7194 0x24001c1a
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'if_dropped' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:vnic3.0 virt:560f9665261043c1aefdeba0b88499d7"] value 0

prometheus.collectd_sample.collectd_virt_if_errors_0 [Collectd exporter: 'virt' Type: 'if_errors' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7195 0x24001c1b
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'if_errors' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:vnic3.0 virt:560f9665261043c1aefdeba0b88499d7"] value 0

prometheus.collectd_sample.collectd_virt_if_errors_1 [Collectd exporter: 'virt' Type: 'if_errors' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7196 0x24001c1c
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'if_errors' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:vnic3.0 virt:560f9665261043c1aefdeba0b88499d7"] value 0

prometheus.collectd_sample.collectd_virt_if_octets_0 [Collectd exporter: 'virt' Type: 'if_octets' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7197 0x24001c1d
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'if_octets' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:vnic3.0 virt:560f9665261043c1aefdeba0b88499d7"] value 1612942

prometheus.collectd_sample.collectd_virt_if_octets_1 [Collectd exporter: 'virt' Type: 'if_octets' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7198 0x24001c1e
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'if_octets' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:vnic3.0 virt:560f9665261043c1aefdeba0b88499d7"] value 726

prometheus.collectd_sample.collectd_virt_if_packets_0 [Collectd exporter: 'virt' Type: 'if_packets' Dstype: 'api.Derive' Dsname: '0']
    Data Type: double  InDom: 144.7199 0x24001c1f
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'if_packets' Dstype: 'api.Derive' Dsname: '0'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:vnic3.0 virt:560f9665261043c1aefdeba0b88499d7"] value 21401

prometheus.collectd_sample.collectd_virt_if_packets_1 [Collectd exporter: 'virt' Type: 'if_packets' Dstype: 'api.Derive' Dsname: '1']
    Data Type: double  InDom: 144.7200 0x24001c20
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'if_packets' Dstype: 'api.Derive' Dsname: '1'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:vnic3.0 virt:560f9665261043c1aefdeba0b88499d7"] value 3

prometheus.collectd_sample.collectd_virt_memory [Collectd exporter: 'virt' Type: 'memory' Dstype: 'api.Gauge' Dsname: 'value']
    Data Type: double  InDom: 144.7201 0x24001c21
    Semantics: instant  Units: none
Help:
Collectd exporter: 'virt' Type: 'memory' Dstype: 'api.Gauge' Dsname: 'value'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:actual_balloon virt:560f9665261043c1aefdeba0b88499d7"] value 268435456
    inst [1 or "1 instance:560f9665261043c1aefdeba0b88499d7 type:available virt:560f9665261043c1aefdeba0b88499d7"] value 255909888
    inst [2 or "2 instance:560f9665261043c1aefdeba0b88499d7 type:major_fault virt:560f9665261043c1aefdeba0b88499d7"] value 1.888933082349218e+22
    inst [3 or "3 instance:560f9665261043c1aefdeba0b88499d7 type:minor_fault virt:560f9665261043c1aefdeba0b88499d7"] value 1.888933082376042e+22
    inst [4 or "4 instance:560f9665261043c1aefdeba0b88499d7 type:rss virt:560f9665261043c1aefdeba0b88499d7"] value 80822272
    inst [5 or "5 instance:560f9665261043c1aefdeba0b88499d7 type:swap_in virt:560f9665261043c1aefdeba0b88499d7"] value 312999936
    inst [6 or "6 instance:560f9665261043c1aefdeba0b88499d7 type:swap_out virt:560f9665261043c1aefdeba0b88499d7"] value 532480
    inst [7 or "7 instance:560f9665261043c1aefdeba0b88499d7 type:total virt:560f9665261043c1aefdeba0b88499d7"] value 268435456
    inst [8 or "8 instance:560f9665261043c1aefdeba0b88499d7 type:unused virt:560f9665261043c1aefdeba0b88499d7"] value 243802112

prometheus.collectd_sample.collectd_virt_virt_cpu_total [Collectd exporter: 'virt' Type: 'virt_cpu_total' Dstype: 'api.Derive' Dsname: 'value']
    Data Type: double  InDom: 144.7202 0x24001c22
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'virt_cpu_total' Dstype: 'api.Derive' Dsname: 'value'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 virt:560f9665261043c1aefdeba0b88499d7"] value 28820000000

prometheus.collectd_sample.collectd_virt_virt_vcpu [Collectd exporter: 'virt' Type: 'virt_vcpu' Dstype: 'api.Derive' Dsname: 'value']
    Data Type: double  InDom: 144.7203 0x24001c23
    Semantics: counter  Units: none
Help:
Collectd exporter: 'virt' Type: 'virt_vcpu' Dstype: 'api.Derive' Dsname: 'value'
    inst [0 or "0 instance:560f9665261043c1aefdeba0b88499d7 type:0 virt:560f9665261043c1aefdeba0b88499d7"] value 9150000000

prometheus.collectd_sample.go_gc_duration_seconds [A summary of the GC invocation durations.]
    Data Type: double  InDom: 144.7204 0x24001c24
    Semantics: instant  Units: sec
Help:
A summary of the GC invocation durations.
    inst [0 or "0 quantile:0"] value 6.3137e-05
    inst [1 or "1 quantile:0.25"] value 0.000226391
    inst [2 or "2 quantile:0.5"] value 0.000246904
    inst [3 or "3 quantile:0.75"] value 0.000267675
    inst [4 or "4 quantile:1"] value 0.000786585

prometheus.collectd_sample.go_gc_duration_seconds_count [A summary of the GC invocation durations.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
A summary of the GC invocation durations.
    value 73

prometheus.collectd_sample.go_gc_duration_seconds_sum [A summary of the GC invocation durations.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
A summary of the GC invocation durations.
    value 0.019577778

prometheus.collectd_sample.go_goroutines [Number of goroutines that currently exist.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Number of goroutines that currently exist.
    value 12

prometheus.collectd_sample.go_memstats_alloc_bytes [Number of bytes allocated and still in use.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes allocated and still in use.
    value 2443056

prometheus.collectd_sample.go_memstats_alloc_bytes_total [Total number of bytes allocated, even if freed.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: byte
Help:
Total number of bytes allocated, even if freed.
    value 179013592

prometheus.collectd_sample.go_memstats_buck_hash_sys_bytes [Number of bytes used by the profiling bucket hash table.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes used by the profiling bucket hash table.
    value 1453583

prometheus.collectd_sample.go_memstats_frees_total [Total number of frees.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Total number of frees.
    value 568013

prometheus.collectd_sample.go_memstats_gc_sys_bytes [Number of bytes used for garbage collection system metadata.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes used for garbage collection system metadata.
    value 223232

prometheus.collectd_sample.go_memstats_heap_alloc_bytes [Number of heap bytes allocated and still in use.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of heap bytes allocated and still in use.
    value 2443056

prometheus.collectd_sample.go_memstats_heap_idle_bytes [Number of heap bytes waiting to be used.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of heap bytes waiting to be used.
    value 2711552

prometheus.collectd_sample.go_memstats_heap_inuse_bytes [Number of heap bytes that are in use.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of heap bytes that are in use.
    value 3121152

prometheus.collectd_sample.go_memstats_heap_objects [Number of allocated objects.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Number of allocated objects.
    value 7835

prometheus.collectd_sample.go_memstats_heap_released_bytes_total [Total number of heap bytes released to OS.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: byte
Help:
Total number of heap bytes released to OS.
    value 0

prometheus.collectd_sample.go_memstats_heap_sys_bytes [Number of heap bytes obtained from system.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of heap bytes obtained from system.
    value 5832704

prometheus.collectd_sample.go_memstats_last_gc_time_seconds [Number of seconds since 1970 of last garbage collection.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: sec
Help:
Number of seconds since 1970 of last garbage collection.
    value 1472825200.216967

prometheus.collectd_sample.go_memstats_lookups_total [Total number of pointer lookups.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Total number of pointer lookups.
    value 996

prometheus.collectd_sample.go_memstats_mallocs_total [Total number of mallocs.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Total number of mallocs.
    value 575848

prometheus.collectd_sample.go_memstats_mcache_inuse_bytes [Number of bytes in use by mcache structures.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes in use by mcache structures.
    value 4800

prometheus.collectd_sample.go_memstats_mcache_sys_bytes [Number of bytes used for mcache structures obtained from system.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes used for mcache structures obtained from system.
    value 16384

prometheus.collectd_sample.go_memstats_mspan_inuse_bytes [Number of bytes in use by mspan structures.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes in use by mspan structures.
    value 21960

prometheus.collectd_sample.go_memstats_mspan_sys_bytes [Number of bytes used for mspan structures obtained from system.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes used for mspan structures obtained from system.
    value 32768

prometheus.collectd_sample.go_memstats_next_gc_bytes [Number of heap bytes when next garbage collection will take place.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of heap bytes when next garbage collection will take place.
    value 4350551

prometheus.collectd_sample.go_memstats_other_sys_bytes [Number of bytes used for other system allocations.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes used for other system allocations.
    value 1295081

prometheus.collectd_sample.go_memstats_stack_inuse_bytes [Number of bytes in use by the stack allocator.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes in use by the stack allocator.
    value 458752

prometheus.collectd_sample.go_memstats_stack_sys_bytes [Number of bytes obtained from system for stack allocator.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes obtained from system for stack allocator.
    value 458752

prometheus.collectd_sample.go_memstats_sys_bytes [Number of bytes obtained by system. Sum of all system allocations.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes obtained by system. Sum of all system allocations.
    value 9312504

prometheus.collectd_sample.http_request_duration_microseconds [The HTTP request latencies in microseconds.]
    Data Type: double  InDom: 144.7231 0x24001c3f
    Semantics: instant  Units: microsec
Help:
The HTTP request latencies in microseconds.
    inst [0 or "0 handler:prometheus quantile:0.5"] value 2424.361
    inst [1 or "1 handler:prometheus quantile:0.9"] value 2667.98
    inst [2 or "2 handler:prometheus quantile:0.99"] value 2793.404

prometheus.collectd_sample.http_request_duration_microseconds_count [The HTTP request latencies in microseconds.]
    Data Type: double  InDom: 144.7233 0x24001c41
    Semantics: counter  Units: count
Help:
The HTTP request latencies in microseconds.
    inst [0 or "0 handler:prometheus"] value 97

prometheus.collectd_sample.http_request_duration_microseconds_sum [The HTTP request latencies in microseconds.]
    Data Type: double  InDom: 144.7232 0x24001c40
    Semantics: counter  Units: microsec
Help:
The HTTP request latencies in microseconds.
    inst [0 or "0 handler:prometheus"] value 218535.36

prometheus.collectd_sample.http_request_size_bytes [The HTTP request sizes in bytes.]
    Data Type: double  InDom: 144.7234 0x24001c42
    Semantics: instant  Units: byte
Help:
The HTTP request sizes in bytes.
    inst [0 or "0 handler:prometheus quantile:0.5"] value 309
    inst [1 or "1 handler:prometheus quantile:0.9"] value 309
    inst [2 or "2 handler:prometheus quantile:0.99"] value 309

prometheus.collectd_sample.http_request_size_bytes_count [The HTTP request sizes in bytes.]
    Data Type: double  InDom: 144.7236 0x24001c44
    Semantics: counter  Units: count
Help:
The HTTP request sizes in bytes.
    inst [0 or "0 handler:prometheus"] value 97

prometheus.collectd_sample.http_request_size_bytes_sum [The HTTP request sizes in bytes.]
    Data Type: double  InDom: 144.7235 0x24001c43
    Semantics: counter  Units: byte
Help:
The HTTP request sizes in bytes.
    inst [0 or "0 handler:prometheus"] value 30504

prometheus.collectd_sample.http_requests_total [Total number of HTTP requests made.]
    Data Type: double  InDom: 144.7237 0x24001c45
    Semantics: counter  Units: none
Help:
Total number of HTTP requests made.
    inst [0 or "0 code:200 handler:prometheus method:get"] value 97

prometheus.collectd_sample.http_response_size_bytes [The HTTP response sizes in bytes.]
    Data Type: double  InDom: 144.7238 0x24001c46
    Semantics: instant  Units: byte
Help:
The HTTP response sizes in bytes.
    inst [0 or "0 handler:prometheus quantile:0.5"] value 3163
    inst [1 or "1 handler:prometheus quantile:0.9"] value 3181
    inst [2 or "2 handler:prometheus quantile:0.99"] value 3185

prometheus.collectd_sample.http_response_size_bytes_count [The HTTP response sizes in bytes.]
    Data Type: double  InDom: 144.7240 0x24001c48
    Semantics: counter  Units: count
Help:
The HTTP response sizes in bytes.
    inst [0 or "0 handler:prometheus"] value 97

prometheus.collectd_sample.http_response_size_bytes_sum [The HTTP response sizes in bytes.]
    Data Type: double  InDom: 144.7239 0x24001c47
    Semantics: counter  Units: byte
Help:
The HTTP response sizes in bytes.
    inst [0 or "0 handler:prometheus"] value 304464

prometheus.collectd_sample.process_cpu_seconds_total [Total user and system CPU time spent in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
Total user and system CPU time spent in seconds.
    value 0.48

prometheus.collectd_sample.process_max_fds [Maximum number of open file descriptors.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Maximum number of open file descriptors.
    value 1024

prometheus.collectd_sample.process_open_fds [Number of open file descriptors.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Number of open file descriptors.
    value 10

prometheus.collectd_sample.process_resident_memory_bytes [Resident memory size in bytes.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Resident memory size in bytes.
    value 9674752

prometheus.collectd_sample.process_start_time_seconds [Start time of the process since unix epoch in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: sec
Help:
Start time of the process since unix epoch in seconds.
    value 1472824259.12

prometheus.collectd_sample.process_virtual_memory_bytes [Virtual memory size in bytes.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Virtual memory size in bytes.
    value 17334272

prometheus.good_summary_nometa.sample_counter0010 [Sample counter metric.]
    Data Type: double  InDom: 144.12289 0x24003001
    Semantics: counter  Units: none
Help:
Sample counter metric.
    inst [0 or "0 baz:0.0"] value 0
    inst [1 or "1 baz:0.7"] value 1702053940
    inst [2 or "2 baz:1.4"] value 3404107880
    inst [3 or "3 baz:2.0999999999999996"] value 5106161820
    inst [4 or "4 baz:2.8"] value 6808215760

prometheus.good_summary_nometa.sample_gauge0009 [Sample gauge metric.]
    Data Type: double  InDom: 144.12288 0x24003000
    Semantics: instant  Units: none
Help:
Sample gauge metric.
    inst [0 or "0 bar:0"] value 0
    inst [1 or "1 bar:1"] value 12.1
    inst [2 or "2 bar:2"] value 48.4
    inst [3 or "3 bar:3"] value 108.9
    inst [4 or "4 bar:4"] value 193.6

prometheus.good_summary_nometa.sample_summary0011 [Sample summary metric has instances.]
    Data Type: double  InDom: 144.12290 0x24003002
    Semantics: instant  Units: none
Help:
Sample summary metric has instances.
    inst [0 or "0 quantile:0.0"] value 0
    inst [1 or "1 quantile:0.25"] value 0.001755853
    inst [2 or "2 quantile:0.5"] value 0.003511706
    inst [3 or "3 quantile:0.75"] value 0.005267559
    inst [4 or "4 quantile:1.0"] value 0.007023412

prometheus.good_summary_nometa.sample_summary0011_count [Sample summary metric has instances.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
Sample summary metric has instances.
    value 19998

prometheus.good_summary_nometa.sample_summary0011_sum [Sample summary metric has instances.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Sample summary metric has instances.
    value 15.30327447

prometheus.pmwebd_3_12_2.cgroup.blkio.all.throttle.io_service_bytes.async [Per-cgroup throttle async bytes transferred]
    Data Type: double  InDom: 144.15404 0x24003c2c
    Semantics: counter  Units: byte
Help:
Per-cgroup throttle async bytes transferred
    inst [0 or "/"] value 321091796992

prometheus.pmwebd_3_12_2.cgroup.blkio.all.throttle.io_service_bytes.read [Per-cgroup throttle bytes transferred in reads]
    Data Type: double  InDom: 144.15401 0x24003c29
    Semantics: counter  Units: byte
Help:
Per-cgroup throttle bytes transferred in reads
    inst [0 or "/"] value 320924024832

prometheus.pmwebd_3_12_2.cgroup.blkio.all.throttle.io_service_bytes.sync [Per-cgroup throttle sync bytes transferred]
    Data Type: double  InDom: 144.15403 0x24003c2b
    Semantics: counter  Units: byte
Help:
Per-cgroup throttle sync bytes transferred
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.blkio.all.throttle.io_service_bytes.total [Per-cgroup throttle total bytes transferred]
    Data Type: double  InDom: 144.15405 0x24003c2d
    Semantics: counter  Units: byte
Help:
Per-cgroup throttle total bytes transferred
    inst [0 or "/"] value 321091796992

prometheus.pmwebd_3_12_2.cgroup.blkio.all.throttle.io_service_bytes.write [Per-cgroup throttle bytes transferred to disk in writes]
    Data Type: double  InDom: 144.15402 0x24003c2a
    Semantics: counter  Units: byte
Help:
Per-cgroup throttle bytes transferred to disk in writes
    inst [0 or "/"] value 167772160

prometheus.pmwebd_3_12_2.cgroup.blkio.all.throttle.io_serviced.async [Per-cgroup throttle async operations serviced]
    Data Type: double  InDom: 144.15409 0x24003c31
    Semantics: counter  Units: none
Help:
Per-cgroup throttle async operations serviced
    inst [0 or "/"] value 4745

prometheus.pmwebd_3_12_2.cgroup.blkio.all.throttle.io_serviced.read [Per-cgroup throttle read operations serviced]
    Data Type: double  InDom: 144.15406 0x24003c2e
    Semantics: counter  Units: none
Help:
Per-cgroup throttle read operations serviced
    inst [0 or "/"] value 4737

prometheus.pmwebd_3_12_2.cgroup.blkio.all.throttle.io_serviced.sync [Per-cgroup throttle sync operations serviced]
    Data Type: double  InDom: 144.15408 0x24003c30
    Semantics: counter  Units: none
Help:
Per-cgroup throttle sync operations serviced
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.blkio.all.throttle.io_serviced.total [Per-cgroup total throttle operations serviced]
    Data Type: double  InDom: 144.15410 0x24003c32
    Semantics: counter  Units: none
Help:
Per-cgroup total throttle operations serviced
    inst [0 or "/"] value 4745

prometheus.pmwebd_3_12_2.cgroup.blkio.all.throttle.io_serviced.write [Per-cgroup throttle write operations serviced]
    Data Type: double  InDom: 144.15407 0x24003c2f
    Semantics: counter  Units: none
Help:
Per-cgroup throttle write operations serviced
    inst [0 or "/"] value 8

prometheus.pmwebd_3_12_2.cgroup.cpuacct.stat.system [Time spent by tasks of the cgroup in kernel mode]
    Data Type: double  InDom: 144.15363 0x24003c03
    Semantics: counter  Units: sec
Help:
Time spent by tasks of the cgroup in kernel mode
    inst [0 or "/"] value 0.258

prometheus.pmwebd_3_12_2.cgroup.cpuacct.stat.user [Time spent by tasks of the cgroup in user mode]
    Data Type: double  InDom: 144.15362 0x24003c02
    Semantics: counter  Units: sec
Help:
Time spent by tasks of the cgroup in user mode
    inst [0 or "/"] value 5.585

prometheus.pmwebd_3_12_2.cgroup.cpuacct.usage [CPU time consumed by processes in each cgroup]
    Data Type: double  InDom: 144.15360 0x24003c00
    Semantics: counter  Units: sec
Help:
CPU time consumed by processes in each cgroup
    inst [0 or "/"] value 59.30594183300001

prometheus.pmwebd_3_12_2.cgroup.cpuacct.usage_percpu [Per-CPU time consumed by processes in each cgroup]
    Data Type: double  InDom: 144.15361 0x24003c01
    Semantics: counter  Units: sec
Help:
Per-CPU time consumed by processes in each cgroup
    inst [0 or "/::cpu0"] value 16.560593627
    inst [1 or "/::cpu1"] value 16.106775639
    inst [2 or "/::cpu2"] value 13.779704264
    inst [3 or "/::cpu3"] value 12.858868303

prometheus.pmwebd_3_12_2.cgroup.memory.failcnt [Count of failures to allocate memory due to cgroup limit]
    Data Type: double  InDom: 144.15366 0x24003c06
    Semantics: counter  Units: none
Help:
Count of failures to allocate memory due to cgroup limit
    inst [0 or "/"] value 27068

prometheus.pmwebd_3_12_2.cgroup.memory.limit [Maximum memory that can be utilized by each cgroup]
    Data Type: double  InDom: 144.15365 0x24003c05
    Semantics: instant  Units: byte
Help:
Maximum memory that can be utilized by each cgroup
    inst [0 or "/"] value 629145600

prometheus.pmwebd_3_12_2.cgroup.memory.stat.active_anon [Anonymous and swap cache memory on active LRU list.]
    Data Type: double  InDom: 144.15378 0x24003c12
    Semantics: instant  Units: byte
Help:
Anonymous and swap cache memory on active LRU list.
    inst [0 or "/"] value 464416768

prometheus.pmwebd_3_12_2.cgroup.memory.stat.active_file [File-backed memory on active LRU list]
    Data Type: double  InDom: 144.15380 0x24003c14
    Semantics: instant  Units: byte
Help:
File-backed memory on active LRU list
    inst [0 or "/"] value 83148800

prometheus.pmwebd_3_12_2.cgroup.memory.stat.cache [Number of bytes of page cache memory]
    Data Type: double  InDom: 144.15367 0x24003c07
    Semantics: instant  Units: byte
Help:
Number of bytes of page cache memory
    inst [0 or "/"] value 164532224

prometheus.pmwebd_3_12_2.cgroup.memory.stat.inactive_anon [Anonymous and swap cache memory on inactive LRU list]
    Data Type: double  InDom: 144.15377 0x24003c11
    Semantics: instant  Units: byte
Help:
Anonymous and swap cache memory on inactive LRU list
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.memory.stat.inactive_file [File-backed memory on inactive LRU list]
    Data Type: double  InDom: 144.15379 0x24003c13
    Semantics: instant  Units: byte
Help:
File-backed memory on inactive LRU list
    inst [0 or "/"] value 81383424

prometheus.pmwebd_3_12_2.cgroup.memory.stat.mapped_file [Bytes of mapped file (incl tmpfs/shmem)]
    Data Type: double  InDom: 144.15370 0x24003c0a
    Semantics: instant  Units: byte
Help:
Bytes of mapped file (incl tmpfs/shmem)
    inst [0 or "/"] value 14311424

prometheus.pmwebd_3_12_2.cgroup.memory.stat.pgfault [Total number of page faults]
    Data Type: double  InDom: 144.15375 0x24003c0f
    Semantics: counter  Units: none
Help:
Total number of page faults
    inst [0 or "/"] value 207794

prometheus.pmwebd_3_12_2.cgroup.memory.stat.pgmajfault [Number of major page faults]
    Data Type: double  InDom: 144.15376 0x24003c10
    Semantics: counter  Units: none
Help:
Number of major page faults
    inst [0 or "/"] value 196

prometheus.pmwebd_3_12_2.cgroup.memory.stat.pgpgin [Number of charging events to the memory cgroup]
    Data Type: double  InDom: 144.15373 0x24003c0d
    Semantics: counter  Units: none
Help:
Number of charging events to the memory cgroup
    inst [0 or "/"] value 208514

prometheus.pmwebd_3_12_2.cgroup.memory.stat.pgpgout [Number of uncharging events to the memory cgroup]
    Data Type: double  InDom: 144.15374 0x24003c0e
    Semantics: counter  Units: none
Help:
Number of uncharging events to the memory cgroup
    inst [0 or "/"] value 122925

prometheus.pmwebd_3_12_2.cgroup.memory.stat.recent.rotated_anon [VM internal parameter (see mm/vmscan.c)]
    Data Type: double  InDom: 144.15397 0x24003c25
    Semantics: counter  Units: byte
Help:
VM internal parameter (see mm/vmscan.c)
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.memory.stat.recent.rotated_file [VM internal parameter (see mm/vmscan.c)]
    Data Type: double  InDom: 144.15398 0x24003c26
    Semantics: counter  Units: byte
Help:
VM internal parameter (see mm/vmscan.c)
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.memory.stat.recent.scanned_anon [VM internal parameter (see mm/vmscan.c)]
    Data Type: double  InDom: 144.15399 0x24003c27
    Semantics: counter  Units: byte
Help:
VM internal parameter (see mm/vmscan.c)
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.memory.stat.recent.scanned_file [VM internal parameter (see mm/vmscan.c)]
    Data Type: double  InDom: 144.15400 0x24003c28
    Semantics: counter  Units: byte
Help:
VM internal parameter (see mm/vmscan.c)
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.memory.stat.rss [Anonymous and swap memory (incl transparent hugepages)]
    Data Type: double  InDom: 144.15368 0x24003c08
    Semantics: instant  Units: byte
Help:
Anonymous and swap memory (incl transparent hugepages)
    inst [0 or "/"] value 464416768

prometheus.pmwebd_3_12_2.cgroup.memory.stat.rss_huge [Anonymous transparent hugepages]
    Data Type: double  InDom: 144.15369 0x24003c09
    Semantics: instant  Units: byte
Help:
Anonymous transparent hugepages
    inst [0 or "/"] value 278921216

prometheus.pmwebd_3_12_2.cgroup.memory.stat.swap [Number of bytes of swap usage]
    Data Type: double  InDom: 144.15372 0x24003c0c
    Semantics: instant  Units: byte
Help:
Number of bytes of swap usage
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.active_anon [Hierarchical, cumulative version of stat.active_anon]
    Data Type: double  InDom: 144.15393 0x24003c21
    Semantics: instant  Units: byte
Help:
Hierarchical, cumulative version of stat.active_anon
    inst [0 or "/"] value 464416768

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.active_file [Hierarchical, cumulative version of stat.active_file]
    Data Type: double  InDom: 144.15395 0x24003c23
    Semantics: instant  Units: byte
Help:
Hierarchical, cumulative version of stat.active_file
    inst [0 or "/"] value 83148800

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.cache [Hierarchical, cumulative version of stat.cache]
    Data Type: double  InDom: 144.15382 0x24003c16
    Semantics: instant  Units: byte
Help:
Hierarchical, cumulative version of stat.cache
    inst [0 or "/"] value 164532224

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.inactive_anon [Hierarchical, cumulative version of stat.inactive_anon]
    Data Type: double  InDom: 144.15392 0x24003c20
    Semantics: instant  Units: byte
Help:
Hierarchical, cumulative version of stat.inactive_anon
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.inactive_file [Hierarchical, cumulative version of stat.inactive_file]
    Data Type: double  InDom: 144.15394 0x24003c22
    Semantics: instant  Units: byte
Help:
Hierarchical, cumulative version of stat.inactive_file
    inst [0 or "/"] value 81383424

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.mapped_file [Hierarchical, cumulative version of stat.mapped_file]
    Data Type: double  InDom: 144.15385 0x24003c19
    Semantics: instant  Units: byte
Help:
Hierarchical, cumulative version of stat.mapped_file
    inst [0 or "/"] value 14311424

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.pgfault [Hierarchical, cumulative version of stat.pgfault]
    Data Type: double  InDom: 144.15390 0x24003c1e
    Semantics: counter  Units: none
Help:
Hierarchical, cumulative version of stat.pgfault
    inst [0 or "/"] value 207794

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.pgmajfault [Hierarchical, cumulative version of stat.pgmajfault]
    Data Type: double  InDom: 144.15391 0x24003c1f
    Semantics: counter  Units: none
Help:
Hierarchical, cumulative version of stat.pgmajfault
    inst [0 or "/"] value 196

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.pgpgin [Hierarchical, cumulative version of stat.pgpgin]
    Data Type: double  InDom: 144.15388 0x24003c1c
    Semantics: counter  Units: none
Help:
Hierarchical, cumulative version of stat.pgpgin
    inst [0 or "/"] value 208514

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.pgpgout [Hierarchical, cumulative version of stat.pgpgout]
    Data Type: double  InDom: 144.15389 0x24003c1d
    Semantics: counter  Units: none
Help:
Hierarchical, cumulative version of stat.pgpgout
    inst [0 or "/"] value 122925

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.rss [Hierarchical, cumulative version of stat.rss]
    Data Type: double  InDom: 144.15383 0x24003c17
    Semantics: instant  Units: byte
Help:
Hierarchical, cumulative version of stat.rss
    inst [0 or "/"] value 464416768

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.rss_huge [Hierarchical, cumulative version of stat.rss_huge]
    Data Type: double  InDom: 144.15384 0x24003c18
    Semantics: instant  Units: byte
Help:
Hierarchical, cumulative version of stat.rss_huge
    inst [0 or "/"] value 278921216

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.swap [Hierarchical, cumulative version of stat.swap]
    Data Type: double  InDom: 144.15387 0x24003c1b
    Semantics: instant  Units: byte
Help:
Hierarchical, cumulative version of stat.swap
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.unevictable [Hierarchical, cumulative version of stat.unevictable]
    Data Type: double  InDom: 144.15396 0x24003c24
    Semantics: instant  Units: byte
Help:
Hierarchical, cumulative version of stat.unevictable
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.memory.stat.total.writeback [Hierarchical, cumulative version of stat.writeback]
    Data Type: double  InDom: 144.15386 0x24003c1a
    Semantics: instant  Units: byte
Help:
Hierarchical, cumulative version of stat.writeback
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.memory.stat.unevictable [Memory that cannot be reclaimed (e.g. mlocked)]
    Data Type: double  InDom: 144.15381 0x24003c15
    Semantics: instant  Units: byte
Help:
Memory that cannot be reclaimed (e.g. mlocked)
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.memory.stat.writeback [Bytes of file/anonymous cache queued for syncing]
    Data Type: double  InDom: 144.15371 0x24003c0b
    Semantics: instant  Units: byte
Help:
Bytes of file/anonymous cache queued for syncing
    inst [0 or "/"] value 0

prometheus.pmwebd_3_12_2.cgroup.memory.usage [Current physical memory accounted to each cgroup]
    Data Type: double  InDom: 144.15364 0x24003c04
    Semantics: instant  Units: byte
Help:
Current physical memory accounted to each cgroup
    inst [0 or "/"] value 629055488

prometheus.problematic_strings.test [The Thing]
    Data Type: double  InDom: 144.16384 0x24004000
    Semantics: instant  Units: none
Help:
The Thing
    inst [0 or "0 instance:"] value 0
    inst [1 or "1 instance: "] value 1
    inst [2 or "2 instance:'"] value 2
    inst [3 or "3 instance:""] value 3
    inst [4 or "4 instance:"'"] value 4
    inst [5 or "5 instance:\"] value 5
    inst [6 or "6 instance:,"] value 6
    inst [7 or "7 instance:="] value 7
    inst [8 or "8 instance::"] value 8
    inst [9 or "9 instance:}"] value 9
    inst [10 or "10 instance:{"] value 10

prometheus.problematic_strings.test2 [The Other Thing]
    Data Type: double  InDom: 144.16385 0x24004001
    Semantics: instant  Units: none
Help:
The Other Thing
    inst [0 or ""] value 0
    inst [1 or " "] value 1
    inst [2 or "'"] value 2
    inst [3 or """] value 3
    inst [4 or ""'"] value 4
    inst [5 or "\"] value 5
    inst [6 or ","] value 6
    inst [7 or "="] value 7
    inst [8 or ":"] value 8
    inst [9 or "}"] value 9
    inst [10 or "{"] value 10

prometheus.problematic_strings.test3 [Yet Another Thing]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
with a long label
very long indeed
and has a \ or two \
    value 0

prometheus.prom_exposition_formats_example1.http_request_duration_seconds_bucket [A histogram of the request duration.]
    Data Type: double  InDom: 144.17412 0x24004404
    Semantics: counter  Units: count
Help:
A histogram of the request duration.
    inst [0 or "0 le:0.05"] value 24054
    inst [1 or "1 le:0.1"] value 33444
    inst [2 or "2 le:0.2"] value 100392
    inst [3 or "3 le:0.5"] value 129389
    inst [4 or "4 le:1"] value 133988
    inst [5 or "5 le:+Inf"] value 144320

prometheus.prom_exposition_formats_example1.http_request_duration_seconds_count [A histogram of the request duration.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
A histogram of the request duration.
    value 144320

prometheus.prom_exposition_formats_example1.http_request_duration_seconds_sum [A histogram of the request duration.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
A histogram of the request duration.
    value 53423

prometheus.prom_exposition_formats_example1.http_requests_total [The total number of HTTP requests.]
    Data Type: double  InDom: 144.17408 0x24004400
    Semantics: counter  Units: none
Help:
The total number of HTTP requests.
    inst [0 or "0 code:200 method:post"] value 1027
    inst [1 or "1 code:400 method:post"] value 3

prometheus.prom_exposition_formats_example1.metric_without_timestamp_and_labels []
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help: <empty entry>
    value 12.47

prometheus.prom_exposition_formats_example1.msdos_file_access_time_seconds []
    Data Type: double  InDom: 144.17409 0x24004401
    Semantics: instant  Units: sec
Help: <empty entry>
    inst [0 or "0 error:Cannot find file:
"FILE.TXT" path:C:\DIR\FILE.TXT"] value 1458255915

prometheus.prom_exposition_formats_example1.rpc_duration_seconds [A summary of the RPC duration in seconds.]
    Data Type: double  InDom: 144.17415 0x24004407
    Semantics: instant  Units: sec
Help:
A summary of the RPC duration in seconds.
    inst [0 or "0 quantile:0.01"] value 3102
    inst [1 or "1 quantile:0.05"] value 3272
    inst [2 or "2 quantile:0.5"] value 4773
    inst [3 or "3 quantile:0.9"] value 9001
    inst [4 or "4 quantile:0.99"] value 76656

prometheus.prom_exposition_formats_example1.rpc_duration_seconds_count [A summary of the RPC duration in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
A summary of the RPC duration in seconds.
    value 2693

prometheus.prom_exposition_formats_example1.rpc_duration_seconds_sum [A summary of the RPC duration in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
A summary of the RPC duration in seconds.
    value 17560473

prometheus.prom_exposition_formats_example1.something_weird []
    Data Type: double  InDom: 144.17411 0x24004403
    Semantics: instant  Units: none
Help: <empty entry>
    inst [0 or "0 problem:division by zero"] value inf

prometheus.python_sample_client_server.process_cpu_seconds_total [Total user and system CPU time spent in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
Total user and system CPU time spent in seconds.
    value 0.05

prometheus.python_sample_client_server.process_max_fds [Maximum number of open file descriptors.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Maximum number of open file descriptors.
    value 4096

prometheus.python_sample_client_server.process_open_fds [Number of open file descriptors.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Number of open file descriptors.
    value 7

prometheus.python_sample_client_server.process_resident_memory_bytes [Resident memory size in bytes.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Resident memory size in bytes.
    value 15810560

prometheus.python_sample_client_server.process_start_time_seconds [Start time of the process since unix epoch in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: sec
Help:
Start time of the process since unix epoch in seconds.
    value 1510940828.91

prometheus.python_sample_client_server.process_virtual_memory_bytes [Virtual memory size in bytes.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Virtual memory size in bytes.
    value 340594688

prometheus.python_sample_client_server.python_info [Python platform information]
    Data Type: double  InDom: 144.18432 0x24004800
    Semantics: instant  Units: none
Help:
Python platform information
    inst [0 or "0 implementation:CPython major:2 minor:7 patchlevel:13 version:2.7.13"] value 1

prometheus.python_sample_client_server.queue_size [Sample Gauge of queue size]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Sample Gauge of queue size
    value 90

prometheus.python_sample_client_server.request_latency_seconds_bucket [Sample histogram]
    Data Type: double  InDom: 144.18443 0x2400480b
    Semantics: counter  Units: count
Help:
Sample histogram
    inst [0 or "0 le:0.005"] value 0
    inst [1 or "1 le:0.01"] value 0
    inst [2 or "2 le:0.025"] value 0
    inst [3 or "3 le:0.05"] value 0
    inst [4 or "4 le:0.075"] value 0
    inst [5 or "5 le:0.1"] value 0
    inst [6 or "6 le:0.25"] value 0
    inst [7 or "7 le:0.5"] value 0
    inst [8 or "8 le:0.75"] value 0
    inst [9 or "9 le:1.0"] value 0
    inst [10 or "10 le:2.5"] value 0
    inst [11 or "11 le:5.0"] value 1
    inst [12 or "12 le:7.5"] value 1
    inst [13 or "13 le:10.0"] value 1
    inst [14 or "14 le:+Inf"] value 1

prometheus.python_sample_client_server.request_latency_seconds_count [Sample histogram]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
Sample histogram
    value 1

prometheus.python_sample_client_server.request_latency_seconds_sum [Sample histogram]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
Sample histogram
    value 4.7

prometheus.python_sample_client_server.requests_total [Total requests]
    Data Type: double  InDom: 144.18441 0x24004809
    Semantics: counter  Units: none
Help:
Total requests
    inst [0 or "0 agent:prometheus type:fetch"] value 1
    inst [1 or "1 agent:json type:store"] value 1
    inst [2 or "2 agent:docker type:oneline"] value 1

prometheus.python_sample_client_server.summary_requests_count [Sample summary of requests]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
Sample summary of requests
    value 1

prometheus.python_sample_client_server.summary_requests_sum [Sample summary of requests]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Sample summary of requests
    value 4.7

prometheus.reordered_labels.http_request_duration_microseconds [The HTTP request latencies in microseconds.]
    Data Type: double  InDom: 144.20480 0x24005000
    Semantics: instant  Units: microsec
Help:
The HTTP request latencies in microseconds.
    inst [0 or "0 handler:alertmanagers quantile:0.5"] value 3
    inst [1 or "1 handler:alertmanagers quantile:0.9"] value 4
    inst [2 or "2 handler:alertmanagers quantile:0.99"] value 5

prometheus.sample_pmda_3_12_2.sample.bigid [a metric with item number bigger then 2^9]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
a metric with item number bigger then 2^9
    value 4194303

prometheus.sample_pmda_3_12_2.sample.bogus_bin [Several constant instances]
    Data Type: double  InDom: 144.21513 0x24005409
    Semantics: instant  Units: none
Help:
Several constant instances
    inst [0 or "bin-100"] value 100
    inst [1 or ""] value 850
    inst [2 or "bin-300"] value 300
    inst [3 or "bin-500"] value 500
    inst [4 or "bin-700"] value 700
    inst [5 or "bin-900"] value 900

prometheus.sample_pmda_3_12_2.sample.bucket [Several constant instances]
    Data Type: double  InDom: 144.21511 0x24005407
    Semantics: instant  Units: none
Help:
Several constant instances
    inst [0 or "bin-100"] value 100
    inst [1 or "bin-200"] value 200
    inst [2 or "bin-300"] value 300
    inst [3 or "bin-400"] value 400
    inst [4 or "bin-500"] value 500
    inst [5 or "bin-600"] value 600
    inst [6 or "bin-700"] value 700
    inst [7 or "bin-800"] value 800
    inst [8 or "bin-900"] value 900

prometheus.sample_pmda_3_12_2.sample.byte_ctr [counter byte counter]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: byte
Help:
counter byte counter
    value 2255

prometheus.sample_pmda_3_12_2.sample.colour [Metrics with a "saw-tooth" trend over time]
    Data Type: double  InDom: 144.21509 0x24005405
    Semantics: instant  Units: none
Help:
Metrics with a "saw-tooth" trend over time
    inst [0 or "red"] value 111
    inst [1 or "green"] value 212
    inst [2 or "blue"] value 313

prometheus.sample_pmda_3_12_2.sample.const_rate.gradient [rate per second to set sample.const_rate.value, writable]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
rate per second to set sample.const_rate.value, writable
    value 0

prometheus.sample_pmda_3_12_2.sample.const_rate.value [constant rate counter]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
constant rate counter
    value 10485760

prometheus.sample_pmda_3_12_2.sample.control [A control variable for the "sample" PMDA]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
A control variable for the "sample" PMDA
    value 0

prometheus.sample_pmda_3_12_2.sample.datasize [Space allocated for PMDA's data segment]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Space allocated for PMDA's data segment
    value 0

prometheus.sample_pmda_3_12_2.sample.dodgey.control [control values retured for sample.dodgey.value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
control values retured for sample.dodgey.value
    value 5

prometheus.sample_pmda_3_12_2.sample.dodgey.value [5 unreliable instances]
    Data Type: double  InDom: 144.21586 0x24005452
    Semantics: instant  Units: none
Help:
5 unreliable instances
    inst [0 or "d1"] value 21
    inst [1 or "d2"] value 97
    inst [2 or "d3"] value 11
    inst [3 or "d4"] value 95
    inst [4 or "d5"] value 55

prometheus.sample_pmda_3_12_2.sample.double.bin [like sample.bin but type DOUBLE]
    Data Type: double  InDom: 144.21577 0x24005449
    Semantics: instant  Units: none
Help:
like sample.bin but type DOUBLE
    inst [0 or "bin-100"] value 100
    inst [1 or "bin-200"] value 200
    inst [2 or "bin-300"] value 300
    inst [3 or "bin-400"] value 400
    inst [4 or "bin-500"] value 500
    inst [5 or "bin-600"] value 600
    inst [6 or "bin-700"] value 700
    inst [7 or "bin-800"] value 800
    inst [8 or "bin-900"] value 900

prometheus.sample_pmda_3_12_2.sample.double.bin_ctr [like sample.bin but type DOUBLE, SEM_COUNTER and SPACE_KBYTE]
    Data Type: double  InDom: 144.21578 0x2400544a
    Semantics: counter  Units: byte
Help:
like sample.bin but type DOUBLE, SEM_COUNTER and SPACE_KBYTE
    inst [0 or "bin-100"] value 102400
    inst [1 or "bin-200"] value 204800
    inst [2 or "bin-300"] value 307200
    inst [3 or "bin-400"] value 409600
    inst [4 or "bin-500"] value 512000
    inst [5 or "bin-600"] value 614400
    inst [6 or "bin-700"] value 716800
    inst [7 or "bin-800"] value 819200
    inst [8 or "bin-900"] value 921600

prometheus.sample_pmda_3_12_2.sample.double.hundred [100 as a 64-bit floating point value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
100 as a 64-bit floating point value
    value 100

prometheus.sample_pmda_3_12_2.sample.double.million [1000000 as a 64-bit floating point value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1000000 as a 64-bit floating point value
    value 1000000

prometheus.sample_pmda_3_12_2.sample.double.one [1 as a 64-bit floating point value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1 as a 64-bit floating point value
    value 1

prometheus.sample_pmda_3_12_2.sample.double.write_me [a 64-bit floating-point value that can be modified]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
a 64-bit floating-point value that can be modified
    value 13

prometheus.sample_pmda_3_12_2.sample.drift [A random trended metric]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
A random trended metric
    value 159

prometheus.sample_pmda_3_12_2.sample.dupnames.pid_daemon [Process id of PMDA daemon]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Process id of PMDA daemon
    value 12301

prometheus.sample_pmda_3_12_2.sample.dupnames.three.bin [Several constant instances]
    Data Type: double  InDom: 144.21510 0x24005406
    Semantics: instant  Units: none
Help:
Several constant instances
    inst [0 or "bin-100"] value 100
    inst [1 or "bin-200"] value 200
    inst [2 or "bin-300"] value 300
    inst [3 or "bin-400"] value 400
    inst [4 or "bin-500"] value 500
    inst [5 or "bin-600"] value 600
    inst [6 or "bin-700"] value 700
    inst [7 or "bin-800"] value 800
    inst [8 or "bin-900"] value 900

prometheus.sample_pmda_3_12_2.sample.dupnames.two.double.ten [10 as a 64-bit floating point value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
10 as a 64-bit floating point value
    value 10

prometheus.sample_pmda_3_12_2.sample.dupnames.two.float.ten [10 as a 32-bit floating point value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
10 as a 32-bit floating point value
    value 10

prometheus.sample_pmda_3_12_2.sample.dupnames.two.seconds [Elapsed time (seconds)]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
Elapsed time (seconds)
    value 770

prometheus.sample_pmda_3_12_2.sample.dynamic.counter [counter metric with dynamic indom]
    Data Type: double  InDom: 144.21587 0x24005453
    Semantics: counter  Units: none
Help:
counter metric with dynamic indom
    inst [0 or "one"] value 1178
    inst [1 or "two"] value 1178

prometheus.sample_pmda_3_12_2.sample.dynamic.discrete [discrete metric with dynamic indom]
    Data Type: double  InDom: 144.21588 0x24005454
    Semantics: discrete  Units: none
Help:
discrete metric with dynamic indom
    inst [0 or "one"] value 1178
    inst [1 or "two"] value 1178

prometheus.sample_pmda_3_12_2.sample.dynamic.instant [instant metric with dynamic indom]
    Data Type: double  InDom: 144.21589 0x24005455
    Semantics: instant  Units: none
Help:
instant metric with dynamic indom
    inst [0 or "one"] value 1178
    inst [1 or "two"] value 1178

prometheus.sample_pmda_3_12_2.sample.dynamic.meta.pmdesc.indom [pmDesc.indom for sample.dynamic.meta.metric]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
pmDesc.indom for sample.dynamic.meta.metric
    value 4294967295

prometheus.sample_pmda_3_12_2.sample.dynamic.meta.pmdesc.sem [pmDesc.sem for sample.dynamic.meta.metric]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
pmDesc.sem for sample.dynamic.meta.metric
    value 4

prometheus.sample_pmda_3_12_2.sample.dynamic.meta.pmdesc.type [pmDesc.type for sample.dynamic.meta.metric]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
pmDesc.type for sample.dynamic.meta.metric
    value 0

prometheus.sample_pmda_3_12_2.sample.dynamic.meta.pmdesc.units [pmDesc.units for sample.dynamic.meta.metric]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
pmDesc.units for sample.dynamic.meta.metric
    value 520105984

prometheus.sample_pmda_3_12_2.sample.error_check [Return PMAPI error code from sample.error_code]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Return PMAPI error code from sample.error_code
    value 0

prometheus.sample_pmda_3_12_2.sample.error_code [Arbitrary PMAPI error code for sample.error_check]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Arbitrary PMAPI error code for sample.error_check
    value 0

prometheus.sample_pmda_3_12_2.sample.event.reset [reset event record state]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
reset event record state
    value 3

prometheus.sample_pmda_3_12_2.sample.event.reset_highres [reset highres event record state]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
reset highres event record state
    value 3

prometheus.sample_pmda_3_12_2.sample.float.bin [like sample.bin but type FLOAT]
    Data Type: double  InDom: 144.21570 0x24005442
    Semantics: instant  Units: none
Help:
like sample.bin but type FLOAT
    inst [0 or "bin-100"] value 100
    inst [1 or "bin-200"] value 200
    inst [2 or "bin-300"] value 300
    inst [3 or "bin-400"] value 400
    inst [4 or "bin-500"] value 500
    inst [5 or "bin-600"] value 600
    inst [6 or "bin-700"] value 700
    inst [7 or "bin-800"] value 800
    inst [8 or "bin-900"] value 900

prometheus.sample_pmda_3_12_2.sample.float.bin_ctr [like sample.bin but type FLOAT, SEM_COUNTER and SPACE_KBYTE]
    Data Type: double  InDom: 144.21571 0x24005443
    Semantics: counter  Units: byte
Help:
like sample.bin but type FLOAT, SEM_COUNTER and SPACE_KBYTE
    inst [0 or "bin-100"] value 102400
    inst [1 or "bin-200"] value 204800
    inst [2 or "bin-300"] value 307200
    inst [3 or "bin-400"] value 409600
    inst [4 or "bin-500"] value 512000
    inst [5 or "bin-600"] value 614400
    inst [6 or "bin-700"] value 716800
    inst [7 or "bin-800"] value 819200
    inst [8 or "bin-900"] value 921600

prometheus.sample_pmda_3_12_2.sample.float.hundred [100 as a 32-bit floating point value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
100 as a 32-bit floating point value
    value 100

prometheus.sample_pmda_3_12_2.sample.float.million [1000000 as a 32-bit floating point value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1000000 as a 32-bit floating point value
    value 1000000

prometheus.sample_pmda_3_12_2.sample.float.one [1 as a 32-bit floating point value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1 as a 32-bit floating point value
    value 1

prometheus.sample_pmda_3_12_2.sample.float.write_me [a 32-bit floating-point value that can be modified]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
a 32-bit floating-point value that can be modified
    value 13

prometheus.sample_pmda_3_12_2.sample.hordes.one [500 instances]
    Data Type: double  InDom: 144.21579 0x2400544b
    Semantics: instant  Units: none
Help:
500 instances
    inst [0 or "0"] value 0
    inst [1 or "1"] value 1
    inst [2 or "2"] value 2
    inst [3 or "3"] value 3
    inst [4 or "4"] value 4
    inst [5 or "5"] value 5
    inst [6 or "6"] value 6
    inst [7 or "7"] value 7
    inst [8 or "8"] value 8
    inst [9 or "9"] value 9
    inst [10 or "10"] value 10
    inst [11 or "11"] value 11
    inst [12 or "12"] value 12
    inst [13 or "13"] value 13
    inst [14 or "14"] value 14
    inst [15 or "15"] value 15
    inst [16 or "16"] value 16
    inst [17 or "17"] value 17
    inst [18 or "18"] value 18
    inst [19 or "19"] value 19
    inst [20 or "20"] value 20
    inst [21 or "21"] value 21
    inst [22 or "22"] value 22
    inst [23 or "23"] value 23
    inst [24 or "24"] value 24
    inst [25 or "25"] value 25
    inst [26 or "26"] value 26
    inst [27 or "27"] value 27
    inst [28 or "28"] value 28
    inst [29 or "29"] value 29
    inst [30 or "30"] value 30
    inst [31 or "31"] value 31
    inst [32 or "32"] value 32
    inst [33 or "33"] value 33
    inst [34 or "34"] value 34
    inst [35 or "35"] value 35
    inst [36 or "36"] value 36
    inst [37 or "37"] value 37
    inst [38 or "38"] value 38
    inst [39 or "39"] value 39
    inst [40 or "40"] value 40
    inst [41 or "41"] value 41
    inst [42 or "42"] value 42
    inst [43 or "43"] value 43
    inst [44 or "44"] value 44
    inst [45 or "45"] value 45
    inst [46 or "46"] value 46
    inst [47 or "47"] value 47
    inst [48 or "48"] value 48
    inst [49 or "49"] value 49
    inst [50 or "50"] value 50
    inst [51 or "51"] value 51
    inst [52 or "52"] value 52
    inst [53 or "53"] value 53
    inst [54 or "54"] value 54
    inst [55 or "55"] value 55
    inst [56 or "56"] value 56
    inst [57 or "57"] value 57
    inst [58 or "58"] value 58
    inst [59 or "59"] value 59
    inst [60 or "60"] value 60
    inst [61 or "61"] value 61
    inst [62 or "62"] value 62
    inst [63 or "63"] value 63
    inst [64 or "64"] value 64
    inst [65 or "65"] value 65
    inst [66 or "66"] value 66
    inst [67 or "67"] value 67
    inst [68 or "68"] value 68
    inst [69 or "69"] value 69
    inst [70 or "70"] value 70
    inst [71 or "71"] value 71
    inst [72 or "72"] value 72
    inst [73 or "73"] value 73
    inst [74 or "74"] value 74
    inst [75 or "75"] value 75
    inst [76 or "76"] value 76
    inst [77 or "77"] value 77
    inst [78 or "78"] value 78
    inst [79 or "79"] value 79
    inst [80 or "80"] value 80
    inst [81 or "81"] value 81
    inst [82 or "82"] value 82
    inst [83 or "83"] value 83
    inst [84 or "84"] value 84
    inst [85 or "85"] value 85
    inst [86 or "86"] value 86
    inst [87 or "87"] value 87
    inst [88 or "88"] value 88
    inst [89 or "89"] value 89
    inst [90 or "90"] value 90
    inst [91 or "91"] value 91
    inst [92 or "92"] value 92
    inst [93 or "93"] value 93
    inst [94 or "94"] value 94
    inst [95 or "95"] value 95
    inst [96 or "96"] value 96
    inst [97 or "97"] value 97
    inst [98 or "98"] value 98
    inst [99 or "99"] value 99
    inst [100 or "100"] value 100
    inst [101 or "101"] value 101
    inst [102 or "102"] value 102
    inst [103 or "103"] value 103
    inst [104 or "104"] value 104
    inst [105 or "105"] value 105
    inst [106 or "106"] value 106
    inst [107 or "107"] value 107
    inst [108 or "108"] value 108
    inst [109 or "109"] value 109
    inst [110 or "110"] value 110
    inst [111 or "111"] value 111
    inst [112 or "112"] value 112
    inst [113 or "113"] value 113
    inst [114 or "114"] value 114
    inst [115 or "115"] value 115
    inst [116 or "116"] value 116
    inst [117 or "117"] value 117
    inst [118 or "118"] value 118
    inst [119 or "119"] value 119
    inst [120 or "120"] value 120
    inst [121 or "121"] value 121
    inst [122 or "122"] value 122
    inst [123 or "123"] value 123
    inst [124 or "124"] value 124
    inst [125 or "125"] value 125
    inst [126 or "126"] value 126
    inst [127 or "127"] value 127
    inst [128 or "128"] value 128
    inst [129 or "129"] value 129
    inst [130 or "130"] value 130
    inst [131 or "131"] value 131
    inst [132 or "132"] value 132
    inst [133 or "133"] value 133
    inst [134 or "134"] value 134
    inst [135 or "135"] value 135
    inst [136 or "136"] value 136
    inst [137 or "137"] value 137
    inst [138 or "138"] value 138
    inst [139 or "139"] value 139
    inst [140 or "140"] value 140
    inst [141 or "141"] value 141
    inst [142 or "142"] value 142
    inst [143 or "143"] value 143
    inst [144 or "144"] value 144
    inst [145 or "145"] value 145
    inst [146 or "146"] value 146
    inst [147 or "147"] value 147
    inst [148 or "148"] value 148
    inst [149 or "149"] value 149
    inst [150 or "150"] value 150
    inst [151 or "151"] value 151
    inst [152 or "152"] value 152
    inst [153 or "153"] value 153
    inst [154 or "154"] value 154
    inst [155 or "155"] value 155
    inst [156 or "156"] value 156
    inst [157 or "157"] value 157
    inst [158 or "158"] value 158
    inst [159 or "159"] value 159
    inst [160 or "160"] value 160
    inst [161 or "161"] value 161
    inst [162 or "162"] value 162
    inst [163 or "163"] value 163
    inst [164 or "164"] value 164
    inst [165 or "165"] value 165
    inst [166 or "166"] value 166
    inst [167 or "167"] value 167
    inst [168 or "168"] value 168
    inst [169 or "169"] value 169
    inst [170 or "170"] value 170
    inst [171 or "171"] value 171
    inst [172 or "172"] value 172
    inst [173 or "173"] value 173
    inst [174 or "174"] value 174
    inst [175 or "175"] value 175
    inst [176 or "176"] value 176
    inst [177 or "177"] value 177
    inst [178 or "178"] value 178
    inst [179 or "179"] value 179
    inst [180 or "180"] value 180
    inst [181 or "181"] value 181
    inst [182 or "182"] value 182
    inst [183 or "183"] value 183
    inst [184 or "184"] value 184
    inst [185 or "185"] value 185
    inst [186 or "186"] value 186
    inst [187 or "187"] value 187
    inst [188 or "188"] value 188
    inst [189 or "189"] value 189
    inst [190 or "190"] value 190
    inst [191 or "191"] value 191
    inst [192 or "192"] value 192
    inst [193 or "193"] value 193
    inst [194 or "194"] value 194
    inst [195 or "195"] value 195
    inst [196 or "196"] value 196
    inst [197 or "197"] value 197
    inst [198 or "198"] value 198
    inst [199 or "199"] value 199
    inst [200 or "200"] value 200
    inst [201 or "201"] value 201
    inst [202 or "202"] value 202
    inst [203 or "203"] value 203
    inst [204 or "204"] value 204
    inst [205 or "205"] value 205
    inst [206 or "206"] value 206
    inst [207 or "207"] value 207
    inst [208 or "208"] value 208
    inst [209 or "209"] value 209
    inst [210 or "210"] value 210
    inst [211 or "211"] value 211
    inst [212 or "212"] value 212
    inst [213 or "213"] value 213
    inst [214 or "214"] value 214
    inst [215 or "215"] value 215
    inst [216 or "216"] value 216
    inst [217 or "217"] value 217
    inst [218 or "218"] value 218
    inst [219 or "219"] value 219
    inst [220 or "220"] value 220
    inst [221 or "221"] value 221
    inst [222 or "222"] value 222
    inst [223 or "223"] value 223
    inst [224 or "224"] value 224
    inst [225 or "225"] value 225
    inst [226 or "226"] value 226
    inst [227 or "227"] value 227
    inst [228 or "228"] value 228
    inst [229 or "229"] value 229
    inst [230 or "230"] value 230
    inst [231 or "231"] value 231
    inst [232 or "232"] value 232
    inst [233 or "233"] value 233
    inst [234 or "234"] value 234
    inst [235 or "235"] value 235
    inst [236 or "236"] value 236
    inst [237 or "237"] value 237
    inst [238 or "238"] value 238
    inst [239 or "239"] value 239
    inst [240 or "240"] value 240
    inst [241 or "241"] value 241
    inst [242 or "242"] value 242
    inst [243 or "243"] value 243
    inst [244 or "244"] value 244
    inst [245 or "245"] value 245
    inst [246 or "246"] value 246
    inst [247 or "247"] value 247
    inst [248 or "248"] value 248
    inst [249 or "249"] value 249
    inst [250 or "250"] value 250
    inst [251 or "251"] value 251
    inst [252 or "252"] value 252
    inst [253 or "253"] value 253
    inst [254 or "254"] value 254
    inst [255 or "255"] value 255
    inst [256 or "256"] value 256
    inst [257 or "257"] value 257
    inst [258 or "258"] value 258
    inst [259 or "259"] value 259
    inst [260 or "260"] value 260
    inst [261 or "261"] value 261
    inst [262 or "262"] value 262
    inst [263 or "263"] value 263
    inst [264 or "264"] value 264
    inst [265 or "265"] value 265
    inst [266 or "266"] value 266
    inst [267 or "267"] value 267
    inst [268 or "268"] value 268
    inst [269 or "269"] value 269
    inst [270 or "270"] value 270
    inst [271 or "271"] value 271
    inst [272 or "272"] value 272
    inst [273 or "273"] value 273
    inst [274 or "274"] value 274
    inst [275 or "275"] value 275
    inst [276 or "276"] value 276
    inst [277 or "277"] value 277
    inst [278 or "278"] value 278
    inst [279 or "279"] value 279
    inst [280 or "280"] value 280
    inst [281 or "281"] value 281
    inst [282 or "282"] value 282
    inst [283 or "283"] value 283
    inst [284 or "284"] value 284
    inst [285 or "285"] value 285
    inst [286 or "286"] value 286
    inst [287 or "287"] value 287
    inst [288 or "288"] value 288
    inst [289 or "289"] value 289
    inst [290 or "290"] value 290
    inst [291 or "291"] value 291
    inst [292 or "292"] value 292
    inst [293 or "293"] value 293
    inst [294 or "294"] value 294
    inst [295 or "295"] value 295
    inst [296 or "296"] value 296
    inst [297 or "297"] value 297
    inst [298 or "298"] value 298
    inst [299 or "299"] value 299
    inst [300 or "300"] value 300
    inst [301 or "301"] value 301
    inst [302 or "302"] value 302
    inst [303 or "303"] value 303
    inst [304 or "304"] value 304
    inst [305 or "305"] value 305
    inst [306 or "306"] value 306
    inst [307 or "307"] value 307
    inst [308 or "308"] value 308
    inst [309 or "309"] value 309
    inst [310 or "310"] value 310
    inst [311 or "311"] value 311
    inst [312 or "312"] value 312
    inst [313 or "313"] value 313
    inst [314 or "314"] value 314
    inst [315 or "315"] value 315
    inst [316 or "316"] value 316
    inst [317 or "317"] value 317
    inst [318 or "318"] value 318
    inst [319 or "319"] value 319
    inst [320 or "320"] value 320
    inst [321 or "321"] value 321
    inst [322 or "322"] value 322
    inst [323 or "323"] value 323
    inst [324 or "324"] value 324
    inst [325 or "325"] value 325
    inst [326 or "326"] value 326
    inst [327 or "327"] value 327
    inst [328 or "328"] value 328
    inst [329 or "329"] value 329
    inst [330 or "330"] value 330
    inst [331 or "331"] value 331
    inst [332 or "332"] value 332
    inst [333 or "333"] value 333
    inst [334 or "334"] value 334
    inst [335 or "335"] value 335
    inst [336 or "336"] value 336
    inst [337 or "337"] value 337
    inst [338 or "338"] value 338
    inst [339 or "339"] value 339
    inst [340 or "340"] value 340
    inst [341 or "341"] value 341
    inst [342 or "342"] value 342
    inst [343 or "343"] value 343
    inst [344 or "344"] value 344
    inst [345 or "345"] value 345
    inst [346 or "346"] value 346
    inst [347 or "347"] value 347
    inst [348 or "348"] value 348
    inst [349 or "349"] value 349
    inst [350 or "350"] value 350
    inst [351 or "351"] value 351
    inst [352 or "352"] value 352
    inst [353 or "353"] value 353
    inst [354 or "354"] value 354
    inst [355 or "355"] value 355
    inst [356 or "356"] value 356
    inst [357 or "357"] value 357
    inst [358 or "358"] value 358
    inst [359 or "359"] value 359
    inst [360 or "360"] value 360
    inst [361 or "361"] value 361
    inst [362 or "362"] value 362
    inst [363 or "363"] value 363
    inst [364 or "364"] value 364
    inst [365 or "365"] value 365
    inst [366 or "366"] value 366
    inst [367 or "367"] value 367
    inst [368 or "368"] value 368
    inst [369 or "369"] value 369
    inst [370 or "370"] value 370
    inst [371 or "371"] value 371
    inst [372 or "372"] value 372
    inst [373 or "373"] value 373
    inst [374 or "374"] value 374
    inst [375 or "375"] value 375
    inst [376 or "376"] value 376
    inst [377 or "377"] value 377
    inst [378 or "378"] value 378
    inst [379 or "379"] value 379
    inst [380 or "380"] value 380
    inst [381 or "381"] value 381
    inst [382 or "382"] value 382
    inst [383 or "383"] value 383
    inst [384 or "384"] value 384
    inst [385 or "385"] value 385
    inst [386 or "386"] value 386
    inst [387 or "387"] value 387
    inst [388 or "388"] value 388
    inst [389 or "389"] value 389
    inst [390 or "390"] value 390
    inst [391 or "391"] value 391
    inst [392 or "392"] value 392
    inst [393 or "393"] value 393
    inst [394 or "394"] value 394
    inst [395 or "395"] value 395
    inst [396 or "396"] value 396
    inst [397 or "397"] value 397
    inst [398 or "398"] value 398
    inst [399 or "399"] value 399
    inst [400 or "400"] value 400
    inst [401 or "401"] value 401
    inst [402 or "402"] value 402
    inst [403 or "403"] value 403
    inst [404 or "404"] value 404
    inst [405 or "405"] value 405
    inst [406 or "406"] value 406
    inst [407 or "407"] value 407
    inst [408 or "408"] value 408
    inst [409 or "409"] value 409
    inst [410 or "410"] value 410
    inst [411 or "411"] value 411
    inst [412 or "412"] value 412
    inst [413 or "413"] value 413
    inst [414 or "414"] value 414
    inst [415 or "415"] value 415
    inst [416 or "416"] value 416
    inst [417 or "417"] value 417
    inst [418 or "418"] value 418
    inst [419 or "419"] value 419
    inst [420 or "420"] value 420
    inst [421 or "421"] value 421
    inst [422 or "422"] value 422
    inst [423 or "423"] value 423
    inst [424 or "424"] value 424
    inst [425 or "425"] value 425
    inst [426 or "426"] value 426
    inst [427 or "427"] value 427
    inst [428 or "428"] value 428
    inst [429 or "429"] value 429
    inst [430 or "430"] value 430
    inst [431 or "431"] value 431
    inst [432 or "432"] value 432
    inst [433 or "433"] value 433
    inst [434 or "434"] value 434
    inst [435 or "435"] value 435
    inst [436 or "436"] value 436
    inst [437 or "437"] value 437
    inst [438 or "438"] value 438
    inst [439 or "439"] value 439
    inst [440 or "440"] value 440
    inst [441 or "441"] value 441
    inst [442 or "442"] value 442
    inst [443 or "443"] value 443
    inst [444 or "444"] value 444
    inst [445 or "445"] value 445
    inst [446 or "446"] value 446
    inst [447 or "447"] value 447
    inst [448 or "448"] value 448
    inst [449 or "449"] value 449
    inst [450 or "450"] value 450
    inst [451 or "451"] value 451
    inst [452 or "452"] value 452
    inst [453 or "453"] value 453
    inst [454 or "454"] value 454
    inst [455 or "455"] value 455
    inst [456 or "456"] value 456
    inst [457 or "457"] value 457
    inst [458 or "458"] value 458
    inst [459 or "459"] value 459
    inst [460 or "460"] value 460
    inst [461 or "461"] value 461
    inst [462 or "462"] value 462
    inst [463 or "463"] value 463
    inst [464 or "464"] value 464
    inst [465 or "465"] value 465
    inst [466 or "466"] value 466
    inst [467 or "467"] value 467
    inst [468 or "468"] value 468
    inst [469 or "469"] value 469
    inst [470 or "470"] value 470
    inst [471 or "471"] value 471
    inst [472 or "472"] value 472
    inst [473 or "473"] value 473
    inst [474 or "474"] value 474
    inst [475 or "475"] value 475
    inst [476 or "476"] value 476
    inst [477 or "477"] value 477
    inst [478 or "478"] value 478
    inst [479 or "479"] value 479
    inst [480 or "480"] value 480
    inst [481 or "481"] value 481
    inst [482 or "482"] value 482
    inst [483 or "483"] value 483
    inst [484 or "484"] value 484
    inst [485 or "485"] value 485
    inst [486 or "486"] value 486
    inst [487 or "487"] value 487
    inst [488 or "488"] value 488
    inst [489 or "489"] value 489
    inst [490 or "490"] value 490
    inst [491 or "491"] value 491
    inst [492 or "492"] value 492
    inst [493 or "493"] value 493
    inst [494 or "494"] value 494
    inst [495 or "495"] value 495
    inst [496 or "496"] value 496
    inst [497 or "497"] value 497
    inst [498 or "498"] value 498
    inst [499 or "499"] value 499

prometheus.sample_pmda_3_12_2.sample.hordes.two [500 instances]
    Data Type: double  InDom: 144.21580 0x2400544c
    Semantics: instant  Units: none
Help:
500 instances
    inst [0 or "0"] value 499
    inst [1 or "1"] value 498
    inst [2 or "2"] value 497
    inst [3 or "3"] value 496
    inst [4 or "4"] value 495
    inst [5 or "5"] value 494
    inst [6 or "6"] value 493
    inst [7 or "7"] value 492
    inst [8 or "8"] value 491
    inst [9 or "9"] value 490
    inst [10 or "10"] value 489
    inst [11 or "11"] value 488
    inst [12 or "12"] value 487
    inst [13 or "13"] value 486
    inst [14 or "14"] value 485
    inst [15 or "15"] value 484
    inst [16 or "16"] value 483
    inst [17 or "17"] value 482
    inst [18 or "18"] value 481
    inst [19 or "19"] value 480
    inst [20 or "20"] value 479
    inst [21 or "21"] value 478
    inst [22 or "22"] value 477
    inst [23 or "23"] value 476
    inst [24 or "24"] value 475
    inst [25 or "25"] value 474
    inst [26 or "26"] value 473
    inst [27 or "27"] value 472
    inst [28 or "28"] value 471
    inst [29 or "29"] value 470
    inst [30 or "30"] value 469
    inst [31 or "31"] value 468
    inst [32 or "32"] value 467
    inst [33 or "33"] value 466
    inst [34 or "34"] value 465
    inst [35 or "35"] value 464
    inst [36 or "36"] value 463
    inst [37 or "37"] value 462
    inst [38 or "38"] value 461
    inst [39 or "39"] value 460
    inst [40 or "40"] value 459
    inst [41 or "41"] value 458
    inst [42 or "42"] value 457
    inst [43 or "43"] value 456
    inst [44 or "44"] value 455
    inst [45 or "45"] value 454
    inst [46 or "46"] value 453
    inst [47 or "47"] value 452
    inst [48 or "48"] value 451
    inst [49 or "49"] value 450
    inst [50 or "50"] value 449
    inst [51 or "51"] value 448
    inst [52 or "52"] value 447
    inst [53 or "53"] value 446
    inst [54 or "54"] value 445
    inst [55 or "55"] value 444
    inst [56 or "56"] value 443
    inst [57 or "57"] value 442
    inst [58 or "58"] value 441
    inst [59 or "59"] value 440
    inst [60 or "60"] value 439
    inst [61 or "61"] value 438
    inst [62 or "62"] value 437
    inst [63 or "63"] value 436
    inst [64 or "64"] value 435
    inst [65 or "65"] value 434
    inst [66 or "66"] value 433
    inst [67 or "67"] value 432
    inst [68 or "68"] value 431
    inst [69 or "69"] value 430
    inst [70 or "70"] value 429
    inst [71 or "71"] value 428
    inst [72 or "72"] value 427
    inst [73 or "73"] value 426
    inst [74 or "74"] value 425
    inst [75 or "75"] value 424
    inst [76 or "76"] value 423
    inst [77 or "77"] value 422
    inst [78 or "78"] value 421
    inst [79 or "79"] value 420
    inst [80 or "80"] value 419
    inst [81 or "81"] value 418
    inst [82 or "82"] value 417
    inst [83 or "83"] value 416
    inst [84 or "84"] value 415
    inst [85 or "85"] value 414
    inst [86 or "86"] value 413
    inst [87 or "87"] value 412
    inst [88 or "88"] value 411
    inst [89 or "89"] value 410
    inst [90 or "90"] value 409
    inst [91 or "91"] value 408
    inst [92 or "92"] value 407
    inst [93 or "93"] value 406
    inst [94 or "94"] value 405
    inst [95 or "95"] value 404
    inst [96 or "96"] value 403
    inst [97 or "97"] value 402
    inst [98 or "98"] value 401
    inst [99 or "99"] value 400
    inst [100 or "100"] value 399
    inst [101 or "101"] value 398
    inst [102 or "102"] value 397
    inst [103 or "103"] value 396
    inst [104 or "104"] value 395
    inst [105 or "105"] value 394
    inst [106 or "106"] value 393
    inst [107 or "107"] value 392
    inst [108 or "108"] value 391
    inst [109 or "109"] value 390
    inst [110 or "110"] value 389
    inst [111 or "111"] value 388
    inst [112 or "112"] value 387
    inst [113 or "113"] value 386
    inst [114 or "114"] value 385
    inst [115 or "115"] value 384
    inst [116 or "116"] value 383
    inst [117 or "117"] value 382
    inst [118 or "118"] value 381
    inst [119 or "119"] value 380
    inst [120 or "120"] value 379
    inst [121 or "121"] value 378
    inst [122 or "122"] value 377
    inst [123 or "123"] value 376
    inst [124 or "124"] value 375
    inst [125 or "125"] value 374
    inst [126 or "126"] value 373
    inst [127 or "127"] value 372
    inst [128 or "128"] value 371
    inst [129 or "129"] value 370
    inst [130 or "130"] value 369
    inst [131 or "131"] value 368
    inst [132 or "132"] value 367
    inst [133 or "133"] value 366
    inst [134 or "134"] value 365
    inst [135 or "135"] value 364
    inst [136 or "136"] value 363
    inst [137 or "137"] value 362
    inst [138 or "138"] value 361
    inst [139 or "139"] value 360
    inst [140 or "140"] value 359
    inst [141 or "141"] value 358
    inst [142 or "142"] value 357
    inst [143 or "143"] value 356
    inst [144 or "144"] value 355
    inst [145 or "145"] value 354
    inst [146 or "146"] value 353
    inst [147 or "147"] value 352
    inst [148 or "148"] value 351
    inst [149 or "149"] value 350
    inst [150 or "150"] value 349
    inst [151 or "151"] value 348
    inst [152 or "152"] value 347
    inst [153 or "153"] value 346
    inst [154 or "154"] value 345
    inst [155 or "155"] value 344
    inst [156 or "156"] value 343
    inst [157 or "157"] value 342
    inst [158 or "158"] value 341
    inst [159 or "159"] value 340
    inst [160 or "160"] value 339
    inst [161 or "161"] value 338
    inst [162 or "162"] value 337
    inst [163 or "163"] value 336
    inst [164 or "164"] value 335
    inst [165 or "165"] value 334
    inst [166 or "166"] value 333
    inst [167 or "167"] value 332
    inst [168 or "168"] value 331
    inst [169 or "169"] value 330
    inst [170 or "170"] value 329
    inst [171 or "171"] value 328
    inst [172 or "172"] value 327
    inst [173 or "173"] value 326
    inst [174 or "174"] value 325
    inst [175 or "175"] value 324
    inst [176 or "176"] value 323
    inst [177 or "177"] value 322
    inst [178 or "178"] value 321
    inst [179 or "179"] value 320
    inst [180 or "180"] value 319
    inst [181 or "181"] value 318
    inst [182 or "182"] value 317
    inst [183 or "183"] value 316
    inst [184 or "184"] value 315
    inst [185 or "185"] value 314
    inst [186 or "186"] value 313
    inst [187 or "187"] value 312
    inst [188 or "188"] value 311
    inst [189 or "189"] value 310
    inst [190 or "190"] value 309
    inst [191 or "191"] value 308
    inst [192 or "192"] value 307
    inst [193 or "193"] value 306
    inst [194 or "194"] value 305
    inst [195 or "195"] value 304
    inst [196 or "196"] value 303
    inst [197 or "197"] value 302
    inst [198 or "198"] value 301
    inst [199 or "199"] value 300
    inst [200 or "200"] value 299
    inst [201 or "201"] value 298
    inst [202 or "202"] value 297
    inst [203 or "203"] value 296
    inst [204 or "204"] value 295
    inst [205 or "205"] value 294
    inst [206 or "206"] value 293
    inst [207 or "207"] value 292
    inst [208 or "208"] value 291
    inst [209 or "209"] value 290
    inst [210 or "210"] value 289
    inst [211 or "211"] value 288
    inst [212 or "212"] value 287
    inst [213 or "213"] value 286
    inst [214 or "214"] value 285
    inst [215 or "215"] value 284
    inst [216 or "216"] value 283
    inst [217 or "217"] value 282
    inst [218 or "218"] value 281
    inst [219 or "219"] value 280
    inst [220 or "220"] value 279
    inst [221 or "221"] value 278
    inst [222 or "222"] value 277
    inst [223 or "223"] value 276
    inst [224 or "224"] value 275
    inst [225 or "225"] value 274
    inst [226 or "226"] value 273
    inst [227 or "227"] value 272
    inst [228 or "228"] value 271
    inst [229 or "229"] value 270
    inst [230 or "230"] value 269
    inst [231 or "231"] value 268
    inst [232 or "232"] value 267
    inst [233 or "233"] value 266
    inst [234 or "234"] value 265
    inst [235 or "235"] value 264
    inst [236 or "236"] value 263
    inst [237 or "237"] value 262
    inst [238 or "238"] value 261
    inst [239 or "239"] value 260
    inst [240 or "240"] value 259
    inst [241 or "241"] value 258
    inst [242 or "242"] value 257
    inst [243 or "243"] value 256
    inst [244 or "244"] value 255
    inst [245 or "245"] value 254
    inst [246 or "246"] value 253
    inst [247 or "247"] value 252
    inst [248 or "248"] value 251
    inst [249 or "249"] value 250
    inst [250 or "250"] value 249
    inst [251 or "251"] value 248
    inst [252 or "252"] value 247
    inst [253 or "253"] value 246
    inst [254 or "254"] value 245
    inst [255 or "255"] value 244
    inst [256 or "256"] value 243
    inst [257 or "257"] value 242
    inst [258 or "258"] value 241
    inst [259 or "259"] value 240
    inst [260 or "260"] value 239
    inst [261 or "261"] value 238
    inst [262 or "262"] value 237
    inst [263 or "263"] value 236
    inst [264 or "264"] value 235
    inst [265 or "265"] value 234
    inst [266 or "266"] value 233
    inst [267 or "267"] value 232
    inst [268 or "268"] value 231
    inst [269 or "269"] value 230
    inst [270 or "270"] value 229
    inst [271 or "271"] value 228
    inst [272 or "272"] value 227
    inst [273 or "273"] value 226
    inst [274 or "274"] value 225
    inst [275 or "275"] value 224
    inst [276 or "276"] value 223
    inst [277 or "277"] value 222
    inst [278 or "278"] value 221
    inst [279 or "279"] value 220
    inst [280 or "280"] value 219
    inst [281 or "281"] value 218
    inst [282 or "282"] value 217
    inst [283 or "283"] value 216
    inst [284 or "284"] value 215
    inst [285 or "285"] value 214
    inst [286 or "286"] value 213
    inst [287 or "287"] value 212
    inst [288 or "288"] value 211
    inst [289 or "289"] value 210
    inst [290 or "290"] value 209
    inst [291 or "291"] value 208
    inst [292 or "292"] value 207
    inst [293 or "293"] value 206
    inst [294 or "294"] value 205
    inst [295 or "295"] value 204
    inst [296 or "296"] value 203
    inst [297 or "297"] value 202
    inst [298 or "298"] value 201
    inst [299 or "299"] value 200
    inst [300 or "300"] value 199
    inst [301 or "301"] value 198
    inst [302 or "302"] value 197
    inst [303 or "303"] value 196
    inst [304 or "304"] value 195
    inst [305 or "305"] value 194
    inst [306 or "306"] value 193
    inst [307 or "307"] value 192
    inst [308 or "308"] value 191
    inst [309 or "309"] value 190
    inst [310 or "310"] value 189
    inst [311 or "311"] value 188
    inst [312 or "312"] value 187
    inst [313 or "313"] value 186
    inst [314 or "314"] value 185
    inst [315 or "315"] value 184
    inst [316 or "316"] value 183
    inst [317 or "317"] value 182
    inst [318 or "318"] value 181
    inst [319 or "319"] value 180
    inst [320 or "320"] value 179
    inst [321 or "321"] value 178
    inst [322 or "322"] value 177
    inst [323 or "323"] value 176
    inst [324 or "324"] value 175
    inst [325 or "325"] value 174
    inst [326 or "326"] value 173
    inst [327 or "327"] value 172
    inst [328 or "328"] value 171
    inst [329 or "329"] value 170
    inst [330 or "330"] value 169
    inst [331 or "331"] value 168
    inst [332 or "332"] value 167
    inst [333 or "333"] value 166
    inst [334 or "334"] value 165
    inst [335 or "335"] value 164
    inst [336 or "336"] value 163
    inst [337 or "337"] value 162
    inst [338 or "338"] value 161
    inst [339 or "339"] value 160
    inst [340 or "340"] value 159
    inst [341 or "341"] value 158
    inst [342 or "342"] value 157
    inst [343 or "343"] value 156
    inst [344 or "344"] value 155
    inst [345 or "345"] value 154
    inst [346 or "346"] value 153
    inst [347 or "347"] value 152
    inst [348 or "348"] value 151
    inst [349 or "349"] value 150
    inst [350 or "350"] value 149
    inst [351 or "351"] value 148
    inst [352 or "352"] value 147
    inst [353 or "353"] value 146
    inst [354 or "354"] value 145
    inst [355 or "355"] value 144
    inst [356 or "356"] value 143
    inst [357 or "357"] value 142
    inst [358 or "358"] value 141
    inst [359 or "359"] value 140
    inst [360 or "360"] value 139
    inst [361 or "361"] value 138
    inst [362 or "362"] value 137
    inst [363 or "363"] value 136
    inst [364 or "364"] value 135
    inst [365 or "365"] value 134
    inst [366 or "366"] value 133
    inst [367 or "367"] value 132
    inst [368 or "368"] value 131
    inst [369 or "369"] value 130
    inst [370 or "370"] value 129
    inst [371 or "371"] value 128
    inst [372 or "372"] value 127
    inst [373 or "373"] value 126
    inst [374 or "374"] value 125
    inst [375 or "375"] value 124
    inst [376 or "376"] value 123
    inst [377 or "377"] value 122
    inst [378 or "378"] value 121
    inst [379 or "379"] value 120
    inst [380 or "380"] value 119
    inst [381 or "381"] value 118
    inst [382 or "382"] value 117
    inst [383 or "383"] value 116
    inst [384 or "384"] value 115
    inst [385 or "385"] value 114
    inst [386 or "386"] value 113
    inst [387 or "387"] value 112
    inst [388 or "388"] value 111
    inst [389 or "389"] value 110
    inst [390 or "390"] value 109
    inst [391 or "391"] value 108
    inst [392 or "392"] value 107
    inst [393 or "393"] value 106
    inst [394 or "394"] value 105
    inst [395 or "395"] value 104
    inst [396 or "396"] value 103
    inst [397 or "397"] value 102
    inst [398 or "398"] value 101
    inst [399 or "399"] value 100
    inst [400 or "400"] value 99
    inst [401 or "401"] value 98
    inst [402 or "402"] value 97
    inst [403 or "403"] value 96
    inst [404 or "404"] value 95
    inst [405 or "405"] value 94
    inst [406 or "406"] value 93
    inst [407 or "407"] value 92
    inst [408 or "408"] value 91
    inst [409 or "409"] value 90
    inst [410 or "410"] value 89
    inst [411 or "411"] value 88
    inst [412 or "412"] value 87
    inst [413 or "413"] value 86
    inst [414 or "414"] value 85
    inst [415 or "415"] value 84
    inst [416 or "416"] value 83
    inst [417 or "417"] value 82
    inst [418 or "418"] value 81
    inst [419 or "419"] value 80
    inst [420 or "420"] value 79
    inst [421 or "421"] value 78
    inst [422 or "422"] value 77
    inst [423 or "423"] value 76
    inst [424 or "424"] value 75
    inst [425 or "425"] value 74
    inst [426 or "426"] value 73
    inst [427 or "427"] value 72
    inst [428 or "428"] value 71
    inst [429 or "429"] value 70
    inst [430 or "430"] value 69
    inst [431 or "431"] value 68
    inst [432 or "432"] value 67
    inst [433 or "433"] value 66
    inst [434 or "434"] value 65
    inst [435 or "435"] value 64
    inst [436 or "436"] value 63
    inst [437 or "437"] value 62
    inst [438 or "438"] value 61
    inst [439 or "439"] value 60
    inst [440 or "440"] value 59
    inst [441 or "441"] value 58
    inst [442 or "442"] value 57
    inst [443 or "443"] value 56
    inst [444 or "444"] value 55
    inst [445 or "445"] value 54
    inst [446 or "446"] value 53
    inst [447 or "447"] value 52
    inst [448 or "448"] value 51
    inst [449 or "449"] value 50
    inst [450 or "450"] value 49
    inst [451 or "451"] value 48
    inst [452 or "452"] value 47
    inst [453 or "453"] value 46
    inst [454 or "454"] value 45
    inst [455 or "455"] value 44
    inst [456 or "456"] value 43
    inst [457 or "457"] value 42
    inst [458 or "458"] value 41
    inst [459 or "459"] value 40
    inst [460 or "460"] value 39
    inst [461 or "461"] value 38
    inst [462 or "462"] value 37
    inst [463 or "463"] value 36
    inst [464 or "464"] value 35
    inst [465 or "465"] value 34
    inst [466 or "466"] value 33
    inst [467 or "467"] value 32
    inst [468 or "468"] value 31
    inst [469 or "469"] value 30
    inst [470 or "470"] value 29
    inst [471 or "471"] value 28
    inst [472 or "472"] value 27
    inst [473 or "473"] value 26
    inst [474 or "474"] value 25
    inst [475 or "475"] value 24
    inst [476 or "476"] value 23
    inst [477 or "477"] value 22
    inst [478 or "478"] value 21
    inst [479 or "479"] value 20
    inst [480 or "480"] value 19
    inst [481 or "481"] value 18
    inst [482 or "482"] value 17
    inst [483 or "483"] value 16
    inst [484 or "484"] value 15
    inst [485 or "485"] value 14
    inst [486 or "486"] value 13
    inst [487 or "487"] value 12
    inst [488 or "488"] value 11
    inst [489 or "489"] value 10
    inst [490 or "490"] value 9
    inst [491 or "491"] value 8
    inst [492 or "492"] value 7
    inst [493 or "493"] value 6
    inst [494 or "494"] value 5
    inst [495 or "495"] value 4
    inst [496 or "496"] value 3
    inst [497 or "497"] value 2
    inst [498 or "498"] value 1
    inst [499 or "499"] value 0

prometheus.sample_pmda_3_12_2.sample.kbyte_ctr [counter Kbytes/second]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: byte
Help:
counter Kbytes/second
    value 2627584

prometheus.sample_pmda_3_12_2.sample.load [Hypothetical load]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Hypothetical load
    value 42

prometheus.sample_pmda_3_12_2.sample.long.bin [like sample.bin but type 32]
    Data Type: double  InDom: 144.21542 0x24005426
    Semantics: instant  Units: none
Help:
like sample.bin but type 32
    inst [0 or "bin-100"] value 100
    inst [1 or "bin-200"] value 200
    inst [2 or "bin-300"] value 300
    inst [3 or "bin-400"] value 400
    inst [4 or "bin-500"] value 500
    inst [5 or "bin-600"] value 600
    inst [6 or "bin-700"] value 700
    inst [7 or "bin-800"] value 800
    inst [8 or "bin-900"] value 900

prometheus.sample_pmda_3_12_2.sample.long.bin_ctr [like sample.bin but type 32, SEM_COUNTER and SPACE_KBYTE]
    Data Type: double  InDom: 144.21543 0x24005427
    Semantics: counter  Units: byte
Help:
like sample.bin but type 32, SEM_COUNTER and SPACE_KBYTE
    inst [0 or "bin-100"] value 102400
    inst [1 or "bin-200"] value 204800
    inst [2 or "bin-300"] value 307200
    inst [3 or "bin-400"] value 409600
    inst [4 or "bin-500"] value 512000
    inst [5 or "bin-600"] value 614400
    inst [6 or "bin-700"] value 716800
    inst [7 or "bin-800"] value 819200
    inst [8 or "bin-900"] value 921600

prometheus.sample_pmda_3_12_2.sample.long.hundred [100 as a 32-bit integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
100 as a 32-bit integer
    value 100

prometheus.sample_pmda_3_12_2.sample.long.million [1000000 as a 32-bit integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1000000 as a 32-bit integer
    value 1000000

prometheus.sample_pmda_3_12_2.sample.long.one [1 as a 32-bit integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1 as a 32-bit integer
    value 1

prometheus.sample_pmda_3_12_2.sample.long.ten [10 as a 32-bit integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
10 as a 32-bit integer
    value 10

prometheus.sample_pmda_3_12_2.sample.long.write_me [a 32-bit integer that can be modified]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
a 32-bit integer that can be modified
    value 13

prometheus.sample_pmda_3_12_2.sample.longlong.bin [like sample.bin but type 64]
    Data Type: double  InDom: 144.21556 0x24005434
    Semantics: instant  Units: none
Help:
like sample.bin but type 64
    inst [0 or "bin-100"] value 100
    inst [1 or "bin-200"] value 200
    inst [2 or "bin-300"] value 300
    inst [3 or "bin-400"] value 400
    inst [4 or "bin-500"] value 500
    inst [5 or "bin-600"] value 600
    inst [6 or "bin-700"] value 700
    inst [7 or "bin-800"] value 800
    inst [8 or "bin-900"] value 900

prometheus.sample_pmda_3_12_2.sample.longlong.bin_ctr [like sample.bin but type 64, SEM_COUNTER and SPACE_KBYTE]
    Data Type: double  InDom: 144.21557 0x24005435
    Semantics: counter  Units: byte
Help:
like sample.bin but type 64, SEM_COUNTER and SPACE_KBYTE
    inst [0 or "bin-100"] value 102400
    inst [1 or "bin-200"] value 204800
    inst [2 or "bin-300"] value 307200
    inst [3 or "bin-400"] value 409600
    inst [4 or "bin-500"] value 512000
    inst [5 or "bin-600"] value 614400
    inst [6 or "bin-700"] value 716800
    inst [7 or "bin-800"] value 819200
    inst [8 or "bin-900"] value 921600

prometheus.sample_pmda_3_12_2.sample.longlong.hundred [100 as a 64-bit integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
100 as a 64-bit integer
    value 100

prometheus.sample_pmda_3_12_2.sample.longlong.million [1000000 as a 64-bit integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1000000 as a 64-bit integer
    value 1000000

prometheus.sample_pmda_3_12_2.sample.longlong.one [1 as a 64-bit integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1 as a 64-bit integer
    value 1

prometheus.sample_pmda_3_12_2.sample.longlong.ten [10 as a 64-bit integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
10 as a 64-bit integer
    value 10

prometheus.sample_pmda_3_12_2.sample.longlong.write_me [a 64-bit integer that can be modified]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
a 64-bit integer that can be modified
    value 13

prometheus.sample_pmda_3_12_2.sample.magnitude [Powers of two.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
Powers of two.
    value 64

prometheus.sample_pmda_3_12_2.sample.many.count [number of instances in sample.many.int's domain]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
number of instances in sample.many.int's domain
    value 5

prometheus.sample_pmda_3_12_2.sample.many.int [variable sized instance domain]
    Data Type: double  InDom: 144.21602 0x24005462
    Semantics: instant  Units: none
Help:
variable sized instance domain
    inst [0 or "i-0"] value 0
    inst [1 or "i-1"] value 1
    inst [2 or "i-2"] value 2
    inst [3 or "i-3"] value 3
    inst [4 or "i-4"] value 4

prometheus.sample_pmda_3_12_2.sample.milliseconds [Elapsed time (milliseconds)]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
Elapsed time (milliseconds)
    value 770.782631

prometheus.sample_pmda_3_12_2.sample.negative.ctr.m_32 [32-bit integer counter metric with negative value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
32-bit integer counter metric with negative value
    value -9993

prometheus.sample_pmda_3_12_2.sample.negative.ctr.m_64 [64-bit integer counter metric with negative value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
64-bit integer counter metric with negative value
    value -9993

prometheus.sample_pmda_3_12_2.sample.negative.ctr.m_double [double counter metric with negative value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
double counter metric with negative value
    value -9993

prometheus.sample_pmda_3_12_2.sample.negative.ctr.m_float [float counter metric with negative value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
float counter metric with negative value
    value -9993

prometheus.sample_pmda_3_12_2.sample.negative.discrete.m_32 [32-bit integer discrete metric with negative value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
32-bit integer discrete metric with negative value
    value -9991

prometheus.sample_pmda_3_12_2.sample.negative.discrete.m_64 [64-bit integer discrete metric with negative value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
64-bit integer discrete metric with negative value
    value -9991

prometheus.sample_pmda_3_12_2.sample.negative.discrete.m_double [double discrete metric with negative value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
double discrete metric with negative value
    value -9991

prometheus.sample_pmda_3_12_2.sample.negative.discrete.m_float [float discrete metric with negative value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: discrete  Units: none
Help:
float discrete metric with negative value
    value -9991

prometheus.sample_pmda_3_12_2.sample.negative.instant.m_32 [32-bit integer instantaneous metric with negative value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
32-bit integer instantaneous metric with negative value
    value -9992

prometheus.sample_pmda_3_12_2.sample.negative.instant.m_64 [64-bit integer instantaneous metric with negative value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
64-bit integer instantaneous metric with negative value
    value -9992

prometheus.sample_pmda_3_12_2.sample.negative.instant.m_double [double instantaneous metric with negative value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
double instantaneous metric with negative value
    value -9992

prometheus.sample_pmda_3_12_2.sample.negative.instant.m_float [float instantaneous metric with negative value]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
float instantaneous metric with negative value
    value -9992

prometheus.sample_pmda_3_12_2.sample.not_ready [interval (in seconds) during which PMDA does not respond to PDUs]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
interval (in seconds) during which PMDA does not respond to PDUs
    value 0

prometheus.sample_pmda_3_12_2.sample.part_bin [Several constant instances]
    Data Type: double  InDom: 144.21512 0x24005408
    Semantics: instant  Units: none
Help:
Several constant instances
    inst [0 or "bin-100"] value 100
    inst [1 or "bin-300"] value 300
    inst [2 or "bin-500"] value 500
    inst [3 or "bin-700"] value 700
    inst [4 or "bin-900"] value 900

prometheus.sample_pmda_3_12_2.sample.pdu [Total PDU count]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Total PDU count
    value 3710

prometheus.sample_pmda_3_12_2.sample.percontext.control.active [Number of active PMAPI contexts]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Number of active PMAPI contexts
    value 1

prometheus.sample_pmda_3_12_2.sample.percontext.control.ctx [Number of PMAPI contexts seen]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Number of PMAPI contexts seen
    value 4

prometheus.sample_pmda_3_12_2.sample.percontext.control.end [Number of PMAPI contexts closed]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Number of PMAPI contexts closed
    value 1

prometheus.sample_pmda_3_12_2.sample.percontext.control.start [Number of new PMAPI contexts seen]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Number of new PMAPI contexts seen
    value 2

prometheus.sample_pmda_3_12_2.sample.percontext.pdu [Total PDU count for the client context]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Total PDU count for the client context
    value 2993

prometheus.sample_pmda_3_12_2.sample.percontext.recv_pdu [Count of PDUs received from the client context]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Count of PDUs received from the client context
    value 1497

prometheus.sample_pmda_3_12_2.sample.percontext.xmit_pdu [Count of PDUs transmitted]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Count of PDUs transmitted
    value 1496

prometheus.sample_pmda_3_12_2.sample.rapid [count very quickly]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
count very quickly
    value 2400000000

prometheus.sample_pmda_3_12_2.sample.recv_pdu [Count of PDUs received]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Count of PDUs received
    value 1856

prometheus.sample_pmda_3_12_2.sample.scale_step.bytes_down [count down by powers of 2, wrap back to 10 Tbytes at 1]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
count down by powers of 2, wrap back to 10 Tbytes at 1
    value 1

prometheus.sample_pmda_3_12_2.sample.scale_step.count_down [count down by powers of 10, wrap back to 10e12 at 1]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
count down by powers of 10, wrap back to 10e12 at 1
    value 1

prometheus.sample_pmda_3_12_2.sample.scale_step.none_up [count up dimensionless by multiples of 10, wrap back to 1 at 10 million]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
count up dimensionless by multiples of 10, wrap back to 1 at 10 million
    value 1

prometheus.sample_pmda_3_12_2.sample.scale_step.time_up_nanosecs [count up nanoseconds by multiples of 10, wrap back to 1 nanosecond at 1 day]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: sec
Help:
count up nanoseconds by multiples of 10, wrap back to 1 nanosecond at 1 day
    value 1e-09

prometheus.sample_pmda_3_12_2.sample.scale_step.time_up_secs [count up seconds by multiples of 10, wrap back to 1 second at 1 day]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: sec
Help:
count up seconds by multiples of 10, wrap back to 1 second at 1 day
    value 1

prometheus.sample_pmda_3_12_2.sample.scramble.bin [Several constant instances, instances scrambled]
    Data Type: double  InDom: 144.21604 0x24005464
    Semantics: instant  Units: none
Help:
Several constant instances, instances scrambled
    inst [0 or "bin-200"] value 200
    inst [1 or "bin-400"] value 400
    inst [2 or "bin-700"] value 700
    inst [3 or "bin-600"] value 600

prometheus.sample_pmda_3_12_2.sample.scramble.version [Current state version and reset for sample.scramble.bin]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Current state version and reset for sample.scramble.bin
    value 2

prometheus.sample_pmda_3_12_2.sample.secret.foo.bar.four [dynamic *.secret.foo.bar.four metric]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
dynamic *.secret.foo.bar.four metric
    value 4

prometheus.sample_pmda_3_12_2.sample.secret.foo.bar.grunt.five [dynamic *.secret.foo.bar.grunt.five metric]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
dynamic *.secret.foo.bar.grunt.five metric
    value 5

prometheus.sample_pmda_3_12_2.sample.secret.foo.bar.grunt.snort.huff.puff.seven [dynamic *.secret.foo.bar.grunt.snort.huff.puff.seven metric]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
dynamic *.secret.foo.bar.grunt.snort.huff.puff.seven metric
    value 7

prometheus.sample_pmda_3_12_2.sample.secret.foo.bar.grunt.snort.six [dynamic *.secret.foo.bar.grunt.snort.six metric]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
dynamic *.secret.foo.bar.grunt.snort.six metric
    value 6

prometheus.sample_pmda_3_12_2.sample.secret.foo.bar.max.redirect [PMDA status]
    Data Type: double  InDom: 144.21529 0x24005419
    Semantics: discrete  Units: none
Help:
PMDA status
    inst [0 or "root"] value 0
    inst [1 or "pmcd"] value 0
    inst [2 or "proc"] value 0
    inst [3 or "xfs"] value 0
    inst [4 or "sample"] value 0
    inst [5 or "sampledso"] value 0
    inst [6 or "linux"] value 0
    inst [7 or "nfsclient"] value 0
    inst [8 or "mmv"] value 0
    inst [9 or "jbd2"] value 0
    inst [10 or "papi"] value 0
    inst [11 or "dm"] value 0
    inst [12 or "prometheus"] value 0

prometheus.sample_pmda_3_12_2.sample.secret.foo.bar.three [dynamic *.secret.foo.bar.three metric]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
dynamic *.secret.foo.bar.three metric
    value 3

prometheus.sample_pmda_3_12_2.sample.secret.foo.one [dynamic *.secret.foo.one metric]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
dynamic *.secret.foo.one metric
    value 1

prometheus.sample_pmda_3_12_2.sample.secret.foo.two [dynamic *.secret.foo.two metric]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
dynamic *.secret.foo.two metric
    value 2

prometheus.sample_pmda_3_12_2.sample.step [A step function (instantaneous)]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
A step function (instantaneous)
    value 520

prometheus.sample_pmda_3_12_2.sample.step_counter [A step function (counter)]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
A step function (counter)
    value 520

prometheus.sample_pmda_3_12_2.sample.ulong.bin [like sample.bin but type U32]
    Data Type: double  InDom: 144.21549 0x2400542d
    Semantics: instant  Units: none
Help:
like sample.bin but type U32
    inst [0 or "bin-100"] value 100
    inst [1 or "bin-200"] value 200
    inst [2 or "bin-300"] value 300
    inst [3 or "bin-400"] value 400
    inst [4 or "bin-500"] value 500
    inst [5 or "bin-600"] value 600
    inst [6 or "bin-700"] value 700
    inst [7 or "bin-800"] value 800
    inst [8 or "bin-900"] value 900

prometheus.sample_pmda_3_12_2.sample.ulong.bin_ctr [like sample.bin but type U32, SEM_COUNTER and SPACE_KBYTE]
    Data Type: double  InDom: 144.21550 0x2400542e
    Semantics: counter  Units: byte
Help:
like sample.bin but type U32, SEM_COUNTER and SPACE_KBYTE
    inst [0 or "bin-100"] value 102400
    inst [1 or "bin-200"] value 204800
    inst [2 or "bin-300"] value 307200
    inst [3 or "bin-400"] value 409600
    inst [4 or "bin-500"] value 512000
    inst [5 or "bin-600"] value 614400
    inst [6 or "bin-700"] value 716800
    inst [7 or "bin-800"] value 819200
    inst [8 or "bin-900"] value 921600

prometheus.sample_pmda_3_12_2.sample.ulong.hundred [100 as a 32-bit unsigned integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
100 as a 32-bit unsigned integer
    value 100

prometheus.sample_pmda_3_12_2.sample.ulong.million [1000000 as a 32-bit unsigned integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1000000 as a 32-bit unsigned integer
    value 1000000

prometheus.sample_pmda_3_12_2.sample.ulong.one [1 as a 32-bit unsigned integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1 as a 32-bit unsigned integer
    value 1

prometheus.sample_pmda_3_12_2.sample.ulong.ten [10 as a 32-bit unsigned integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
10 as a 32-bit unsigned integer
    value 10

prometheus.sample_pmda_3_12_2.sample.ulong.write_me [a 32-bit unsigned integer that can be modified]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
a 32-bit unsigned integer that can be modified
    value 13

prometheus.sample_pmda_3_12_2.sample.ulonglong.bin [like sample.bin but type U64]
    Data Type: double  InDom: 144.21563 0x2400543b
    Semantics: instant  Units: none
Help:
like sample.bin but type U64
    inst [0 or "bin-100"] value 100
    inst [1 or "bin-200"] value 200
    inst [2 or "bin-300"] value 300
    inst [3 or "bin-400"] value 400
    inst [4 or "bin-500"] value 500
    inst [5 or "bin-600"] value 600
    inst [6 or "bin-700"] value 700
    inst [7 or "bin-800"] value 800
    inst [8 or "bin-900"] value 900

prometheus.sample_pmda_3_12_2.sample.ulonglong.bin_ctr [like sample.bin but type U64, SEM_COUNTER and SPACE_KBYTE]
    Data Type: double  InDom: 144.21564 0x2400543c
    Semantics: counter  Units: byte
Help:
like sample.bin but type U64, SEM_COUNTER and SPACE_KBYTE
    inst [0 or "bin-100"] value 102400
    inst [1 or "bin-200"] value 204800
    inst [2 or "bin-300"] value 307200
    inst [3 or "bin-400"] value 409600
    inst [4 or "bin-500"] value 512000
    inst [5 or "bin-600"] value 614400
    inst [6 or "bin-700"] value 716800
    inst [7 or "bin-800"] value 819200
    inst [8 or "bin-900"] value 921600

prometheus.sample_pmda_3_12_2.sample.ulonglong.hundred [100 as a 64-bit unsigned integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
100 as a 64-bit unsigned integer
    value 100

prometheus.sample_pmda_3_12_2.sample.ulonglong.million [1000000 as a 64-bit unsigned integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1000000 as a 64-bit unsigned integer
    value 1000000

prometheus.sample_pmda_3_12_2.sample.ulonglong.one [1 as a 64-bit unsigned integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1 as a 64-bit unsigned integer
    value 1

prometheus.sample_pmda_3_12_2.sample.ulonglong.ten [10 as a 64-bit unsigned integer]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
10 as a 64-bit unsigned integer
    value 10

prometheus.sample_pmda_3_12_2.sample.ulonglong.write_me [a 64-bit unsigned integer that can be modified]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
a 64-bit unsigned integer that can be modified
    value 13

prometheus.sample_pmda_3_12_2.sample.wrap.long [long counter that wraps]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
long counter that wraps
    value -1073741830

prometheus.sample_pmda_3_12_2.sample.wrap.longlong [long long counter that wraps]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
long long counter that wraps
    value -4.611686018427388e+18

prometheus.sample_pmda_3_12_2.sample.wrap.ulong [unsigned long counter that wraps]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
unsigned long counter that wraps
    value 2147483642

prometheus.sample_pmda_3_12_2.sample.wrap.ulonglong [unsigned long long counter that wraps]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
unsigned long long counter that wraps
    value 9.223372036854776e+18

prometheus.sample_pmda_3_12_2.sample.xmit_pdu [Count of PDUs transmitted]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Count of PDUs transmitted
    value 1854

prometheus.sample_prometheus_metrics.go_gc_duration_seconds [A summary of the GC invocation durations.]
    Data Type: double  InDom: 144.22528 0x24005800
    Semantics: instant  Units: sec
Help:
A summary of the GC invocation durations.
    inst [0 or "0 quantile:0"] value 0.000159623
    inst [1 or "1 quantile:0.25"] value 0.000291993
    inst [2 or "2 quantile:0.5"] value 0.000381281
    inst [3 or "3 quantile:0.75"] value 0.000527875
    inst [4 or "4 quantile:1"] value 0.025478763

prometheus.sample_prometheus_metrics.go_gc_duration_seconds_count [A summary of the GC invocation durations.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
A summary of the GC invocation durations.
    value 1818

prometheus.sample_prometheus_metrics.go_gc_duration_seconds_sum [A summary of the GC invocation durations.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
A summary of the GC invocation durations.
    value 1.39120677

prometheus.sample_prometheus_metrics.go_goroutines [Number of goroutines that currently exist.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Number of goroutines that currently exist.
    value 78

prometheus.sample_prometheus_metrics.go_memstats_alloc_bytes [Number of bytes allocated and still in use.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes allocated and still in use.
    value 101766768

prometheus.sample_prometheus_metrics.go_memstats_alloc_bytes_total [Total number of bytes allocated, even if freed.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: byte
Help:
Total number of bytes allocated, even if freed.
    value 24248830368

prometheus.sample_prometheus_metrics.go_memstats_buck_hash_sys_bytes [Number of bytes used by the profiling bucket hash table.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes used by the profiling bucket hash table.
    value 1657834

prometheus.sample_prometheus_metrics.go_memstats_frees_total [Total number of frees.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Total number of frees.
    value 170205394

prometheus.sample_prometheus_metrics.go_memstats_gc_sys_bytes [Number of bytes used for garbage collection system metadata.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes used for garbage collection system metadata.
    value 4403200

prometheus.sample_prometheus_metrics.go_memstats_heap_alloc_bytes [Number of heap bytes allocated and still in use.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of heap bytes allocated and still in use.
    value 101766768

prometheus.sample_prometheus_metrics.go_memstats_heap_idle_bytes [Number of heap bytes waiting to be used.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of heap bytes waiting to be used.
    value 15179776

prometheus.sample_prometheus_metrics.go_memstats_heap_inuse_bytes [Number of heap bytes that are in use.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of heap bytes that are in use.
    value 107143168

prometheus.sample_prometheus_metrics.go_memstats_heap_objects [Number of allocated objects.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Number of allocated objects.
    value 257412

prometheus.sample_prometheus_metrics.go_memstats_heap_released_bytes_total [Total number of heap bytes released to OS.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: byte
Help:
Total number of heap bytes released to OS.
    value 13107200

prometheus.sample_prometheus_metrics.go_memstats_heap_sys_bytes [Number of heap bytes obtained from system.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of heap bytes obtained from system.
    value 122322944

prometheus.sample_prometheus_metrics.go_memstats_last_gc_time_seconds [Number of seconds since 1970 of last garbage collection.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: sec
Help:
Number of seconds since 1970 of last garbage collection.
    value 1490769547.928474

prometheus.sample_prometheus_metrics.go_memstats_lookups_total [Total number of pointer lookups.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Total number of pointer lookups.
    value 477856

prometheus.sample_prometheus_metrics.go_memstats_mallocs_total [Total number of mallocs.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Total number of mallocs.
    value 170462806

prometheus.sample_prometheus_metrics.go_memstats_mcache_inuse_bytes [Number of bytes in use by mcache structures.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes in use by mcache structures.
    value 4800

prometheus.sample_prometheus_metrics.go_memstats_mcache_sys_bytes [Number of bytes used for mcache structures obtained from system.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes used for mcache structures obtained from system.
    value 16384

prometheus.sample_prometheus_metrics.go_memstats_mspan_inuse_bytes [Number of bytes in use by mspan structures.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes in use by mspan structures.
    value 1382880

prometheus.sample_prometheus_metrics.go_memstats_mspan_sys_bytes [Number of bytes used for mspan structures obtained from system.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes used for mspan structures obtained from system.
    value 1441792

prometheus.sample_prometheus_metrics.go_memstats_next_gc_bytes [Number of heap bytes when next garbage collection will take place.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of heap bytes when next garbage collection will take place.
    value 172090292

prometheus.sample_prometheus_metrics.go_memstats_other_sys_bytes [Number of bytes used for other system allocations.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes used for other system allocations.
    value 861182

prometheus.sample_prometheus_metrics.go_memstats_stack_inuse_bytes [Number of bytes in use by the stack allocator.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes in use by the stack allocator.
    value 2457600

prometheus.sample_prometheus_metrics.go_memstats_stack_sys_bytes [Number of bytes obtained from system for stack allocator.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes obtained from system for stack allocator.
    value 2457600

prometheus.sample_prometheus_metrics.go_memstats_sys_bytes [Number of bytes obtained by system. Sum of all system allocations.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Number of bytes obtained by system. Sum of all system allocations.
    value 133160936

prometheus.sample_prometheus_metrics.http_request_duration_microseconds [The HTTP request latencies in microseconds.]
    Data Type: double  InDom: 144.22555 0x2400581b
    Semantics: instant  Units: microsec
Help:
The HTTP request latencies in microseconds.
    inst [0 or "0 handler:alertmanagers quantile:0.5"] value nan
    inst [1 or "1 handler:alertmanagers quantile:0.9"] value nan
    inst [2 or "2 handler:alertmanagers quantile:0.99"] value nan
    inst [3 or "3 handler:alerts quantile:0.5"] value nan
    inst [4 or "4 handler:alerts quantile:0.9"] value nan
    inst [5 or "5 handler:alerts quantile:0.99"] value nan
    inst [6 or "6 handler:config quantile:0.5"] value nan
    inst [7 or "7 handler:config quantile:0.9"] value nan
    inst [8 or "8 handler:config quantile:0.99"] value nan
    inst [9 or "9 handler:consoles quantile:0.5"] value nan
    inst [10 or "10 handler:consoles quantile:0.9"] value nan
    inst [11 or "11 handler:consoles quantile:0.99"] value nan
    inst [12 or "12 handler:drop_series quantile:0.5"] value nan
    inst [13 or "13 handler:drop_series quantile:0.9"] value nan
    inst [14 or "14 handler:drop_series quantile:0.99"] value nan
    inst [15 or "15 handler:federate quantile:0.5"] value nan
    inst [16 or "16 handler:federate quantile:0.9"] value nan
    inst [17 or "17 handler:federate quantile:0.99"] value nan
    inst [18 or "18 handler:flags quantile:0.5"] value nan
    inst [19 or "19 handler:flags quantile:0.9"] value nan
    inst [20 or "20 handler:flags quantile:0.99"] value nan
    inst [21 or "21 handler:graph quantile:0.5"] value 1645.827
    inst [22 or "22 handler:graph quantile:0.9"] value 1645.827
    inst [23 or "23 handler:graph quantile:0.99"] value 1645.827
    inst [24 or "24 handler:heap quantile:0.5"] value nan
    inst [25 or "25 handler:heap quantile:0.9"] value nan
    inst [26 or "26 handler:heap quantile:0.99"] value nan
    inst [27 or "27 handler:label_values quantile:0.5"] value 1050.868
    inst [28 or "28 handler:label_values quantile:0.9"] value 1050.868
    inst [29 or "29 handler:label_values quantile:0.99"] value 1050.868
    inst [30 or "30 handler:options quantile:0.5"] value nan
    inst [31 or "31 handler:options quantile:0.9"] value nan
    inst [32 or "32 handler:options quantile:0.99"] value nan
    inst [33 or "33 handler:prometheus quantile:0.5"] value 7195.892
    inst [34 or "34 handler:prometheus quantile:0.9"] value 11789.059
    inst [35 or "35 handler:prometheus quantile:0.99"] value 12187.249
    inst [36 or "36 handler:query quantile:0.5"] value nan
    inst [37 or "37 handler:query quantile:0.9"] value nan
    inst [38 or "38 handler:query quantile:0.99"] value nan
    inst [39 or "39 handler:query_range quantile:0.5"] value nan
    inst [40 or "40 handler:query_range quantile:0.9"] value nan
    inst [41 or "41 handler:query_range quantile:0.99"] value nan
    inst [42 or "42 handler:rules quantile:0.5"] value nan
    inst [43 or "43 handler:rules quantile:0.9"] value nan
    inst [44 or "44 handler:rules quantile:0.99"] value nan
    inst [45 or "45 handler:series quantile:0.5"] value nan
    inst [46 or "46 handler:series quantile:0.9"] value nan
    inst [47 or "47 handler:series quantile:0.99"] value nan
    inst [48 or "48 handler:static quantile:0.5"] value 642.505
    inst [49 or "49 handler:static quantile:0.9"] value 3144.552
    inst [50 or "50 handler:static quantile:0.99"] value 5593.358
    inst [51 or "51 handler:status quantile:0.5"] value nan
    inst [52 or "52 handler:status quantile:0.9"] value nan
    inst [53 or "53 handler:status quantile:0.99"] value nan
    inst [54 or "54 handler:targets quantile:0.5"] value nan
    inst [55 or "55 handler:targets quantile:0.9"] value nan
    inst [56 or "56 handler:targets quantile:0.99"] value nan
    inst [57 or "57 handler:version quantile:0.5"] value nan
    inst [58 or "58 handler:version quantile:0.9"] value nan
    inst [59 or "59 handler:version quantile:0.99"] value nan

prometheus.sample_prometheus_metrics.http_request_duration_microseconds_count [The HTTP request latencies in microseconds.]
    Data Type: double  InDom: 144.22557 0x2400581d
    Semantics: counter  Units: count
Help:
The HTTP request latencies in microseconds.
    inst [0 or "0 handler:alertmanagers"] value 0
    inst [1 or "1 handler:alerts"] value 1
    inst [2 or "2 handler:config"] value 0
    inst [3 or "3 handler:consoles"] value 0
    inst [4 or "4 handler:drop_series"] value 0
    inst [5 or "5 handler:federate"] value 0
    inst [6 or "6 handler:flags"] value 0
    inst [7 or "7 handler:graph"] value 10
    inst [8 or "8 handler:heap"] value 0
    inst [9 or "9 handler:label_values"] value 10
    inst [10 or "10 handler:options"] value 0
    inst [11 or "11 handler:prometheus"] value 15895
    inst [12 or "12 handler:query"] value 2
    inst [13 or "13 handler:query_range"] value 26
    inst [14 or "14 handler:rules"] value 0
    inst [15 or "15 handler:series"] value 0
    inst [16 or "16 handler:static"] value 68
    inst [17 or "17 handler:status"] value 1
    inst [18 or "18 handler:targets"] value 0
    inst [19 or "19 handler:version"] value 0

prometheus.sample_prometheus_metrics.http_request_duration_microseconds_sum [The HTTP request latencies in microseconds.]
    Data Type: double  InDom: 144.22556 0x2400581c
    Semantics: counter  Units: microsec
Help:
The HTTP request latencies in microseconds.
    inst [0 or "0 handler:alertmanagers"] value 0
    inst [1 or "1 handler:alerts"] value 2148.995
    inst [2 or "2 handler:config"] value 0
    inst [3 or "3 handler:consoles"] value 0
    inst [4 or "4 handler:drop_series"] value 0
    inst [5 or "5 handler:federate"] value 0
    inst [6 or "6 handler:flags"] value 0
    inst [7 or "7 handler:graph"] value 29242.753
    inst [8 or "8 handler:heap"] value 0
    inst [9 or "9 handler:label_values"] value 9023.558000000001
    inst [10 or "10 handler:options"] value 0
    inst [11 or "11 handler:prometheus"] value 153265967.7039996
    inst [12 or "12 handler:query"] value 4643.357
    inst [13 or "13 handler:query_range"] value 155670.697
    inst [14 or "14 handler:rules"] value 0
    inst [15 or "15 handler:series"] value 0
    inst [16 or "16 handler:static"] value 120706.83
    inst [17 or "17 handler:status"] value 2295.634
    inst [18 or "18 handler:targets"] value 0
    inst [19 or "19 handler:version"] value 0

prometheus.sample_prometheus_metrics.http_request_size_bytes [The HTTP request sizes in bytes.]
    Data Type: double  InDom: 144.22558 0x2400581e
    Semantics: instant  Units: byte
Help:
The HTTP request sizes in bytes.
    inst [0 or "0 handler:alertmanagers quantile:0.5"] value nan
    inst [1 or "1 handler:alertmanagers quantile:0.9"] value nan
    inst [2 or "2 handler:alertmanagers quantile:0.99"] value nan
    inst [3 or "3 handler:alerts quantile:0.5"] value nan
    inst [4 or "4 handler:alerts quantile:0.9"] value nan
    inst [5 or "5 handler:alerts quantile:0.99"] value nan
    inst [6 or "6 handler:config quantile:0.5"] value nan
    inst [7 or "7 handler:config quantile:0.9"] value nan
    inst [8 or "8 handler:config quantile:0.99"] value nan
    inst [9 or "9 handler:consoles quantile:0.5"] value nan
    inst [10 or "10 handler:consoles quantile:0.9"] value nan
    inst [11 or "11 handler:consoles quantile:0.99"] value nan
    inst [12 or "12 handler:drop_series quantile:0.5"] value nan
    inst [13 or "13 handler:drop_series quantile:0.9"] value nan
    inst [14 or "14 handler:drop_series quantile:0.99"] value nan
    inst [15 or "15 handler:federate quantile:0.5"] value nan
    inst [16 or "16 handler:federate quantile:0.9"] value nan
    inst [17 or "17 handler:federate quantile:0.99"] value nan
    inst [18 or "18 handler:flags quantile:0.5"] value nan
    inst [19 or "19 handler:flags quantile:0.9"] value nan
    inst [20 or "20 handler:flags quantile:0.99"] value nan
    inst [21 or "21 handler:graph quantile:0.5"] value 403
    inst [22 or "22 handler:graph quantile:0.9"] value 403
    inst [23 or "23 handler:graph quantile:0.99"] value 403
    inst [24 or "24 handler:heap quantile:0.5"] value nan
    inst [25 or "25 handler:heap quantile:0.9"] value nan
    inst [26 or "26 handler:heap quantile:0.99"] value nan
    inst [27 or "27 handler:label_values quantile:0.5"] value 452
    inst [28 or "28 handler:label_values quantile:0.9"] value 452
    inst [29 or "29 handler:label_values quantile:0.99"] value 452
    inst [30 or "30 handler:options quantile:0.5"] value nan
    inst [31 or "31 handler:options quantile:0.9"] value nan
    inst [32 or "32 handler:options quantile:0.99"] value nan
    inst [33 or "33 handler:prometheus quantile:0.5"] value 238
    inst [34 or "34 handler:prometheus quantile:0.9"] value 238
    inst [35 or "35 handler:prometheus quantile:0.99"] value 238
    inst [36 or "36 handler:query quantile:0.5"] value nan
    inst [37 or "37 handler:query quantile:0.9"] value nan
    inst [38 or "38 handler:query quantile:0.99"] value nan
    inst [39 or "39 handler:query_range quantile:0.5"] value nan
    inst [40 or "40 handler:query_range quantile:0.9"] value nan
    inst [41 or "41 handler:query_range quantile:0.99"] value nan
    inst [42 or "42 handler:rules quantile:0.5"] value nan
    inst [43 or "43 handler:rules quantile:0.9"] value nan
    inst [44 or "44 handler:rules quantile:0.99"] value nan
    inst [45 or "45 handler:series quantile:0.5"] value nan
    inst [46 or "46 handler:series quantile:0.9"] value nan
    inst [47 or "47 handler:series quantile:0.99"] value nan
    inst [48 or "48 handler:static quantile:0.5"] value 373
    inst [49 or "49 handler:static quantile:0.9"] value 401
    inst [50 or "50 handler:static quantile:0.99"] value 415
    inst [51 or "51 handler:status quantile:0.5"] value nan
    inst [52 or "52 handler:status quantile:0.9"] value nan
    inst [53 or "53 handler:status quantile:0.99"] value nan
    inst [54 or "54 handler:targets quantile:0.5"] value nan
    inst [55 or "55 handler:targets quantile:0.9"] value nan
    inst [56 or "56 handler:targets quantile:0.99"] value nan
    inst [57 or "57 handler:version quantile:0.5"] value nan
    inst [58 or "58 handler:version quantile:0.9"] value nan
    inst [59 or "59 handler:version quantile:0.99"] value nan

prometheus.sample_prometheus_metrics.http_request_size_bytes_count [The HTTP request sizes in bytes.]
    Data Type: double  InDom: 144.22560 0x24005820
    Semantics: counter  Units: count
Help:
The HTTP request sizes in bytes.
    inst [0 or "0 handler:alertmanagers"] value 0
    inst [1 or "1 handler:alerts"] value 1
    inst [2 or "2 handler:config"] value 0
    inst [3 or "3 handler:consoles"] value 0
    inst [4 or "4 handler:drop_series"] value 0
    inst [5 or "5 handler:federate"] value 0
    inst [6 or "6 handler:flags"] value 0
    inst [7 or "7 handler:graph"] value 10
    inst [8 or "8 handler:heap"] value 0
    inst [9 or "9 handler:label_values"] value 10
    inst [10 or "10 handler:options"] value 0
    inst [11 or "11 handler:prometheus"] value 15895
    inst [12 or "12 handler:query"] value 2
    inst [13 or "13 handler:query_range"] value 26
    inst [14 or "14 handler:rules"] value 0
    inst [15 or "15 handler:series"] value 0
    inst [16 or "16 handler:static"] value 68
    inst [17 or "17 handler:status"] value 1
    inst [18 or "18 handler:targets"] value 0
    inst [19 or "19 handler:version"] value 0

prometheus.sample_prometheus_metrics.http_request_size_bytes_sum [The HTTP request sizes in bytes.]
    Data Type: double  InDom: 144.22559 0x2400581f
    Semantics: counter  Units: byte
Help:
The HTTP request sizes in bytes.
    inst [0 or "0 handler:alertmanagers"] value 0
    inst [1 or "1 handler:alerts"] value 536
    inst [2 or "2 handler:config"] value 0
    inst [3 or "3 handler:consoles"] value 0
    inst [4 or "4 handler:drop_series"] value 0
    inst [5 or "5 handler:federate"] value 0
    inst [6 or "6 handler:flags"] value 0
    inst [7 or "7 handler:graph"] value 2996
    inst [8 or "8 handler:heap"] value 0
    inst [9 or "9 handler:label_values"] value 4948
    inst [10 or "10 handler:options"] value 0
    inst [11 or "11 handler:prometheus"] value 3521886
    inst [12 or "12 handler:query"] value 1092
    inst [13 or "13 handler:query_range"] value 15791
    inst [14 or "14 handler:rules"] value 0
    inst [15 or "15 handler:series"] value 0
    inst [16 or "16 handler:static"] value 26389
    inst [17 or "17 handler:status"] value 536
    inst [18 or "18 handler:targets"] value 0
    inst [19 or "19 handler:version"] value 0

prometheus.sample_prometheus_metrics.http_requests_total [Total number of HTTP requests made.]
    Data Type: double  InDom: 144.22561 0x24005821
    Semantics: counter  Units: none
Help:
Total number of HTTP requests made.
    inst [0 or "0 code:200 handler:alerts method:get"] value 1
    inst [1 or "1 code:200 handler:graph method:get"] value 10
    inst [2 or "2 code:200 handler:label_values method:get"] value 10
    inst [3 or "3 code:200 handler:prometheus method:get"] value 15895
    inst [4 or "4 code:200 handler:query method:get"] value 2
    inst [5 or "5 code:200 handler:query_range method:get"] value 26
    inst [6 or "6 code:200 handler:static method:get"] value 68
    inst [7 or "7 code:200 handler:status method:get"] value 1

prometheus.sample_prometheus_metrics.http_response_size_bytes [The HTTP response sizes in bytes.]
    Data Type: double  InDom: 144.22562 0x24005822
    Semantics: instant  Units: byte
Help:
The HTTP response sizes in bytes.
    inst [0 or "0 handler:alertmanagers quantile:0.5"] value nan
    inst [1 or "1 handler:alertmanagers quantile:0.9"] value nan
    inst [2 or "2 handler:alertmanagers quantile:0.99"] value nan
    inst [3 or "3 handler:alerts quantile:0.5"] value nan
    inst [4 or "4 handler:alerts quantile:0.9"] value nan
    inst [5 or "5 handler:alerts quantile:0.99"] value nan
    inst [6 or "6 handler:config quantile:0.5"] value nan
    inst [7 or "7 handler:config quantile:0.9"] value nan
    inst [8 or "8 handler:config quantile:0.99"] value nan
    inst [9 or "9 handler:consoles quantile:0.5"] value nan
    inst [10 or "10 handler:consoles quantile:0.9"] value nan
    inst [11 or "11 handler:consoles quantile:0.99"] value nan
    inst [12 or "12 handler:drop_series quantile:0.5"] value nan
    inst [13 or "13 handler:drop_series quantile:0.9"] value nan
    inst [14 or "14 handler:drop_series quantile:0.99"] value nan
    inst [15 or "15 handler:federate quantile:0.5"] value nan
    inst [16 or "16 handler:federate quantile:0.9"] value nan
    inst [17 or "17 handler:federate quantile:0.99"] value nan
    inst [18 or "18 handler:flags quantile:0.5"] value nan
    inst [19 or "19 handler:flags quantile:0.9"] value nan
    inst [20 or "20 handler:flags quantile:0.99"] value nan
    inst [21 or "21 handler:graph quantile:0.5"] value 3681
    inst [22 or "22 handler:graph quantile:0.9"] value 3681
    inst [23 or "23 handler:graph quantile:0.99"] value 3681
    inst [24 or "24 handler:heap quantile:0.5"] value nan
    inst [25 or "25 handler:heap quantile:0.9"] value nan
    inst [26 or "26 handler:heap quantile:0.99"] value nan
    inst [27 or "27 handler:label_values quantile:0.5"] value 1054
    inst [28 or "28 handler:label_values quantile:0.9"] value 1054
    inst [29 or "29 handler:label_values quantile:0.99"] value 1054
    inst [30 or "30 handler:options quantile:0.5"] value nan
    inst [31 or "31 handler:options quantile:0.9"] value nan
    inst [32 or "32 handler:options quantile:0.99"] value nan
    inst [33 or "33 handler:prometheus quantile:0.5"] value 5127
    inst [34 or "34 handler:prometheus quantile:0.9"] value 5134
    inst [35 or "35 handler:prometheus quantile:0.99"] value 5142
    inst [36 or "36 handler:query quantile:0.5"] value nan
    inst [37 or "37 handler:query quantile:0.9"] value nan
    inst [38 or "38 handler:query quantile:0.99"] value nan
    inst [39 or "39 handler:query_range quantile:0.5"] value nan
    inst [40 or "40 handler:query_range quantile:0.9"] value nan
    inst [41 or "41 handler:query_range quantile:0.99"] value nan
    inst [42 or "42 handler:rules quantile:0.5"] value nan
    inst [43 or "43 handler:rules quantile:0.9"] value nan
    inst [44 or "44 handler:rules quantile:0.99"] value nan
    inst [45 or "45 handler:series quantile:0.5"] value nan
    inst [46 or "46 handler:series quantile:0.9"] value nan
    inst [47 or "47 handler:series quantile:0.99"] value nan
    inst [48 or "48 handler:static quantile:0.5"] value 9528
    inst [49 or "49 handler:static quantile:0.9"] value 76322
    inst [50 or "50 handler:static quantile:0.99"] value 113498
    inst [51 or "51 handler:status quantile:0.5"] value nan
    inst [52 or "52 handler:status quantile:0.9"] value nan
    inst [53 or "53 handler:status quantile:0.99"] value nan
    inst [54 or "54 handler:targets quantile:0.5"] value nan
    inst [55 or "55 handler:targets quantile:0.9"] value nan
    inst [56 or "56 handler:targets quantile:0.99"] value nan
    inst [57 or "57 handler:version quantile:0.5"] value nan
    inst [58 or "58 handler:version quantile:0.9"] value nan
    inst [59 or "59 handler:version quantile:0.99"] value nan

prometheus.sample_prometheus_metrics.http_response_size_bytes_count [The HTTP response sizes in bytes.]
    Data Type: double  InDom: 144.22564 0x24005824
    Semantics: counter  Units: count
Help:
The HTTP response sizes in bytes.
    inst [0 or "0 handler:alertmanagers"] value 0
    inst [1 or "1 handler:alerts"] value 1
    inst [2 or "2 handler:config"] value 0
    inst [3 or "3 handler:consoles"] value 0
    inst [4 or "4 handler:drop_series"] value 0
    inst [5 or "5 handler:federate"] value 0
    inst [6 or "6 handler:flags"] value 0
    inst [7 or "7 handler:graph"] value 10
    inst [8 or "8 handler:heap"] value 0
    inst [9 or "9 handler:label_values"] value 10
    inst [10 or "10 handler:options"] value 0
    inst [11 or "11 handler:prometheus"] value 15895
    inst [12 or "12 handler:query"] value 2
    inst [13 or "13 handler:query_range"] value 26
    inst [14 or "14 handler:rules"] value 0
    inst [15 or "15 handler:series"] value 0
    inst [16 or "16 handler:static"] value 68
    inst [17 or "17 handler:status"] value 1
    inst [18 or "18 handler:targets"] value 0
    inst [19 or "19 handler:version"] value 0

prometheus.sample_prometheus_metrics.http_response_size_bytes_sum [The HTTP response sizes in bytes.]
    Data Type: double  InDom: 144.22563 0x24005823
    Semantics: counter  Units: byte
Help:
The HTTP response sizes in bytes.
    inst [0 or "0 handler:alertmanagers"] value 0
    inst [1 or "1 handler:alerts"] value 2705
    inst [2 or "2 handler:config"] value 0
    inst [3 or "3 handler:consoles"] value 0
    inst [4 or "4 handler:drop_series"] value 0
    inst [5 or "5 handler:federate"] value 0
    inst [6 or "6 handler:flags"] value 0
    inst [7 or "7 handler:graph"] value 36810
    inst [8 or "8 handler:heap"] value 0
    inst [9 or "9 handler:label_values"] value 10540
    inst [10 or "10 handler:options"] value 0
    inst [11 or "11 handler:prometheus"] value 84091113
    inst [12 or "12 handler:query"] value 439
    inst [13 or "13 handler:query_range"] value 13247
    inst [14 or "14 handler:rules"] value 0
    inst [15 or "15 handler:series"] value 0
    inst [16 or "16 handler:static"] value 2104402
    inst [17 or "17 handler:status"] value 3769
    inst [18 or "18 handler:targets"] value 0
    inst [19 or "19 handler:version"] value 0

prometheus.sample_prometheus_metrics.process_cpu_seconds_total [Total user and system CPU time spent in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
Total user and system CPU time spent in seconds.
    value 879.8

prometheus.sample_prometheus_metrics.process_max_fds [Maximum number of open file descriptors.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Maximum number of open file descriptors.
    value 1048576

prometheus.sample_prometheus_metrics.process_open_fds [Number of open file descriptors.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Number of open file descriptors.
    value 31

prometheus.sample_prometheus_metrics.process_resident_memory_bytes [Resident memory size in bytes.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Resident memory size in bytes.
    value 113696768

prometheus.sample_prometheus_metrics.process_start_time_seconds [Start time of the process since unix epoch in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: sec
Help:
Start time of the process since unix epoch in seconds.
    value 1490262545.99

prometheus.sample_prometheus_metrics.process_virtual_memory_bytes [Virtual memory size in bytes.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
Virtual memory size in bytes.
    value 170373120

prometheus.sample_prometheus_metrics.prometheus_build_info [A metric with a constant '1' value labeled by version, revision, branch, and goversion from which prometheus was built.]
    Data Type: double  InDom: 144.22571 0x2400582b
    Semantics: instant  Units: none
Help:
A metric with a constant '1' value labeled by version, revision, branch, and goversion from which prometheus was built.
    inst [0 or "0 branch:master goversion:go1.7.5 revision:bd1182d29f462c39544f94cc822830e1c64cf55b version:1.5.2"] value 1

prometheus.sample_prometheus_metrics.prometheus_config_last_reload_success_timestamp_seconds [Timestamp of the last successful configuration reload.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: sec
Help:
Timestamp of the last successful configuration reload.
    value 1490262519

prometheus.sample_prometheus_metrics.prometheus_config_last_reload_successful [Whether the last configuration reload attempt was successful.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Whether the last configuration reload attempt was successful.
    value 1

prometheus.sample_prometheus_metrics.prometheus_engine_queries [The current number of queries being executed or waiting.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The current number of queries being executed or waiting.
    value 0

prometheus.sample_prometheus_metrics.prometheus_engine_queries_concurrent_max [The max number of concurrent queries.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The max number of concurrent queries.
    value 20

prometheus.sample_prometheus_metrics.prometheus_evaluator_duration_seconds [The duration of rule group evaluations.]
    Data Type: double  InDom: 144.22576 0x24005830
    Semantics: instant  Units: sec
Help:
The duration of rule group evaluations.
    inst [0 or "0 quantile:0.01"] value 2.131e-06
    inst [1 or "1 quantile:0.05"] value 2.131e-06
    inst [2 or "2 quantile:0.5"] value 5.665e-06
    inst [3 or "3 quantile:0.9"] value 9.503e-06
    inst [4 or "4 quantile:0.99"] value 1.6817e-05

prometheus.sample_prometheus_metrics.prometheus_evaluator_duration_seconds_count [The duration of rule group evaluations.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
The duration of rule group evaluations.
    value 14012

prometheus.sample_prometheus_metrics.prometheus_evaluator_duration_seconds_sum [The duration of rule group evaluations.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
The duration of rule group evaluations.
    value 0.1048923190000002

prometheus.sample_prometheus_metrics.prometheus_evaluator_iterations_skipped_total [The total number of rule group evaluations skipped due to throttled metric storage.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The total number of rule group evaluations skipped due to throttled metric storage.
    value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_checkpoint_duration_seconds [The duration in seconds taken for checkpointing open chunks and chunks yet to be persisted]
    Data Type: double  InDom: 144.22580 0x24005834
    Semantics: instant  Units: sec
Help:
The duration in seconds taken for checkpointing open chunks and chunks yet to be persisted
    inst [0 or "0 quantile:0.5"] value 0.12395186
    inst [1 or "1 quantile:0.9"] value 0.12395186
    inst [2 or "2 quantile:0.99"] value 0.12395186

prometheus.sample_prometheus_metrics.prometheus_local_storage_checkpoint_duration_seconds_count [The duration in seconds taken for checkpointing open chunks and chunks yet to be persisted]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
The duration in seconds taken for checkpointing open chunks and chunks yet to be persisted
    value 700

prometheus.sample_prometheus_metrics.prometheus_local_storage_checkpoint_duration_seconds_sum [The duration in seconds taken for checkpointing open chunks and chunks yet to be persisted]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
The duration in seconds taken for checkpointing open chunks and chunks yet to be persisted
    value 93.00435987199999

prometheus.sample_prometheus_metrics.prometheus_local_storage_checkpoint_last_duration_seconds [The duration in seconds it took to last checkpoint open chunks and chunks yet to be persisted.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: sec
Help:
The duration in seconds it took to last checkpoint open chunks and chunks yet to be persisted.
    value 0.12395186

prometheus.sample_prometheus_metrics.prometheus_local_storage_checkpoint_last_size_bytes [The size of the last checkpoint of open chunks and chunks yet to be persisted]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: byte
Help:
The size of the last checkpoint of open chunks and chunks yet to be persisted
    value 1584792

prometheus.sample_prometheus_metrics.prometheus_local_storage_checkpoint_series_chunks_written [The number of chunk written per series while checkpointing open chunks and chunks yet to be persisted.]
    Data Type: double  InDom: 144.22585 0x24005839
    Semantics: instant  Units: none
Help:
The number of chunk written per series while checkpointing open chunks and chunks yet to be persisted.
    inst [0 or "0 quantile:0.5"] value 3
    inst [1 or "1 quantile:0.9"] value 7
    inst [2 or "2 quantile:0.99"] value 8

prometheus.sample_prometheus_metrics.prometheus_local_storage_checkpoint_series_chunks_written_count [The number of chunk written per series while checkpointing open chunks and chunks yet to be persisted.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
The number of chunk written per series while checkpointing open chunks and chunks yet to be persisted.
    value 828219

prometheus.sample_prometheus_metrics.prometheus_local_storage_checkpoint_series_chunks_written_sum [The number of chunk written per series while checkpointing open chunks and chunks yet to be persisted.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The number of chunk written per series while checkpointing open chunks and chunks yet to be persisted.
    value 2479263

prometheus.sample_prometheus_metrics.prometheus_local_storage_checkpointing [1 if the storage is checkpointing, 0 otherwise.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1 if the storage is checkpointing, 0 otherwise.
    value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_chunk_ops_total [The total number of chunk operations by their type.]
    Data Type: double  InDom: 144.22589 0x2400583d
    Semantics: counter  Units: none
Help:
The total number of chunk operations by their type.
    inst [0 or "0 type:create"] value 46595
    inst [1 or "1 type:persist"] value 45157
    inst [2 or "2 type:pin"] value 90
    inst [3 or "3 type:transcode"] value 33963
    inst [4 or "4 type:unpin"] value 90

prometheus.sample_prometheus_metrics.prometheus_local_storage_chunks_to_persist [The current number of chunks waiting for persistence.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The current number of chunks waiting for persistence.
    value 911

prometheus.sample_prometheus_metrics.prometheus_local_storage_fingerprint_mappings_total [The total number of fingerprints being mapped to avoid collisions.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The total number of fingerprints being mapped to avoid collisions.
    value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_inconsistencies_total [A counter incremented each time an inconsistency in the local storage is detected. If this is greater zero, restart the server as soon as possible.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
A counter incremented each time an inconsistency in the local storage is detected. If this is greater zero, restart the server as soon as possible.
    value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_indexing_batch_duration_seconds [Quantiles for batch indexing duration in seconds.]
    Data Type: double  InDom: 144.22593 0x24005841
    Semantics: instant  Units: sec
Help:
Quantiles for batch indexing duration in seconds.
    inst [0 or "0 quantile:0.5"] value nan
    inst [1 or "1 quantile:0.9"] value nan
    inst [2 or "2 quantile:0.99"] value nan

prometheus.sample_prometheus_metrics.prometheus_local_storage_indexing_batch_duration_seconds_count [Quantiles for batch indexing duration in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
Quantiles for batch indexing duration in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_indexing_batch_duration_seconds_sum [Quantiles for batch indexing duration in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
Quantiles for batch indexing duration in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_indexing_batch_sizes [Quantiles for indexing batch sizes (number of metrics per batch).]
    Data Type: double  InDom: 144.22596 0x24005844
    Semantics: instant  Units: none
Help:
Quantiles for indexing batch sizes (number of metrics per batch).
    inst [0 or "0 quantile:0.5"] value nan
    inst [1 or "1 quantile:0.9"] value nan
    inst [2 or "2 quantile:0.99"] value nan

prometheus.sample_prometheus_metrics.prometheus_local_storage_indexing_batch_sizes_count [Quantiles for indexing batch sizes (number of metrics per batch).]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
Quantiles for indexing batch sizes (number of metrics per batch).
    value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_indexing_batch_sizes_sum [Quantiles for indexing batch sizes (number of metrics per batch).]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Quantiles for indexing batch sizes (number of metrics per batch).
    value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_indexing_queue_capacity [The capacity of the indexing queue.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The capacity of the indexing queue.
    value 262144

prometheus.sample_prometheus_metrics.prometheus_local_storage_indexing_queue_length [The number of metrics waiting to be indexed.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The number of metrics waiting to be indexed.
    value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_ingested_samples_total [The total number of samples ingested.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The total number of samples ingested.
    value 7177706

prometheus.sample_prometheus_metrics.prometheus_local_storage_maintain_series_duration_seconds [The duration in seconds it took to perform maintenance on a series.]
    Data Type: double  InDom: 144.22602 0x2400584a
    Semantics: instant  Units: sec
Help:
The duration in seconds it took to perform maintenance on a series.
    inst [0 or "0 location:archived quantile:0.5"] value nan
    inst [1 or "1 location:archived quantile:0.9"] value nan
    inst [2 or "2 location:archived quantile:0.99"] value nan
    inst [3 or "3 location:memory quantile:0.5"] value 0.114777617
    inst [4 or "4 location:memory quantile:0.9"] value 0.147355813
    inst [5 or "5 location:memory quantile:0.99"] value 0.371275481

prometheus.sample_prometheus_metrics.prometheus_local_storage_maintain_series_duration_seconds_count [The duration in seconds it took to perform maintenance on a series.]
    Data Type: double  InDom: 144.22604 0x2400584c
    Semantics: counter  Units: count
Help:
The duration in seconds it took to perform maintenance on a series.
    inst [0 or "0 location:archived"] value 0
    inst [1 or "1 location:memory"] value 20978

prometheus.sample_prometheus_metrics.prometheus_local_storage_maintain_series_duration_seconds_sum [The duration in seconds it took to perform maintenance on a series.]
    Data Type: double  InDom: 144.22603 0x2400584b
    Semantics: counter  Units: sec
Help:
The duration in seconds it took to perform maintenance on a series.
    inst [0 or "0 location:archived"] value 0
    inst [1 or "1 location:memory"] value 1938.185197133004

prometheus.sample_prometheus_metrics.prometheus_local_storage_max_chunks_to_persist [The maximum number of chunks that can be waiting for persistence before sample ingestion will stop.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The maximum number of chunks that can be waiting for persistence before sample ingestion will stop.
    value 524288

prometheus.sample_prometheus_metrics.prometheus_local_storage_max_memory_chunks [The configured maximum number of chunks that can be held in memory]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The configured maximum number of chunks that can be held in memory
    value 1048576

prometheus.sample_prometheus_metrics.prometheus_local_storage_memory_chunkdescs [The current number of chunk descriptors in memory.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The current number of chunk descriptors in memory.
    value 46595

prometheus.sample_prometheus_metrics.prometheus_local_storage_memory_chunks [The current number of chunks in memory, excluding cloned chunks (i.e. chunks without a descriptor).]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The current number of chunks in memory, excluding cloned chunks (i.e. chunks without a descriptor).
    value 46595

prometheus.sample_prometheus_metrics.prometheus_local_storage_memory_dirty_series [The current number of series that would require a disk seek during crash recovery.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The current number of series that would require a disk seek during crash recovery.
    value 10

prometheus.sample_prometheus_metrics.prometheus_local_storage_memory_series [The current number of series in memory.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The current number of series in memory.
    value 527

prometheus.sample_prometheus_metrics.prometheus_local_storage_non_existent_series_matches_total [How often a non-existent series was referred to during label matching or chunk preloading. This is an indication of outdated label indexes.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
How often a non-existent series was referred to during label matching or chunk preloading. This is an indication of outdated label indexes.
    value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_out_of_order_samples_total [The total number of samples that were discarded because their timestamps were at or before the last received sample for a series.]
    Data Type: double  InDom: 144.22612 0x24005854
    Semantics: counter  Units: none
Help:
The total number of samples that were discarded because their timestamps were at or before the last received sample for a series.
    inst [0 or "0 reason:multiple_values_for_timestamp"] value 0
    inst [1 or "1 reason:timestamp_out_of_order"] value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_persist_errors_total [The total number of errors while persisting chunks.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The total number of errors while persisting chunks.
    value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_persistence_urgency_score [A score of urgency to persist chunks, 0 is least urgent, 1 most.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
A score of urgency to persist chunks, 0 is least urgent, 1 most.
    value 0.001749038696289062

prometheus.sample_prometheus_metrics.prometheus_local_storage_queued_chunks_to_persist_total [The total number of chunks queued for persistence.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The total number of chunks queued for persistence.
    value 45260

prometheus.sample_prometheus_metrics.prometheus_local_storage_rushed_mode [1 if the storage is in rushed mode, 0 otherwise. In rushed mode, the system behaves as if the persistence_urgency_score is 1.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
1 if the storage is in rushed mode, 0 otherwise. In rushed mode, the system behaves as if the persistence_urgency_score is 1.
    value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_series_chunks_persisted_bucket [The number of chunks persisted per series.]
    Data Type: double  InDom: 144.22617 0x24005859
    Semantics: counter  Units: count
Help:
The number of chunks persisted per series.
    inst [0 or "0 le:1"] value 5945
    inst [1 or "1 le:2"] value 10862
    inst [2 or "2 le:4"] value 15813
    inst [3 or "3 le:8"] value 18135
    inst [4 or "4 le:16"] value 18135
    inst [5 or "5 le:32"] value 18135
    inst [6 or "6 le:64"] value 18135
    inst [7 or "7 le:128"] value 18135
    inst [8 or "8 le:+Inf"] value 18135

prometheus.sample_prometheus_metrics.prometheus_local_storage_series_chunks_persisted_count [The number of chunks persisted per series.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
The number of chunks persisted per series.
    value 18135

prometheus.sample_prometheus_metrics.prometheus_local_storage_series_chunks_persisted_sum [The number of chunks persisted per series.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The number of chunks persisted per series.
    value 45157

prometheus.sample_prometheus_metrics.prometheus_local_storage_series_ops_total [The total number of series operations by their type.]
    Data Type: double  InDom: 144.22620 0x2400585c
    Semantics: counter  Units: none
Help:
The total number of series operations by their type.
    inst [0 or "0 type:archive"] value 0
    inst [1 or "1 type:create"] value 0
    inst [2 or "2 type:maintenance_in_archive"] value 0
    inst [3 or "3 type:maintenance_in_memory"] value 20978
    inst [4 or "4 type:purge_from_archive"] value 0
    inst [5 or "5 type:purge_from_memory"] value 0
    inst [6 or "6 type:purge_on_request"] value 0
    inst [7 or "7 type:quarantine_completed"] value 0
    inst [8 or "8 type:quarantine_dropped"] value 0
    inst [9 or "9 type:quarantine_failed"] value 0
    inst [10 or "10 type:unarchive"] value 0

prometheus.sample_prometheus_metrics.prometheus_local_storage_started_dirty [Whether the local storage was found to be dirty (and crash recovery occurred) during Prometheus startup.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
Whether the local storage was found to be dirty (and crash recovery occurred) during Prometheus startup.
    value 0

prometheus.sample_prometheus_metrics.prometheus_notifications_dropped_total [Total number of alerts dropped due to errors when sending to Alertmanager.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Total number of alerts dropped due to errors when sending to Alertmanager.
    value 0

prometheus.sample_prometheus_metrics.prometheus_notifications_queue_capacity [The capacity of the alert notifications queue.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The capacity of the alert notifications queue.
    value 10000

prometheus.sample_prometheus_metrics.prometheus_notifications_queue_length [The number of alert notifications in the queue.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The number of alert notifications in the queue.
    value 0

prometheus.sample_prometheus_metrics.prometheus_rule_evaluation_failures_total [The total number of rule evaluation failures.]
    Data Type: double  InDom: 144.22625 0x24005861
    Semantics: counter  Units: none
Help:
The total number of rule evaluation failures.
    inst [0 or "0 rule_type:alerting"] value 0
    inst [1 or "1 rule_type:recording"] value 0

prometheus.sample_prometheus_metrics.prometheus_sd_azure_refresh_duration_seconds [The duration of a Azure-SD refresh in seconds.]
    Data Type: double  InDom: 144.22626 0x24005862
    Semantics: instant  Units: sec
Help:
The duration of a Azure-SD refresh in seconds.
    inst [0 or "0 quantile:0.5"] value nan
    inst [1 or "1 quantile:0.9"] value nan
    inst [2 or "2 quantile:0.99"] value nan

prometheus.sample_prometheus_metrics.prometheus_sd_azure_refresh_duration_seconds_count [The duration of a Azure-SD refresh in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
The duration of a Azure-SD refresh in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_azure_refresh_duration_seconds_sum [The duration of a Azure-SD refresh in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
The duration of a Azure-SD refresh in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_azure_refresh_failures_total [Number of Azure-SD refresh failures.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Number of Azure-SD refresh failures.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_consul_rpc_duration_seconds [The duration of a Consul RPC call in seconds.]
    Data Type: double  InDom: 144.22630 0x24005866
    Semantics: instant  Units: sec
Help:
The duration of a Consul RPC call in seconds.
    inst [0 or "0 call:service endpoint:catalog quantile:0.5"] value nan
    inst [1 or "1 call:service endpoint:catalog quantile:0.9"] value nan
    inst [2 or "2 call:service endpoint:catalog quantile:0.99"] value nan
    inst [3 or "3 call:services endpoint:catalog quantile:0.5"] value nan
    inst [4 or "4 call:services endpoint:catalog quantile:0.9"] value nan
    inst [5 or "5 call:services endpoint:catalog quantile:0.99"] value nan

prometheus.sample_prometheus_metrics.prometheus_sd_consul_rpc_duration_seconds_count [The duration of a Consul RPC call in seconds.]
    Data Type: double  InDom: 144.22632 0x24005868
    Semantics: counter  Units: count
Help:
The duration of a Consul RPC call in seconds.
    inst [0 or "0 call:service endpoint:catalog"] value 0
    inst [1 or "1 call:services endpoint:catalog"] value 0

prometheus.sample_prometheus_metrics.prometheus_sd_consul_rpc_duration_seconds_sum [The duration of a Consul RPC call in seconds.]
    Data Type: double  InDom: 144.22631 0x24005867
    Semantics: counter  Units: sec
Help:
The duration of a Consul RPC call in seconds.
    inst [0 or "0 call:service endpoint:catalog"] value 0
    inst [1 or "1 call:services endpoint:catalog"] value 0

prometheus.sample_prometheus_metrics.prometheus_sd_consul_rpc_failures_total [The number of Consul RPC call failures.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The number of Consul RPC call failures.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_dns_lookup_failures_total [The number of DNS-SD lookup failures.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The number of DNS-SD lookup failures.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_dns_lookups_total [The number of DNS-SD lookups.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The number of DNS-SD lookups.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_ec2_refresh_duration_seconds [The duration of a EC2-SD refresh in seconds.]
    Data Type: double  InDom: 144.22636 0x2400586c
    Semantics: instant  Units: sec
Help:
The duration of a EC2-SD refresh in seconds.
    inst [0 or "0 quantile:0.5"] value nan
    inst [1 or "1 quantile:0.9"] value nan
    inst [2 or "2 quantile:0.99"] value nan

prometheus.sample_prometheus_metrics.prometheus_sd_ec2_refresh_duration_seconds_count [The duration of a EC2-SD refresh in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
The duration of a EC2-SD refresh in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_ec2_refresh_duration_seconds_sum [The duration of a EC2-SD refresh in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
The duration of a EC2-SD refresh in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_ec2_refresh_failures_total [The number of EC2-SD scrape failures.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The number of EC2-SD scrape failures.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_file_read_errors_total [The number of File-SD read errors.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The number of File-SD read errors.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_file_scan_duration_seconds [The duration of the File-SD scan in seconds.]
    Data Type: double  InDom: 144.22641 0x24005871
    Semantics: instant  Units: sec
Help:
The duration of the File-SD scan in seconds.
    inst [0 or "0 quantile:0.5"] value nan
    inst [1 or "1 quantile:0.9"] value nan
    inst [2 or "2 quantile:0.99"] value nan

prometheus.sample_prometheus_metrics.prometheus_sd_file_scan_duration_seconds_count [The duration of the File-SD scan in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
The duration of the File-SD scan in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_file_scan_duration_seconds_sum [The duration of the File-SD scan in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
The duration of the File-SD scan in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_gce_refresh_duration [The duration of a GCE-SD refresh in seconds.]
    Data Type: double  InDom: 144.22644 0x24005874
    Semantics: instant  Units: none
Help:
The duration of a GCE-SD refresh in seconds.
    inst [0 or "0 quantile:0.5"] value nan
    inst [1 or "1 quantile:0.9"] value nan
    inst [2 or "2 quantile:0.99"] value nan

prometheus.sample_prometheus_metrics.prometheus_sd_gce_refresh_duration_count [The duration of a GCE-SD refresh in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
The duration of a GCE-SD refresh in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_gce_refresh_duration_sum [The duration of a GCE-SD refresh in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The duration of a GCE-SD refresh in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_gce_refresh_failures_total [The number of GCE-SD refresh failures.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The number of GCE-SD refresh failures.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_kubernetes_events_total [The number of Kubernetes events handled.]
    Data Type: double  InDom: 144.22648 0x24005878
    Semantics: counter  Units: none
Help:
The number of Kubernetes events handled.
    inst [0 or "0 event:add role:endpoints"] value 0
    inst [1 or "1 event:add role:node"] value 0
    inst [2 or "2 event:add role:pod"] value 0
    inst [3 or "3 event:add role:service"] value 0
    inst [4 or "4 event:delete role:endpoints"] value 0
    inst [5 or "5 event:delete role:node"] value 0
    inst [6 or "6 event:delete role:pod"] value 0
    inst [7 or "7 event:delete role:service"] value 0
    inst [8 or "8 event:update role:endpoints"] value 0
    inst [9 or "9 event:update role:node"] value 0
    inst [10 or "10 event:update role:pod"] value 0
    inst [11 or "11 event:update role:service"] value 0

prometheus.sample_prometheus_metrics.prometheus_sd_marathon_refresh_duration_seconds [The duration of a Marathon-SD refresh in seconds.]
    Data Type: double  InDom: 144.22649 0x24005879
    Semantics: instant  Units: sec
Help:
The duration of a Marathon-SD refresh in seconds.
    inst [0 or "0 quantile:0.5"] value nan
    inst [1 or "1 quantile:0.9"] value nan
    inst [2 or "2 quantile:0.99"] value nan

prometheus.sample_prometheus_metrics.prometheus_sd_marathon_refresh_duration_seconds_count [The duration of a Marathon-SD refresh in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
The duration of a Marathon-SD refresh in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_marathon_refresh_duration_seconds_sum [The duration of a Marathon-SD refresh in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
The duration of a Marathon-SD refresh in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_marathon_refresh_failures_total [The number of Marathon-SD refresh failures.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The number of Marathon-SD refresh failures.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_triton_refresh_duration_seconds [The duration of a Triton-SD refresh in seconds.]
    Data Type: double  InDom: 144.22653 0x2400587d
    Semantics: instant  Units: sec
Help:
The duration of a Triton-SD refresh in seconds.
    inst [0 or "0 quantile:0.5"] value nan
    inst [1 or "1 quantile:0.9"] value nan
    inst [2 or "2 quantile:0.99"] value nan

prometheus.sample_prometheus_metrics.prometheus_sd_triton_refresh_duration_seconds_count [The duration of a Triton-SD refresh in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: count
Help:
The duration of a Triton-SD refresh in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_triton_refresh_duration_seconds_sum [The duration of a Triton-SD refresh in seconds.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: sec
Help:
The duration of a Triton-SD refresh in seconds.
    value 0

prometheus.sample_prometheus_metrics.prometheus_sd_triton_refresh_failures_total [The number of Triton-SD scrape failures.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The number of Triton-SD scrape failures.
    value 0

prometheus.sample_prometheus_metrics.prometheus_target_interval_length_seconds [Actual intervals between scrapes.]
    Data Type: double  InDom: 144.22657 0x24005881
    Semantics: instant  Units: sec
Help:
Actual intervals between scrapes.
    inst [0 or "0 interval:15s quantile:0.01"] value 14.999687931
    inst [1 or "1 interval:15s quantile:0.05"] value 14.999687931
    inst [2 or "2 interval:15s quantile:0.5"] value 15.000052329
    inst [3 or "3 interval:15s quantile:0.9"] value 15.000165118
    inst [4 or "4 interval:15s quantile:0.99"] value 15.000321589

prometheus.sample_prometheus_metrics.prometheus_target_interval_length_seconds_count [Actual intervals between scrapes.]
    Data Type: double  InDom: 144.22659 0x24005883
    Semantics: counter  Units: count
Help:
Actual intervals between scrapes.
    inst [0 or "0 interval:15s"] value 14012

prometheus.sample_prometheus_metrics.prometheus_target_interval_length_seconds_sum [Actual intervals between scrapes.]
    Data Type: double  InDom: 144.22658 0x24005882
    Semantics: counter  Units: sec
Help:
Actual intervals between scrapes.
    inst [0 or "0 interval:15s"] value 507078.1890832364

prometheus.sample_prometheus_metrics.prometheus_target_scrape_pool_sync_total [Total number of syncs that were executed on a scrape pool.]
    Data Type: double  InDom: 144.22660 0x24005884
    Semantics: counter  Units: none
Help:
Total number of syncs that were executed on a scrape pool.
    inst [0 or "0 scrape_job:prometheus"] value 1

prometheus.sample_prometheus_metrics.prometheus_target_scrapes_exceeded_sample_limit_total [Total number of scrapes that hit the sample limit and were rejected.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Total number of scrapes that hit the sample limit and were rejected.
    value 0

prometheus.sample_prometheus_metrics.prometheus_target_skipped_scrapes_total [Total number of scrapes that were skipped because the metric storage was throttled.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
Total number of scrapes that were skipped because the metric storage was throttled.
    value 0

prometheus.sample_prometheus_metrics.prometheus_target_sync_length_seconds [Actual interval to sync the scrape pool.]
    Data Type: double  InDom: 144.22663 0x24005887
    Semantics: instant  Units: sec
Help:
Actual interval to sync the scrape pool.
    inst [0 or "0 quantile:0.01 scrape_job:prometheus"] value nan
    inst [1 or "1 quantile:0.05 scrape_job:prometheus"] value nan
    inst [2 or "2 quantile:0.5 scrape_job:prometheus"] value nan
    inst [3 or "3 quantile:0.9 scrape_job:prometheus"] value nan
    inst [4 or "4 quantile:0.99 scrape_job:prometheus"] value nan

prometheus.sample_prometheus_metrics.prometheus_target_sync_length_seconds_count [Actual interval to sync the scrape pool.]
    Data Type: double  InDom: 144.22665 0x24005889
    Semantics: counter  Units: count
Help:
Actual interval to sync the scrape pool.
    inst [0 or "0 scrape_job:prometheus"] value 1

prometheus.sample_prometheus_metrics.prometheus_target_sync_length_seconds_sum [Actual interval to sync the scrape pool.]
    Data Type: double  InDom: 144.22664 0x24005888
    Semantics: counter  Units: sec
Help:
Actual interval to sync the scrape pool.
    inst [0 or "0 scrape_job:prometheus"] value 0.000270178

prometheus.sample_prometheus_metrics.prometheus_treecache_watcher_goroutines [The current number of watcher goroutines.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
The current number of watcher goroutines.
    value 0

prometheus.sample_prometheus_metrics.prometheus_treecache_zookeeper_failures_total [The total number of ZooKeeper failures.]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: counter  Units: none
Help:
The total number of ZooKeeper failures.
    value 0

prometheus.simple_metric.metric1 [Simple gauge metric with three instances]
    Data Type: double  InDom: 144.26624 0x24006800
    Semantics: instant  Units: none
Help:
Simple gauge metric with three instances
    inst [0 or "0 abc:0"] value 456
    inst [1 or "1 def:123"] value 123
    inst [2 or "2 hig:246 xyz:something"] value 128

prometheus.simple_metric.metric2 [Simple gauge metric with one instance]
    Data Type: double  InDom: 144.26625 0x24006801
    Semantics: instant  Units: none
Help:
Simple gauge metric with one instance
    inst [0 or "0 efg:0"] value 121

prometheus.thermostat.tms_jvm_cpu_4099dd5b_8226_4c13_a697_5e669380060b_cpuLoad [CPU load for 4099dd5b_8226_4c13_a697_5e669380060b]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
CPU load for 4099dd5b_8226_4c13_a697_5e669380060b
    value 0.1248819013089245

prometheus.thermostat.tms_jvm_cpu_44157db5_4922_49d0_89de_f20f8bf71ceb_cpuLoad [CPU load for 44157db5_4922_49d0_89de_f20f8bf71ceb]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
CPU load for 44157db5_4922_49d0_89de_f20f8bf71ceb
    value 0.499902464030243

prometheus.thermostat.tms_jvm_cpu_641b7232_19dd_47ae_9cc1_8294b2a09774_cpuLoad [CPU load for 641b7232_19dd_47ae_9cc1_8294b2a09774]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
CPU load for 641b7232_19dd_47ae_9cc1_8294b2a09774
    value 0.3756748792584695

prometheus.thermostat.tms_jvm_cpu_b5be5b9f_b0f1_47de_b436_27f167daf396_cpuLoad [CPU load for b5be5b9f_b0f1_47de_b436_27f167daf396]
    Data Type: double  InDom: PM_INDOM_NULL 0xffffffff
    Semantics: instant  Units: none
Help:
CPU load for b5be5b9f_b0f1_47de_b436_27f167daf396
    value 0.6245374825293383

prometheus.thermostat.tms_jvm_gc_4099dd5b_8226_4c13_a697_5e669380060b_wallTime [GC Wall Time for 4099dd5b_8226_4c13_a697_5e669380060b]
    Data Type: double  InDom: 144.28677 0x24007005
    Semantics: instant  Units: none
Help:
GC Wall Time for 4099dd5b_8226_4c13_a697_5e669380060b
    inst [0 or "0 collector_name:PSParallelCompact"] value 360578
    inst [1 or "1 collector_name:PSScavenge"] value 120532

prometheus.thermostat.tms_jvm_gc_44157db5_4922_49d0_89de_f20f8bf71ceb_wallTime [GC Wall Time for 44157db5_4922_49d0_89de_f20f8bf71ceb]
    Data Type: double  InDom: 144.28674 0x24007002
    Semantics: instant  Units: none
Help:
GC Wall Time for 44157db5_4922_49d0_89de_f20f8bf71ceb
    inst [0 or "0 collector_name:PSParallelCompact"] value 53544
    inst [1 or "1 collector_name:PSScavenge"] value 4539165

prometheus.thermostat.tms_jvm_gc_641b7232_19dd_47ae_9cc1_8294b2a09774_wallTime [GC Wall Time for 641b7232_19dd_47ae_9cc1_8294b2a09774]
    Data Type: double  InDom: 144.28678 0x24007006
    Semantics: instant  Units: none
Help:
GC Wall Time for 641b7232_19dd_47ae_9cc1_8294b2a09774
    inst [0 or "0 collector_name:PCopy"] value 3658446
    inst [1 or "1 collector_name:CMS"] value 2932705

prometheus.thermostat.tms_jvm_gc_b5be5b9f_b0f1_47de_b436_27f167daf396_wallTime [GC Wall Time for b5be5b9f_b0f1_47de_b436_27f167daf396]
    Data Type: double  InDom: 144.28673 0x24007001
    Semantics: instant  Units: none
Help:
GC Wall Time for b5be5b9f_b0f1_47de_b436_27f167daf396
    inst [0 or "0 collector_name:Copy"] value 24462465
    inst [1 or "1 collector_name:MSC"] value 49519

=== remove prometheus agent ===
Culling the Performance Metrics Name Space ...
prometheus ... done
Updating the PMCD control file, and notifying PMCD ...
[...removing files...]
Check prometheus metrics have gone away ... OK