This file is indexed.

/var/lib/pcp/testsuite/1069.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
QA output created by 1069
== basic live mode reporting
          s.l.one
                 
HH:MM:SS        1
HH:MM:SS        1
          s.l.one
                 
HH:MM:SS        1
HH:MM:SS        1
HH:MM:SS        1
          s.l.one
                 
HH:MM:SS        1
HH:MM:SS        1
HH:MM:SS        1
          s.l.one  s.colour  s.colour  s.colour
                        red     green      blue
                                               
== basic duplicate name handling
  s.seconds
== basic archive mode reporting
          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:47        N/A             N/A
20:36:49       1.00         1000.03
20:36:51       1.00         1000.00
20:36:53       1.00         1000.02
== basic archive indom handling
Invalid metric tape.dev.io_ns (PM_ERR_INDOM_LOG Instance domain identifier not defined in the PCP archive log).
  m.u.used
     Kbyte
== basic configuration file handling
  s.seconds  s.milliseconds
        s/s            ms/s
        N/A             N/A
        N/A             N/A
      1.000        1000.033
      1.000        1000.001
      1.000        1000.016
== exercise various output options
          h.machine
                   
08:57:23      linux
17:42:43      linux
                     s.seconds        s.milliseconds
                           s/s                  ms/s
20:36:45                   N/A                   N/A
20:36:47                   N/A                   N/A
20:36:49                 1.000              1000.033
20:36:51                 1.000              1000.001
20:36:53                 1.000              1000.016
---

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 5
 interval: 2.0 sec
 duration: 00:00:08

  s.seconds  s.milliseconds
        s/s            ms/s
---

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 3
 interval: 3.0 sec
 duration: 00:00:07

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:48        N/A             N/A
20:36:51      1.000         999.992
---
        N/A             N/A
        N/A             N/A
      1.000        1000.033
      1.000        1000.001
      1.000        1000.016
        |        |d.d.read|d.d.write|d.d.total|n.i.mtu|m.u.free|k.a.load|m.u.used
        |        | count/s|  count/s|  count/s|   byte|   Kbyte|        |   Kbyte
00:47:01|     sda|     N/A|      N/A|      N/A|      ~|       ~|       ~|       ~
00:47:01|     sdb|     N/A|      N/A|      N/A|      ~|       ~|       ~|       ~
00:47:01|     sdc|     N/A|      N/A|      N/A|      ~|       ~|       ~|       ~
00:47:01|     hdc|     N/A|      N/A|      N/A|      ~|       ~|       ~|       ~
00:47:01|     sdd|     N/A|      N/A|      N/A|      ~|       ~|       ~|       ~
00:47:01|     sde|     N/A|      N/A|      N/A|      ~|       ~|       ~|       ~
00:47:01|      lo|       ~|        ~|        ~|  16436|       ~|       ~|       ~
00:47:01|    eth0|       ~|        ~|        ~|   1500|       ~|       ~|       ~
00:47:01|       =|       ~|        ~|        ~|      ~|   38220|       ~| 6068648
00:47:01|1 minute|       ~|        ~|        ~|      ~|       ~|   0.820|       ~
00:47:01|5 minute|       ~|        ~|        ~|      ~|       ~|   0.700|       ~
00:47:01|15 minut|       ~|        ~|        ~|      ~|       ~|   0.590|       ~
00:47:03|     sda|   0.000|    0.500|    0.500|      ~|       ~|       ~|       ~
00:47:03|     sdb|  30.000|  296.500|  326.500|      ~|       ~|       ~|       ~
00:47:03|     sdc|   0.500|    0.500|    1.000|      ~|       ~|       ~|       ~
00:47:03|     hdc|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:03|     sdd|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:03|     sde|   1.000|   12.000|   12.000|      ~|       ~|       ~|       ~
00:47:03|      lo|       ~|        ~|        ~|  16436|       ~|       ~|       ~
00:47:03|    eth0|       ~|        ~|        ~|   1500|       ~|       ~|       ~
00:47:03|       =|       ~|        ~|        ~|      ~|   38220|       ~| 6068648
00:47:03|1 minute|       ~|        ~|        ~|      ~|       ~|   0.820|       ~
00:47:03|5 minute|       ~|        ~|        ~|      ~|       ~|   0.700|       ~
00:47:03|15 minut|       ~|        ~|        ~|      ~|       ~|   0.590|       ~
00:47:05|     sda|   0.000|    0.500|    0.500|      ~|       ~|       ~|       ~
00:47:05|     sdb|  30.000|  296.000|  326.000|      ~|       ~|       ~|       ~
00:47:05|     sdc|   0.000|    0.500|    0.500|      ~|       ~|       ~|       ~
00:47:05|     hdc|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:05|     sdd|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:05|     sde|   1.000|   11.500|   12.500|      ~|       ~|       ~|       ~
00:47:05|      lo|       ~|        ~|        ~|  16436|       ~|       ~|       ~
00:47:05|    eth0|       ~|        ~|        ~|   1500|       ~|       ~|       ~
00:47:05|       =|       ~|        ~|        ~|      ~|   38220|       ~| 6068648
00:47:05|1 minute|       ~|        ~|        ~|      ~|       ~|   0.820|       ~
00:47:05|5 minute|       ~|        ~|        ~|      ~|       ~|   0.700|       ~
00:47:05|15 minut|       ~|        ~|        ~|      ~|       ~|   0.590|       ~
00:47:07|     sda|   0.000|    0.500|    0.500|      ~|       ~|       ~|       ~
00:47:07|     sdb|  30.000|  296.500|  326.500|      ~|       ~|       ~|       ~
00:47:07|     sdc|   0.500|    0.500|    1.000|      ~|       ~|       ~|       ~
00:47:07|     hdc|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:07|     sdd|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:07|     sde|   1.000|   11.500|   12.500|      ~|       ~|       ~|       ~
00:47:07|      lo|       ~|        ~|        ~|  16436|       ~|       ~|       ~
00:47:07|    eth0|       ~|        ~|        ~|   1500|       ~|       ~|       ~
00:47:07|       =|       ~|        ~|        ~|      ~|   38220|       ~| 6068648
00:47:07|1 minute|       ~|        ~|        ~|      ~|       ~|   0.820|       ~
00:47:07|5 minute|       ~|        ~|        ~|      ~|       ~|   0.700|       ~
00:47:07|15 minut|       ~|        ~|        ~|      ~|       ~|   0.590|       ~
00:47:09|     sda|   0.000|    0.500|    0.500|      ~|       ~|       ~|       ~
00:47:09|     sdb|  30.000|  296.000|  326.000|      ~|       ~|       ~|       ~
00:47:09|     sdc|   0.500|    0.500|    0.500|      ~|       ~|       ~|       ~
00:47:09|     hdc|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:09|     sdd|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:09|     sde|   0.500|   11.500|   12.500|      ~|       ~|       ~|       ~
00:47:09|      lo|       ~|        ~|        ~|  16436|       ~|       ~|       ~
00:47:09|    eth0|       ~|        ~|        ~|   1500|       ~|       ~|       ~
00:47:09|       =|       ~|        ~|        ~|      ~|   38220|       ~| 6068648
00:47:09|1 minute|       ~|        ~|        ~|      ~|       ~|   0.820|       ~
00:47:09|5 minute|       ~|        ~|        ~|      ~|       ~|   0.700|       ~
00:47:09|15 minut|       ~|        ~|        ~|      ~|       ~|   0.590|       ~
        |Instance name|d.d.read|d.d.write|d.d.total|n.i.mtu|m.u.free|k.a.load|m.u.used
        |             | count/s|  count/s|  count/s|   byte|   Kbyte|        |   Kbyte
00:47:01|          sda|     N/A|      N/A|      N/A|      ~|       ~|       ~|       ~
00:47:01|          sdb|     N/A|      N/A|      N/A|      ~|       ~|       ~|       ~
00:47:01|          sdc|     N/A|      N/A|      N/A|      ~|       ~|       ~|       ~
00:47:01|          hdc|     N/A|      N/A|      N/A|      ~|       ~|       ~|       ~
00:47:01|          sdd|     N/A|      N/A|      N/A|      ~|       ~|       ~|       ~
00:47:01|          sde|     N/A|      N/A|      N/A|      ~|       ~|       ~|       ~
00:47:01|           lo|       ~|        ~|        ~|  16436|       ~|       ~|       ~
00:47:01|         eth0|       ~|        ~|        ~|   1500|       ~|       ~|       ~
00:47:01|            =|       ~|        ~|        ~|      ~|   38220|       ~| 6068648
00:47:01|     1 minute|       ~|        ~|        ~|      ~|       ~|   0.820|       ~
00:47:01|     5 minute|       ~|        ~|        ~|      ~|       ~|   0.700|       ~
00:47:01|    15 minute|       ~|        ~|        ~|      ~|       ~|   0.590|       ~
00:47:03|          sda|   0.000|    0.500|    0.500|      ~|       ~|       ~|       ~
00:47:03|          sdb|  30.000|  296.500|  326.500|      ~|       ~|       ~|       ~
00:47:03|          sdc|   0.500|    0.500|    1.000|      ~|       ~|       ~|       ~
00:47:03|          hdc|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:03|          sdd|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:03|          sde|   1.000|   12.000|   12.000|      ~|       ~|       ~|       ~
00:47:03|           lo|       ~|        ~|        ~|  16436|       ~|       ~|       ~
00:47:03|         eth0|       ~|        ~|        ~|   1500|       ~|       ~|       ~
00:47:03|            =|       ~|        ~|        ~|      ~|   38220|       ~| 6068648
00:47:03|     1 minute|       ~|        ~|        ~|      ~|       ~|   0.820|       ~
00:47:03|     5 minute|       ~|        ~|        ~|      ~|       ~|   0.700|       ~
00:47:03|    15 minute|       ~|        ~|        ~|      ~|       ~|   0.590|       ~
00:47:05|          sda|   0.000|    0.500|    0.500|      ~|       ~|       ~|       ~
00:47:05|          sdb|  30.000|  296.000|  326.000|      ~|       ~|       ~|       ~
00:47:05|          sdc|   0.000|    0.500|    0.500|      ~|       ~|       ~|       ~
00:47:05|          hdc|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:05|          sdd|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:05|          sde|   1.000|   11.500|   12.500|      ~|       ~|       ~|       ~
00:47:05|           lo|       ~|        ~|        ~|  16436|       ~|       ~|       ~
00:47:05|         eth0|       ~|        ~|        ~|   1500|       ~|       ~|       ~
00:47:05|            =|       ~|        ~|        ~|      ~|   38220|       ~| 6068648
00:47:05|     1 minute|       ~|        ~|        ~|      ~|       ~|   0.820|       ~
00:47:05|     5 minute|       ~|        ~|        ~|      ~|       ~|   0.700|       ~
00:47:05|    15 minute|       ~|        ~|        ~|      ~|       ~|   0.590|       ~
00:47:07|          sda|   0.000|    0.500|    0.500|      ~|       ~|       ~|       ~
00:47:07|          sdb|  30.000|  296.500|  326.500|      ~|       ~|       ~|       ~
00:47:07|          sdc|   0.500|    0.500|    1.000|      ~|       ~|       ~|       ~
00:47:07|          hdc|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:07|          sdd|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:07|          sde|   1.000|   11.500|   12.500|      ~|       ~|       ~|       ~
00:47:07|           lo|       ~|        ~|        ~|  16436|       ~|       ~|       ~
00:47:07|         eth0|       ~|        ~|        ~|   1500|       ~|       ~|       ~
00:47:07|            =|       ~|        ~|        ~|      ~|   38220|       ~| 6068648
00:47:07|     1 minute|       ~|        ~|        ~|      ~|       ~|   0.820|       ~
00:47:07|     5 minute|       ~|        ~|        ~|      ~|       ~|   0.700|       ~
00:47:07|    15 minute|       ~|        ~|        ~|      ~|       ~|   0.590|       ~
00:47:09|          sda|   0.000|    0.500|    0.500|      ~|       ~|       ~|       ~
00:47:09|          sdb|  30.000|  296.000|  326.000|      ~|       ~|       ~|       ~
00:47:09|          sdc|   0.500|    0.500|    0.500|      ~|       ~|       ~|       ~
00:47:09|          hdc|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:09|          sdd|   0.000|    0.000|    0.000|      ~|       ~|       ~|       ~
00:47:09|          sde|   0.500|   11.500|   12.500|      ~|       ~|       ~|       ~
00:47:09|           lo|       ~|        ~|        ~|  16436|       ~|       ~|       ~
00:47:09|         eth0|       ~|        ~|        ~|   1500|       ~|       ~|       ~
00:47:09|            =|       ~|        ~|        ~|      ~|   38220|       ~| 6068648
00:47:09|     1 minute|       ~|        ~|        ~|      ~|       ~|   0.820|       ~
00:47:09|     5 minute|       ~|        ~|        ~|      ~|       ~|   0.700|       ~
00:47:09|    15 minute|       ~|        ~|        ~|      ~|       ~|   0.590|       ~
== exercise precision correctness
  s.seconds
        s/s
        N/A
        N/A
  1.0000000
  1.0000000
  1.0000000
  s.seconds
        s/s
        N/A
        N/A
      1.000
      1.000
      1.000
== exercise extended header

  archive: QAPATH/archives/rep
     host: slack
 timezone: UTC+11
    start: Wed Feb 10 14:39:13 2016
      end: Wed Feb 10 14:39:17 2016
  metrics: 21 (21 instances)
  samples: N/A
 interval: N/A
 duration: 00:00:04


  archive: QAPATH/archives/20130706
     host: billing02
 timezone: UTC+10
    start: Sat Jul  6 00:17:01 2013
      end: Sun Jul  7 00:15:43 2013
  metrics: 294 (564 instances)
  samples: N/A
 interval: N/A
 duration: 23:58:41


  archive: QAPATH/archives/bug-1044.meta
     host: super.elastic.org
 timezone: UTC-5
    start: Fri Jan 10 17:58:09 2014
      end: Mon Jan 13 08:59:49 2014
  metrics: 5 (5 instances)
  samples: N/A
 interval: N/A
 duration: 2 days, 15:01:40

== exercise separate header
[ 1] - mem.util.free - Kbyte
[ 2] - disk.dev.read["sda"] - count/s
[ 3] - disk.dev.read["sdb"] - count/s
[ 4] - disk.dev.read["sdc"] - count/s
[ 5] - disk.dev.read["hdc"] - count/s
[ 6] - disk.dev.read["sdd"] - count/s
[ 7] - disk.dev.read["sde"] - count/s
[ 8] - mem.util.used - Kbyte

         1         2         3         4         5         6         7         8
     38220       N/A       N/A       N/A       N/A       N/A       N/A   6068648
     38220     0.000    30.000     0.500     0.000     0.000     1.000   6068648

[ 1] - mem.util.free - Kbyte
[ 2] - disk.dev.read["sda"] - count/s
[ 3] - disk.dev.read["sdb"] - count/s
[ 4] - disk.dev.read["sdc"] - count/s
[ 5] - disk.dev.read["hdc"] - count/s
[ 6] - disk.dev.read["sdd"] - count/s
[ 7] - disk.dev.read["sde"] - count/s
[ 8] - mem.util.used - Kbyte

         1         2         3         4         5         6         7         8
     38220     0.000    30.000     0.000     0.000     0.000     1.000   6068648
     38220     0.000    30.000     0.500     0.000     0.000     1.000   6068648

[ 1] - mem.util.free - Kbyte
[ 2] - disk.dev.read["sda"] - count/s
[ 3] - disk.dev.read["sdb"] - count/s
[ 4] - disk.dev.read["sdc"] - count/s
[ 5] - disk.dev.read["hdc"] - count/s
[ 6] - disk.dev.read["sdd"] - count/s
[ 7] - disk.dev.read["sde"] - count/s
[ 8] - mem.util.used - Kbyte

         1         2         3         4         5         6         7         8
     38220     0.000    30.000     0.500     0.000     0.000     0.500   6068648
[ 1] - mem.util.free - Kbyte
[ 2] - disk.dev.read["sda"] - count/s
[ 2] - disk.dev.read["sdb"] - count/s
[ 2] - disk.dev.read["sdc"] - count/s
[ 2] - disk.dev.read["hdc"] - count/s
[ 2] - disk.dev.read["sdd"] - count/s
[ 2] - disk.dev.read["sde"] - count/s
[ 3] - disk.dev.write["sda"] - count/s
[ 3] - disk.dev.write["sdb"] - count/s
[ 3] - disk.dev.write["sdc"] - count/s
[ 3] - disk.dev.write["hdc"] - count/s
[ 3] - disk.dev.write["sdd"] - count/s
[ 3] - disk.dev.write["sde"] - count/s
[ 4] - mem.util.used - Kbyte

        |        |       1|       2|       3|       4
00:47:01|       =|   38220|       ~|       ~| 6068648
00:47:01|     sda|       ~|     N/A|     N/A|       ~
00:47:01|     sdb|       ~|     N/A|     N/A|       ~
00:47:01|     sdc|       ~|     N/A|     N/A|       ~
00:47:01|     hdc|       ~|     N/A|     N/A|       ~
00:47:01|     sdd|       ~|     N/A|     N/A|       ~
00:47:01|     sde|       ~|     N/A|     N/A|       ~
00:47:03|       =|   38220|       ~|       ~| 6068648
00:47:03|     sda|       ~|   0.000|   0.500|       ~
00:47:03|     sdb|       ~|  30.000| 296.500|       ~
00:47:03|     sdc|       ~|   0.500|   0.500|       ~
00:47:03|     hdc|       ~|   0.000|   0.000|       ~
00:47:03|     sdd|       ~|   0.000|   0.000|       ~
00:47:03|     sde|       ~|   1.000|  12.000|       ~
00:47:05|       =|   38220|       ~|       ~| 6068648
00:47:05|     sda|       ~|   0.000|   0.500|       ~
00:47:05|     sdb|       ~|  30.000| 296.000|       ~
00:47:05|     sdc|       ~|   0.000|   0.500|       ~
00:47:05|     hdc|       ~|   0.000|   0.000|       ~
00:47:05|     sdd|       ~|   0.000|   0.000|       ~
00:47:05|     sde|       ~|   1.000|  11.500|       ~
00:47:07|       =|   38220|       ~|       ~| 6068648
00:47:07|     sda|       ~|   0.000|   0.500|       ~
00:47:07|     sdb|       ~|  30.000| 296.500|       ~
00:47:07|     sdc|       ~|   0.500|   0.500|       ~
00:47:07|     hdc|       ~|   0.000|   0.000|       ~
00:47:07|     sdd|       ~|   0.000|   0.000|       ~
00:47:07|     sde|       ~|   1.000|  11.500|       ~
00:47:09|       =|   38220|       ~|       ~| 6068648
00:47:09|     sda|       ~|   0.000|   0.500|       ~
00:47:09|     sdb|       ~|  30.000| 296.000|       ~
00:47:09|     sdc|       ~|   0.500|   0.500|       ~
00:47:09|     hdc|       ~|   0.000|   0.000|       ~
00:47:09|     sdd|       ~|   0.000|   0.000|       ~
00:47:09|     sde|       ~|   0.500|  11.500|       ~
[ 1] - mem.util.used - Kbyte
[ 2] - kernel.all.cpu.user - ms/s
[ 2] - kernel.percpu.cpu.user["cpu0"] - ms/s
[ 2] - kernel.percpu.cpu.user["cpu1"] - ms/s
[ 3] - mem.util.free - Kbyte
[ 4] - mem.util.shared - Kbyte

                       1         2         3         4
00:47:01     =   6068648       N/A     38220       N/A
00:47:01  cpu0         ~       N/A         ~         ~
00:47:01  cpu1         ~       N/A         ~         ~
00:47:03     =   6068648   404.500     38220       N/A
00:47:03  cpu0         ~    21.000         ~         ~
00:47:03  cpu1         ~   384.000         ~         ~
00:47:05     =   6068648   404.500     38220       N/A
00:47:05  cpu0         ~    20.500         ~         ~
00:47:05  cpu1         ~   384.000         ~         ~
00:47:07     =   6068648   405.000     38220       N/A
00:47:07  cpu0         ~    21.000         ~         ~
00:47:07  cpu1         ~   384.000         ~         ~
00:47:09     =   6068648   404.500     38220       N/A
00:47:09  cpu0         ~    21.000         ~         ~
00:47:09  cpu1         ~   384.000         ~         ~
== invalid command line parameters
Error while parsing options: Non-negative integer expected.
Error while parsing options: Non-negative integer expected.
Error while parsing options: Non-negative integer expected.
Invalid regex '(':
Invalid regex '.[]*':
Invalid regex '.[z-a]':
Metricset definition ':nosuchset' not found.
== invalid configuration file
Error while parsing options: Invalid output target specified.
pcp: sample count must be a positive numeric argument
Error while parsing options: Non-negative integer expected.
pmrep: Impossible value or scale conversion
Invalid metric bogus (PM_ERR_NAME Unknown metric name).
== unsupported metric type
Invalid metric sample.sysinfo (PM_ERR_TYPE Unknown or illegal metric type).
== exercise non-integer options

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 6
 interval: 0.5 sec
 duration: 00:00:03

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:45        N/A             N/A
20:36:46      2.000        1000.216
20:36:46      0.000        1000.216
20:36:47      2.000        1000.216
20:36:47      0.000        1000.205
== exercise raw counter mode
  s.seconds  s.milliseconds
        sec        millisec
        N/A             N/A
     380434   380433679.314
     380436   380435679.381
     380438   380437679.382
     380440   380439679.413
== exercise samples/interval/endtime settings and combinations

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 3
 interval: 1.0 sec
 duration: 00:00:02

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:46        N/A             N/A
20:36:47      1.000        1000.216

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 21
 interval: 3.0 sec
 duration: 00:01:00

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:48        N/A             N/A
20:36:51      1.000         999.992
20:36:54      1.000        1000.011
20:36:57      1.000        1000.002
20:37:00      1.000         999.995
20:37:03      1.000        1000.004
20:37:06      1.000         999.997
20:37:09      1.000        1000.000
20:37:12      1.000        1000.001
20:37:15      1.000        1000.000
20:37:18      1.000        1000.002
20:37:21      1.000        1000.003
20:37:24      1.000         999.994
20:37:27      1.000        1000.003
20:37:30      1.000         999.996
20:37:33      1.000        1000.001
20:37:36      1.000         999.995
20:37:39      1.000        1000.005
20:37:42      1.000        1000.004
20:37:45      1.000         999.997

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 4
 interval: 1.0 sec
 duration: 00:00:03

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:46        N/A             N/A
20:36:47      1.000        1000.216
20:36:48      1.000        1000.090

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 3
 interval: 3.0 sec
 duration: 00:00:06

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:48        N/A             N/A
20:36:51      1.000         999.992

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 3
 interval: 1.5 sec
 duration: 00:00:03

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:46        N/A             N/A
20:36:48      1.333        1000.132

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 4
 interval: 3.0 sec
 duration: 00:00:09

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:48        N/A             N/A
20:36:51      1.000         999.992
20:36:54      1.000        1000.011

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 3
 interval: 0.5 sec
 duration: 00:00:01

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:45        N/A             N/A
20:36:46      2.000        1000.216

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 3
 interval: 1.0 sec
 duration: 00:00:02

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:46        N/A             N/A
20:36:47      1.000        1000.216

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 3
 interval: 1.5 sec
 duration: 00:00:03

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:46        N/A             N/A
20:36:48      1.333        1000.132

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 3
 interval: 3.0 sec
 duration: 00:00:06

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:48        N/A             N/A
20:36:51      1.000         999.992

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+10
    start: Mon May  1 20:36:45 2000
      end: Mon May  1 20:37:45 2000
  metrics: 2 (2 instances)
  samples: 2
 interval: 4.0 sec
 duration: 00:00:04

          s.seconds  s.milliseconds
                s/s            ms/s
20:36:45        N/A             N/A
20:36:49        N/A             N/A
== exercise timezone setting

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+0
    start: Mon May  1 10:36:45 2000
      end: Mon May  1 10:37:45 2000
  metrics: 2 (2 instances)
  samples: 5
 interval: 2.0 sec
 duration: 00:00:08

          s.seconds  s.milliseconds
                s/s            ms/s
10:36:45        N/A             N/A
10:36:47        N/A             N/A
10:36:49      1.000        1000.033
10:36:51      1.000        1000.001
10:36:53      1.000        1000.016

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+0
    start: Mon May  1 10:36:45 2000
      end: Mon May  1 10:37:45 2000
  metrics: 2 (2 instances)
  samples: 5
 interval: 2.0 sec
 duration: 00:00:08

          s.seconds  s.milliseconds
                s/s            ms/s
10:36:45        N/A             N/A
10:36:47        N/A             N/A
10:36:49      1.000        1000.033
10:36:51      1.000        1000.001
10:36:53      1.000        1000.016

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+0
    start: Mon May  1 10:36:45 2000
      end: Mon May  1 10:37:45 2000
  metrics: 2 (2 instances)
  samples: 5
 interval: 2.0 sec
 duration: 00:00:08

          s.seconds  s.milliseconds
                s/s            ms/s
10:36:45        N/A             N/A
10:36:47        N/A             N/A
10:36:49      1.000        1000.033
10:36:51      1.000        1000.001
10:36:53      1.000        1000.016

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+0
    start: Mon May  1 10:36:45 2000
      end: Mon May  1 10:37:45 2000
  metrics: 2 (2 instances)
  samples: 5
 interval: 2.0 sec
 duration: 00:00:08

          s.seconds  s.milliseconds
                s/s            ms/s
10:36:45        N/A             N/A
10:36:47        N/A             N/A
10:36:49      1.000        1000.033
10:36:51      1.000        1000.001
10:36:53      1.000        1000.016

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+5
    start: Mon May  1 15:36:45 2000
      end: Mon May  1 15:37:45 2000
  metrics: 2 (2 instances)
  samples: 5
 interval: 2.0 sec
 duration: 00:00:08

          s.seconds  s.milliseconds
                s/s            ms/s
15:36:45        N/A             N/A
15:36:47        N/A             N/A
15:36:49      1.000        1000.033
15:36:51      1.000        1000.001
15:36:53      1.000        1000.016

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC-5
    start: Mon May  1 05:36:45 2000
      end: Mon May  1 05:37:45 2000
  metrics: 2 (2 instances)
  samples: 5
 interval: 2.0 sec
 duration: 00:00:08

          s.seconds  s.milliseconds
                s/s            ms/s
05:36:45        N/A             N/A
05:36:47        N/A             N/A
05:36:49      1.000        1000.033
05:36:51      1.000        1000.001
05:36:53      1.000        1000.016

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC-4
    start: Mon May  1 06:36:45 2000
      end: Mon May  1 06:37:45 2000
  metrics: 2 (2 instances)
  samples: 5
 interval: 2.0 sec
 duration: 00:00:08

          s.seconds  s.milliseconds
                s/s            ms/s
06:36:45        N/A             N/A
06:36:47        N/A             N/A
06:36:49      1.000        1000.033
06:36:51      1.000        1000.001
06:36:53      1.000        1000.016

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+3
    start: Mon May  1 13:36:45 2000
      end: Mon May  1 13:37:45 2000
  metrics: 2 (2 instances)
  samples: 5
 interval: 2.0 sec
 duration: 00:00:08

          s.seconds  s.milliseconds
                s/s            ms/s
13:36:45        N/A             N/A
13:36:47        N/A             N/A
13:36:49      1.000        1000.033
13:36:51      1.000        1000.001
13:36:53      1.000        1000.016

  archive: QAPATH/archives/sample-secs
     host: rattle
 timezone: UTC+5:30
    start: Mon May  1 16:06:45 2000
      end: Mon May  1 16:07:45 2000
  metrics: 2 (2 instances)
  samples: 5
 interval: 2.0 sec
 duration: 00:00:08

          s.seconds  s.milliseconds
                s/s            ms/s
16:06:45        N/A             N/A
16:06:47        N/A             N/A
16:06:49      1.000        1000.033
16:06:51      1.000        1000.001
16:06:53      1.000        1000.016

  archive: QAPATH/archives/numa
     host: grundy
 timezone: UTC-7
    start: Thu Apr 10 19:55:52 2014
      end: Thu Apr 10 19:56:01 2014
  metrics: 1 (1 instance)
  samples: 10
 interval: 1.0 sec
 duration: 00:00:09


  archive: QAPATH/archives/rep
     host: slack
 timezone: UTC+11
    start: Wed Feb 10 14:39:13 2016
      end: Wed Feb 10 14:39:17 2016
  metrics: 1 (1 instance)
  samples: 4
 interval: 1.0 sec
 duration: 00:00:03

== exercise timezone change

  archive: QAPATH/archives/coverage
     host: localhost.localdomain
 timezone: UTC+3
    start: Sun Oct 29 03:30:00 2017
      end: Sun Oct 29 04:46:00 2017
  metrics: 1 (1 instance)
  samples: N/A
 interval: N/A
 duration: 01:16:00

          m.u.free
             Kbyte
03:30:00   1900820
03:35:00   1900372
03:40:00   1900280
03:45:00   1855104
03:50:00   1855044
03:55:00   1854660
04:00:00   1854660
04:05:00   1854600
04:10:00   1854664
04:15:00   1854504
04:20:00   1854568
04:25:00   1854476
04:30:00   1854508
04:35:00   1854380
04:40:00   1854288
04:45:00   1854228

  archive: QAPATH/archives/coverage
     host: localhost.localdomain
 timezone: UTC+0
    start: Sun Oct 29 00:30:00 2017
      end: Sun Oct 29 01:46:00 2017
  metrics: 1 (1 instance)
  samples: N/A
 interval: N/A
 duration: 01:16:00

          m.u.free
             Kbyte
00:30:00   1900820
00:35:00   1900372
00:40:00   1900280
00:45:00   1855104
00:50:00   1855044
00:55:00   1854660
01:00:00   1854660
01:05:00   1854600
01:10:00   1854664
01:15:00   1854504
01:20:00   1854568
01:25:00   1854476
01:30:00   1854508
01:35:00   1854380
01:40:00   1854288
01:45:00   1854228
== exercise starttime handling / confirm no negative duration/samples

  archive: QAPATH/archives/19970807.09.54
     host: gonzo
 timezone: UTC+0
    start: Thu Aug  7 22:59:00 1997
      end: Wed Aug  6 23:55:01 1997
  metrics: 1 (1 instance)
  samples: 0
 interval: 1.0 sec
 duration: 00:00:00

== exercise extended CSV output
11
Host,Interval,Time,"sample.seconds","sample.milliseconds"
rattle,0,2000-05-01 20:36:45 UTC+10,,
rattle,2,2000-05-01 20:36:47 UTC+10,380434,380433679.314
rattle,2,2000-05-01 20:36:49 UTC+10,380436,380435679.381
rattle,2,2000-05-01 20:36:51 UTC+10,380438,380437679.382
rattle,2,2000-05-01 20:36:53 UTC+10,380440,380439679.413
== exercise delimiter corner cases
       h.machine
           linux
         freemem usedmem
           Kbyte   Kbyte
00:47:01   38220 6068648
00:47:03   38220 6068648
== exercise CSV and alternate delimiters
Time,"sample.seconds","sample.milliseconds"
2000-05-01 20:36:45,,
2000-05-01 20:36:47,380434,380433679.3
2000-05-01 20:36:49,380436,380435679.4
2000-05-01 20:36:51,380438,380437679.4
2000-05-01 20:36:53,380440,380439679.4
Time|"sample.seconds"|"sample.milliseconds"
2000-05-01 20:36:45||
2000-05-01 20:36:47|380434|380433679.314
2000-05-01 20:36:49|380436|380435679.381
2000-05-01 20:36:51|380438|380437679.382
2000-05-01 20:36:53|380440|380439679.413
Host,Interval,Time;"sample.seconds";"sample.milliseconds"
rattle;0;2000-05-01 20:36:45 UTC+10;;
rattle;2;2000-05-01 20:36:47 UTC+10;380434;380433679.314
rattle;2;2000-05-01 20:36:49 UTC+10;380436;380435679.381
rattle;2;2000-05-01 20:36:51 UTC+10;380438;380437679.382
rattle;2;2000-05-01 20:36:53 UTC+10;380440;380439679.413
== exercise CSV and instance handling
Time,"hinv.map.scsi-scsi0:0:0:0 Direct-Access","hinv.map.scsi-scsi0:0:1:0 Direct-Access","hinv.map.scsi-scsi0:0:2:0 Direct-Access","hinv.map.scsi-scsi0:0:3:0 Direct-Access","hinv.map.scsi-scsi0:0:4:0 Direct-Access","kernel.all.load-1 minute","kernel.all.load-5 minute","kernel.all.load-15 minute"
2013-07-06 00:47:01,"sda","sdb","sdc","sdd","sde",0.820,0.700,0.590
2013-07-06 00:47:03,"sda","sdb","sdc","sdd","sde",0.820,0.700,0.590
2013-07-06 00:47:05,"sda","sdb","sdc","sdd","sde",0.820,0.700,0.590
2013-07-06 00:47:07,"sda","sdb","sdc","sdd","sde",0.820,0.700,0.590
2013-07-06 00:47:09,"sda","sdb","sdc","sdd","sde",0.820,0.700,0.590
== compare output-to-file versus stdout
ok
== exercise repeated headers option
  s.seconds
        s/s
        N/A
        N/A

  s.seconds
        s/s
      1.000
      1.000

  s.seconds
        s/s
      1.000
== exercise units conversion options
pmrep: Impossible value or scale conversion
                 m.u.free         m.u.used
                       MB               MB
00:47:01             37.3           5926.4
00:47:03             37.3           5926.4
00:47:05             37.3           5926.4
00:47:07             37.3           5926.4
00:47:09             37.3           5926.4
                 m.u.free         m.u.used
                       GB               GB
00:47:01             0.04             5.79
00:47:03             0.04             5.79
00:47:05             0.04             5.79
00:47:07             0.04             5.79
00:47:09             0.04             5.79
                 d.d.read         d.d.read         d.d.read         d.d.read         d.d.read         d.d.read
                      sda              sdb              sdc              hdc              sdd              sde
           count x 10^2/s   count x 10^2/s   count x 10^2/s   count x 10^2/s   count x 10^2/s   count x 10^2/s
00:47:01              N/A              N/A              N/A              N/A              N/A              N/A
00:47:03            0.000            0.300            0.005            0.000            0.000            0.010
00:47:05            0.000            0.300            0.000            0.000            0.000            0.010
00:47:07            0.000            0.300            0.005            0.000            0.000            0.010
00:47:09            0.000            0.300            0.005            0.000            0.000            0.005
                 d.d.read         d.d.read         d.d.read         d.d.read         d.d.read         d.d.read
                      sda              sdb              sdc              hdc              sdd              sde
          count x 10^-2/s  count x 10^-2/s  count x 10^-2/s  count x 10^-2/s  count x 10^-2/s  count x 10^-2/s
00:47:01              N/A              N/A              N/A              N/A              N/A              N/A
00:47:03           0.0000        3000.0000          50.0000           0.0000           0.0000         100.0000
00:47:05           0.0000        3000.0000           0.0000           0.0000           0.0000         100.0000
00:47:07           0.0000        3000.0000          50.0000           0.0000           0.0000         100.0000
00:47:09           0.0000        3000.0000          50.0000           0.0000           0.0000          50.0000
             d.d.avactive     d.d.avactive     d.d.avactive     d.d.avactive     d.d.avactive     d.d.avactive
                      sda              sdb              sdc              hdc              sdd              sde
                      s/s              s/s              s/s              s/s              s/s              s/s
08:58:23              N/A              N/A              N/A              N/A              N/A              N/A
08:59:23          0.00020          0.05590          0.00557          0.00000          0.00000          0.00488
09:00:23          0.00363          0.08877          0.00802          0.00000          0.00000          0.02103
09:01:23          0.00020          0.17519          0.01288          0.00000          0.00000          0.03645
09:02:23          0.00022          0.05422          0.00275          0.00000          0.00000          0.00505
             d.d.avactive     d.d.avactive     d.d.avactive     d.d.avactive     d.d.avactive     d.d.avactive
                      sda              sdb              sdc              hdc              sdd              sde
                     us/s             us/s             us/s             us/s             us/s             us/s
08:58:23              N/A              N/A              N/A              N/A              N/A              N/A
08:59:23       200.005467     55901.527975      5566.818826         0.000000         0.000000      4883.466815
09:00:23      3633.431133     88769.056034      8016.882454         0.000000         0.000000     21033.899496
09:01:23       200.006814    175189.301449     12883.772241         0.000000         0.000000     36451.241772
09:02:23       216.672278     54218.070915      2750.071227         0.000000         0.000000      5050.130798
              k.a.sysfork
             count x 10^6
00:47:01       16.9132770
00:47:03       16.9132770
00:47:05       16.9132780
00:47:07       16.9132780
00:47:09       16.9132790
                 m.u.free         m.u.used
                       kB               kB
00:47:01            38220          6068648
00:47:03            38220          6068648
00:47:05            38220          6068648
00:47:07            38220          6068648
00:47:09            38220          6068648
                 m.u.free         m.u.used
                     MB/s             MB/s
00:47:01              N/A              N/A
00:47:03      0.000000000      0.000000000
00:47:05      0.000000000      0.000000000
00:47:07      0.000000000      0.000000000
00:47:09      0.000000000      0.000000000
                 m.u.free         m.u.used
                     kb/s            GB/ms
00:47:01              N/A              N/A
00:47:03       0.00000000       0.00000000
00:47:05       0.00000000       0.00000000
00:47:07       0.00000000       0.00000000
00:47:09       0.00000000       0.00000000
          m.u.used  n.i.speed
                      enp0s25
             GB/ms      GB/hr
14:39:13       N/A  2746624.0
14:39:14     0.000  2746624.0
14:39:15       N/A  2746624.0
14:39:16     0.000  2746624.0
14:39:17     0.000  2746624.0
== exercise compact metricset specification and overrides
                 mem free         mem-used
                       MB               GB
00:47:01               37             5.79
00:47:03               37             5.79
00:47:05               37             5.79
00:47:07               37             5.79
00:47:09               37             5.79
== exercise forced override options
         m.u.used
               MB
         5926.414
         m.u.used
               MB
         5926.414
         m.u.used
               MB
         5926.414
         m.u.used
               MB
         5926.414
  d.d.read
       sda
   count/s
       N/A
       0.0
  d.d.read
       sda
   count/s
       N/A
       0.0
  d.d.read
       sda
   count/s
       N/A
       0.0
  d.d.read
       sda
   count/s
       N/A
       0.0
  d.d.read
       sda
     count
  57062162
  57062162
  d.d.read
       sda
     count
  57062162
  57062162
  d.d.read
       sda
     count
  57062162
  57062162
  d.d.read
       sda
     count
  57062162
  57062162
  d.d.read
       sda
   count/s
       N/A
     0.000
  m.u.used
        MB
  5926.414
  m.u.used
        MB
  5926.414
== derived metrics configuration file
Failed to load derived metric definitions from file ...:
No such file or directory.
  s.combo
      s/s
      N/A
      N/A
    1.001
    1.001
    1.001
== derived metrics directly on command line
  s.combo
      s/s
      N/A
      N/A
    1.001
    1.001
    1.001
== derived metrics definition files on command line
No output expected.
== derived metrics in pmrep.conf
No output expected.
No output expected.
No output expected.
== derived metrics v. instance profiles
      4500       100       200       300       400       500       600       700       800       900
      4500
== extended existing sample configuration
  s.combo  s.seconds  s.milliseconds
      s/s        s/s            ms/s
      N/A        N/A             N/A
      N/A        N/A             N/A
    1.001      1.000        1000.033
    1.001      1.000        1000.001
    1.001      1.000        1000.016
== exercise good config version
  s.seconds  s.milliseconds
        s/s            ms/s
        N/A             N/A
        N/A             N/A
      1.000        1000.033
      1.000        1000.001
      1.000        1000.016
== exercise bad config version
Incompatible configuration file version (read v99, need v1).
== un/interpolated archive mode reporting
          m.u.free
             Kbyte
00:47:01     38220
00:47:03     38220
00:47:05     38220
00:47:07     38220
00:47:09     38220
          m.u.free
             Kbyte
00:48:01     36832
00:49:01     38236
00:50:01     37932
00:51:01     37836
00:52:01     38744
== un/interpolated archive mode reporting with endtime
          m.u.free
             Kbyte
00:47:01     38220
00:47:21     38220
00:47:41     38220
00:48:01     36832
00:48:21     36832
00:48:41     36832
00:49:01     38236
00:49:21     38236
00:49:41     38236
          m.u.free
             Kbyte
00:48:01     36832
00:49:01     38236
== time alignment with archive/host
          m.u.free
             Kbyte
00:48:00     38220
00:48:02     36832
00:48:04     36832
00:48:06     36832
00:48:08     36832
        Xs.l.one
        X       
ALIGN_OK_X      1
ALIGN_OK_X      1
== basic string value reporting
  p.version
           
PCP_VERSION
== divide-by-zero error handling
  fail
      
   inf
== user-requested instance handling
No matching instances found.

Requested global instances:
['wrong']
  m.u.free
     Kbyte
     38220
  m.u.free
     Kbyte
     38220
  d.d.read
       sda
   count/s
       N/A
  d.d.read
       sda
   count/s
       N/A
  d.d.read  k.a.load  k.a.load
       sda  1 minute  5 minute
   count/s                    
       N/A     0.820     0.700
          k.a.load
          1 minute
                  
             0.820
  k.a.load  k.a.load
  1 minute  5 minute
                    
     0.820     0.700
  d.d.read
       sda
   count/s
       N/A
          d.d.read
               sda
           count/s
               N/A
  d.d.read  d.d.read
       sda       sdb
   count/s   count/s
       N/A       N/A
          d.d.read          d.d.read
               sda               sdb
           count/s           count/s
               N/A               N/A
  k.a.sysfork              free              load              load              read
                                         1 minute          5 minute               sda
      count/s             Kbyte                                               count/s
          N/A             38220             0.820             0.700               N/A
  d.d.read  d.d.read  d.d.read  d.d.read  d.d.read  d.d.read
       sda       sdb       sdc       hdc       sdd       sde
   count/s   count/s   count/s   count/s   count/s   count/s
       N/A       N/A       N/A       N/A       N/A       N/A
  d.d.read
       sda
   count/s
       N/A
      read      read      read      read      read
       sda       sdb       sdc       sdd       sde
   count/s   count/s   count/s   count/s   count/s
       N/A       N/A       N/A       N/A       N/A
| sd.* | sd.* | sd.* | sd.* | sd.* 
|   sda|   sdb|   sdc|   sdd|   sde
|count/|count/|count/|count/|count/
|   N/A|   N/A|   N/A|   N/A|   N/A
=== more instance handling
No matching instances found.

Requested global instances:
['xxx', 'yyy', 'zzz']
No matching instances found.

Requested global instances:
['sda', 'sdc']
No matching instances found.

Requested global instances:
['sda']
   l2   l3
  sda  sda
  cou  cou
  N/A  N/A
  d.d.read
       sda
   count/s
       N/A
  d.d.read
       sda
   count/s
       N/A
  label
    sda
  count
    N/A
== test ignoring and omitting metrics
pmrep: Impossible value or scale conversion
  m.u.used  m.u.free  m.u.shared  m.u.bufmem  m.u.cached  m.u.other  m.u.swapCached  m.u.active  m.u.inactive  m.u.highTotal  m.u.highFree  m.u.lowTotal  m.u.lowFree  m.u.swapTotal  m.u.swapFree  m.u.dirty  m.u.writeback  m.u.mapped  m.u.slab  m.u.committed_AS  m.u.pageTables  m.u.reverseMaps  m.u.cache_clean  m.u.anonpages  m.u.commitLimit  m.u.bounce  m.u.NFS_Unstable  m.u.slabReclaimable  m.u.slabUnreclaimable  m.u.active_anon  m.u.inactive_anon  m.u.active_file  m.u.inactive_file  m.u.unevictable  m.u.mlocked  m.u.shmem  m.u.kernelStack  m.u.directMap4k  m.u.directMap2M  m.u.vmallocTotal  m.u.vmallocUsed  m.u.vmallocChunk  m.u.mmap_copy  m.u.quicklists  m.u.corrupthardware  m.u.anonhugepages
  m.u.free  d.d.avactive  d.d.read  d.d.write  d.d.total  d.d.read_bytes  d.d.write_bytes  m.u.used  m.u.shared  m.u.bufmem  m.u.cached  m.u.other  m.u.swapCached  m.u.active  m.u.inactive  m.u.highTotal  m.u.highFree  m.u.lowTotal  m.u.lowFree  m.u.swapTotal  m.u.swapFree  m.u.dirty  m.u.writeback  m.u.mapped  m.u.slab  m.u.committed_AS  m.u.pageTables  m.u.reverseMaps  m.u.cache_clean  m.u.anonpages  m.u.commitLimit  m.u.bounce  m.u.NFS_Unstable  m.u.slabReclaimable  m.u.slabUnreclaimable  m.u.active_anon  m.u.inactive_anon  m.u.active_file  m.u.inactive_file  m.u.unevictable  m.u.mlocked  m.u.shmem  m.u.kernelStack  m.u.hugepagesTotal  m.u.hugepagesFree  m.u.hugepagesRsvd  m.u.hugepagesSurp  m.u.directMap4k  m.u.directMap2M  m.u.vmallocTotal  m.u.vmallocUsed  m.u.vmallocChunk  m.u.mmap_copy  m.u.quicklists  m.u.corrupthardware  m.u.anonhugepages
                     sda       sda        sda        sda             sda              sda                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
     Kbyte          ms/s   count/s    count/s    count/s         Kbyte/s          Kbyte/s     Kbyte       Kbyte       Kbyte       Kbyte      Kbyte           Kbyte       Kbyte         Kbyte          Kbyte         Kbyte         Kbyte        Kbyte          Kbyte         Kbyte      Kbyte          Kbyte       Kbyte     Kbyte             Kbyte           Kbyte            Kbyte            Kbyte          Kbyte            Kbyte       Kbyte             Kbyte                Kbyte                  Kbyte            Kbyte              Kbyte            Kbyte              Kbyte            Kbyte        Kbyte      Kbyte            Kbyte               count              count              count              count            Kbyte            Kbyte             Kbyte            Kbyte             Kbyte          Kbyte           Kbyte                Kbyte              Kbyte
  d.d.avactive  d.d.read  d.d.write  d.d.total  d.d.read_bytes  d.d.write_bytes
           sda       sda        sda        sda             sda              sda
          ms/s   count/s    count/s    count/s         Kbyte/s          Kbyte/s
== output value truncation
  h.m
     
  lin
  m.u
  Kby
  xxx
== handle empty/invalid/multiple metricsets in config file
Invalid metric yes (PM_ERR_NAME Unknown metric name).
Unknown option mem.util.free in [options].
No metrics specified.

  archive: QAPATH/archives/20130706
     host: billing02
 timezone: UTC+10
    start: Sat Jul  6 00:47:01 2013
      end: Sun Jul  7 00:15:43 2013
  metrics: 1 (1 instance)
  samples: 1
 interval: 3.0 sec
 duration: 00:00:00


  archive: QAPATH/archives/20130706
     host: billing02
 timezone: UTC+10
    start: Sat Jul  6 00:47:01 2013
      end: Sun Jul  7 00:15:43 2013
  metrics: 1 (1 instance)
  samples: 1
 interval: 3.0 sec
 duration: 00:00:00


  archive: QAPATH/archives/20130706
     host: billing02
 timezone: UTC+10
    start: Sat Jul  6 00:47:01 2013
      end: Sun Jul  7 00:15:43 2013
  metrics: 1 (1 instance)
  samples: 1
 interval: 2.0 sec
 duration: 00:00:00

== handle options/global/metricset section corner cases / issues
Unknown option mem.util.free in [options].
   test   freemem
            Kbyte
  yes  freemem
         Kbyte

  archive: QAPATH/archives/20130706
     host: billing02
 timezone: UTC+10
    start: Sat Jul  6 00:47:01 2013
      end: Sun Jul  7 00:15:43 2013
  metrics: 1 (1 instance)
  samples: 1
 interval: 2.0 sec
 duration: 00:00:00

  m.u.used
     Kbyte
No options allowed in [global] section.
No metrics specified.

  archive: QAPATH/archives/20130706
     host: billing02
 timezone: UTC+10
    start: Sat Jul  6 00:47:01 2013
      end: Sun Jul  7 00:15:43 2013
  metrics: 1 (1 instance)
  samples: 1
 interval: 2.0 sec
 duration: 00:00:00

  freemem
    Kbyte

  archive: QAPATH/archives/20130706
     host: billing02
 timezone: UTC+10
    start: Sat Jul  6 00:47:01 2013
      end: Sun Jul  7 00:15:43 2013
  metrics: 2 (2 instances)
  samples: 1
 interval: 2.0 sec
 duration: 00:00:00

  freemem  usedmem
    Kbyte    Kbyte

  archive: QAPATH/archives/20130706
     host: billing02
 timezone: UTC+10
    start: Sat Jul  6 00:47:01 2013
      end: Sun Jul  7 00:15:43 2013
  metrics: 1 (1 instance)
  samples: 1
 interval: 2.0 sec
 duration: 00:00:00

  usedmem
    Kbyte

  archive: QAPATH/archives/20130706
     host: billing02
 timezone: UTC+10
    start: Sat Jul  6 00:47:01 2013
      end: Sun Jul  7 00:15:43 2013
  metrics: 2 (2 instances)
  samples: 1
 interval: 2.0 sec
 duration: 00:00:00

  freemem  usedmem
    Kbyte    Kbyte
== handle same labels
          %usr          %usr          %usr
                        cpu0          cpu1
      millisec      millisec      millisec
    4998314520    2062490350    2935824170
    4998332000    2062491170    2935840820
  test          %usr
            millisec
     =    4998314520
  cpu0    2062490350
  cpu1    2935824170
     =    4998332000
  cpu0    2062491170
  cpu1    2935840820
== exercise option priority
          m.u.free
             Kbyte
00:47:01     38220
00:47:02     38220
00:47:03     38220
00:47:04     38220
00:47:05     38220
---
          m.u.free
00:47:01     38220
00:47:03     38220
00:47:05     38220
00:47:07     38220
00:47:09     38220
---
00:47:01     38220
00:47:04     38220
00:47:07     38220
00:47:10     38220
00:47:13     38220
---
            uptime
               sec
14:39:13    507689
14:39:14    507690
14:39:15    507691
14:39:16    507692
14:39:17    507693
---
            uptime
               sec
00:48:01  24924286
00:49:01  24924346
00:50:01  24924406
00:51:01  24924466
00:52:01  24924526
---
               one
                  
HH:MM:SS         1
---
               one
                  
HH:MM:SS         1
---
          freemem
00:47:01    38220
00:47:03    38220
00:47:05    38220
== exercise signal handling
  s.l.one
         
        1
        1
== done