-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathmetrics-parent-4.2.1.diffoscope
1590 lines (1182 loc) · 78.2 KB
/
metrics-parent-4.2.1.diffoscope
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
target/reference/metrics-annotation-4.2.1.jar metrics-annotation/target/metrics-annotation-4.2.1.jar
--- target/reference/metrics-annotation-4.2.1.jar
+++ metrics-annotation/target/metrics-annotation-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 7210 bytes, number of entries: 19
│ +Zip file size: 7209 bytes, number of entries: 19
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 887 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 883 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-annotation/
│ -rw---- 2.0 fat 74 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-annotation/pom.properties
│ -rw---- 2.0 fat 811 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-annotation/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -14,8 +14,8 @@
│ -rw---- 2.0 fat 670 bl defN 80-Feb-01 00:00 com/codahale/metrics/annotation/Counted.class
│ -rw---- 2.0 fat 887 bl defN 80-Feb-01 00:00 com/codahale/metrics/annotation/ExceptionMetered.class
│ -rw---- 2.0 fat 540 bl defN 80-Feb-01 00:00 com/codahale/metrics/annotation/Gauge.class
│ -rw---- 2.0 fat 641 bl defN 80-Feb-01 00:00 com/codahale/metrics/annotation/Metered.class
│ -rw---- 2.0 fat 559 bl defN 80-Feb-01 00:00 com/codahale/metrics/annotation/Metric.class
│ -rw---- 2.0 fat 657 bl defN 80-Feb-01 00:00 com/codahale/metrics/annotation/ResponseMetered.class
│ -rw---- 2.0 fat 637 bl defN 80-Feb-01 00:00 com/codahale/metrics/annotation/Timed.class
│ -19 files, 7044 bytes uncompressed, 4000 bytes compressed: 43.2%
│ +19 files, 7040 bytes uncompressed, 3999 bytes compressed: 43.2%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.annotation
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: A dependency-less package of just the annotations
│ used by other Metrics modules.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Annotations for Metrics
│ Bundle-SymbolicName: io.dropwizard.metrics.annotation
│ Bundle-Version: 4.2.1
target/reference/metrics-core-4.2.1.jar metrics-core/target/metrics-core-4.2.1.jar
--- target/reference/metrics-core-4.2.1.jar
+++ metrics-core/target/metrics-core-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 126097 bytes, number of entries: 114
│ +Zip file size: 126096 bytes, number of entries: 114
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1054 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1050 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-core/
│ -rw---- 2.0 fat 68 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-core/pom.properties
│ -rw---- 2.0 fat 1942 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-core/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -109,8 +109,8 @@
│ -rw---- 2.0 fat 1053 bl defN 80-Feb-01 00:00 com/codahale/metrics/Snapshot.class
│ -rw---- 2.0 fat 1075 bl defN 80-Feb-01 00:00 com/codahale/metrics/Timer$Context.class
│ -rw---- 2.0 fat 4209 bl defN 80-Feb-01 00:00 com/codahale/metrics/Timer.class
│ -rw---- 2.0 fat 1819 bl defN 80-Feb-01 00:00 com/codahale/metrics/UniformReservoir.class
│ -rw---- 2.0 fat 3607 bl defN 80-Feb-01 00:00 com/codahale/metrics/UniformSnapshot.class
│ -rw---- 2.0 fat 547 bl defN 80-Feb-01 00:00 com/codahale/metrics/WeightedSnapshot$WeightedSample.class
│ -rw---- 2.0 fat 4854 bl defN 80-Feb-01 00:00 com/codahale/metrics/WeightedSnapshot.class
│ -114 files, 256561 bytes uncompressed, 104469 bytes compressed: 59.3%
│ +114 files, 256557 bytes uncompressed, 104468 bytes compressed: 59.3%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: Metrics is a Java library which gives you unparall
│ eled insight into what your code does in production. Metrics p
│ rovides a powerful toolkit of ways to measure the behavior of critica
│ l components in your production environment.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Core
target/reference/metrics-caffeine-4.2.1.jar metrics-caffeine/target/metrics-caffeine-4.2.1.jar
--- target/reference/metrics-caffeine-4.2.1.jar
+++ metrics-caffeine/target/metrics-caffeine-4.2.1.jar
├── zipinfo {}
│ @@ -1,14 +1,14 @@
│ -Zip file size: 4968 bytes, number of entries: 12
│ +Zip file size: 4967 bytes, number of entries: 12
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1244 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1240 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-caffeine/
│ -rw---- 2.0 fat 72 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-caffeine/pom.properties
│ -rw---- 2.0 fat 2546 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-caffeine/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/metrics/caffeine/
│ -rw---- 2.0 fat 4273 bl defN 80-Feb-01 00:00 com/codahale/metrics/caffeine/MetricsStatsCounter.class
│ -12 files, 8135 bytes uncompressed, 3060 bytes compressed: 62.4%
│ +12 files, 8131 bytes uncompressed, 3059 bytes compressed: 62.4%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.caffeine
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: Metrics Integration for Caffeine 2.x.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for Caffeine 2.x
│ Bundle-SymbolicName: io.dropwizard.metrics.caffeine
│ Bundle-Version: 4.2.1
│ Created-By: Apache Maven Bundle Plugin
target/reference/metrics-caffeine3-4.2.1.jar metrics-caffeine3/target/metrics-caffeine3-4.2.1.jar
--- target/reference/metrics-caffeine3-4.2.1.jar
+++ metrics-caffeine3/target/metrics-caffeine3-4.2.1.jar
├── zipinfo {}
│ @@ -1,14 +1,14 @@
│ -Zip file size: 5211 bytes, number of entries: 12
│ +Zip file size: 5210 bytes, number of entries: 12
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1252 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1248 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-caffeine3/
│ -rw---- 2.0 fat 73 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-caffeine3/pom.properties
│ -rw---- 2.0 fat 2500 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-caffeine3/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/dropwizard/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/caffeine3/
│ -rw---- 2.0 fat 4786 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/caffeine3/MetricsStatsCounter.class
│ -12 files, 8611 bytes uncompressed, 3287 bytes compressed: 61.8%
│ +12 files, 8607 bytes uncompressed, 3286 bytes compressed: 61.8%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: io.dropwizard.metrics.caffeine3
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: Metrics Integration for Caffeine 3.x.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for Caffeine 3.x
│ Bundle-SymbolicName: io.dropwizard.metrics.caffeine3
│ Bundle-Version: 4.2.1
│ Created-By: Apache Maven Bundle Plugin
target/reference/metrics-collectd-4.2.1.jar metrics-collectd/target/metrics-collectd-4.2.1.jar
--- target/reference/metrics-collectd-4.2.1.jar
+++ metrics-collectd/target/metrics-collectd-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 21977 bytes, number of entries: 23
│ +Zip file size: 21976 bytes, number of entries: 23
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1035 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1031 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-collectd/
│ -rw---- 2.0 fat 72 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-collectd/pom.properties
│ -rw---- 2.0 fat 2034 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-collectd/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -18,8 +18,8 @@
│ -rw---- 2.0 fat 830 bl defN 80-Feb-01 00:00 com/codahale/metrics/collectd/PacketWriter$1.class
│ -rw---- 2.0 fat 1206 bl defN 80-Feb-01 00:00 com/codahale/metrics/collectd/PacketWriter$EncryptionResult.class
│ -rw---- 2.0 fat 9380 bl defN 80-Feb-01 00:00 com/codahale/metrics/collectd/PacketWriter.class
│ -rw---- 2.0 fat 2174 bl defN 80-Feb-01 00:00 com/codahale/metrics/collectd/Sanitize.class
│ -rw---- 2.0 fat 1088 bl defN 80-Feb-01 00:00 com/codahale/metrics/collectd/SecurityConfiguration.class
│ -rw---- 2.0 fat 1131 bl defN 80-Feb-01 00:00 com/codahale/metrics/collectd/SecurityLevel.class
│ -rw---- 2.0 fat 1661 bl defN 80-Feb-01 00:00 com/codahale/metrics/collectd/Sender.class
│ -23 files, 43684 bytes uncompressed, 17933 bytes compressed: 58.9%
│ +23 files, 43680 bytes uncompressed, 17932 bytes compressed: 58.9%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.collectd
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: A reporter for Metrics which announces measurement
│ s to Collectd.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for Collectd
│ Bundle-SymbolicName: io.dropwizard.metrics.collectd
│ Bundle-Version: 4.2.1
target/reference/metrics-ehcache-4.2.1.jar metrics-ehcache/target/metrics-ehcache-4.2.1.jar
--- target/reference/metrics-ehcache-4.2.1.jar
+++ metrics-ehcache/target/metrics-ehcache-4.2.1.jar
├── zipinfo {}
│ @@ -1,15 +1,15 @@
│ -Zip file size: 6878 bytes, number of entries: 13
│ +Zip file size: 6877 bytes, number of entries: 13
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1187 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1183 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-ehcache/
│ -rw---- 2.0 fat 71 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-ehcache/pom.properties
│ -rw---- 2.0 fat 2481 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-ehcache/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/metrics/ehcache/
│ -rw---- 2.0 fat 1362 bl defN 80-Feb-01 00:00 com/codahale/metrics/ehcache/InstrumentedCacheDecoratorFactory.class
│ -rw---- 2.0 fat 8284 bl defN 80-Feb-01 00:00 com/codahale/metrics/ehcache/InstrumentedEhcache.class
│ -13 files, 13385 bytes uncompressed, 4752 bytes compressed: 64.5%
│ +13 files, 13381 bytes uncompressed, 4751 bytes compressed: 64.5%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.ehcache
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: An Ehcache wrapper providing Metrics instrumentati
│ on of caches.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for Ehcache
│ Bundle-SymbolicName: io.dropwizard.metrics.ehcache
│ Bundle-Version: 4.2.1
target/reference/metrics-graphite-4.2.1.jar metrics-graphite/target/metrics-graphite-4.2.1.jar
--- target/reference/metrics-graphite-4.2.1.jar
+++ metrics-graphite/target/metrics-graphite-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 23293 bytes, number of entries: 22
│ +Zip file size: 23292 bytes, number of entries: 22
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1092 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1088 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-graphite/
│ -rw---- 2.0 fat 72 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-graphite/pom.properties
│ -rw---- 2.0 fat 3008 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-graphite/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -17,8 +17,8 @@
│ -rw---- 2.0 fat 4800 bl defN 80-Feb-01 00:00 com/codahale/metrics/graphite/GraphiteReporter$Builder.class
│ -rw---- 2.0 fat 14540 bl defN 80-Feb-01 00:00 com/codahale/metrics/graphite/GraphiteReporter.class
│ -rw---- 2.0 fat 946 bl defN 80-Feb-01 00:00 com/codahale/metrics/graphite/GraphiteSanitize.class
│ -rw---- 2.0 fat 425 bl defN 80-Feb-01 00:00 com/codahale/metrics/graphite/GraphiteSender.class
│ -rw---- 2.0 fat 3551 bl defN 80-Feb-01 00:00 com/codahale/metrics/graphite/GraphiteUDP.class
│ -rw---- 2.0 fat 661 bl defN 80-Feb-01 00:00 com/codahale/metrics/graphite/PickledGraphite$MetricTuple.class
│ -rw---- 2.0 fat 7244 bl defN 80-Feb-01 00:00 com/codahale/metrics/graphite/PickledGraphite.class
│ -22 files, 47581 bytes uncompressed, 19417 bytes compressed: 59.2%
│ +22 files, 47577 bytes uncompressed, 19416 bytes compressed: 59.2%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.graphite
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: A reporter for Metrics which announces measurement
│ s to a Graphite server.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Graphite Integration for Metrics
│ Bundle-SymbolicName: io.dropwizard.metrics.graphite
│ Bundle-Version: 4.2.1
target/reference/metrics-jvm-4.2.1.jar metrics-jvm/target/metrics-jvm-4.2.1.jar
--- target/reference/metrics-jvm-4.2.1.jar
+++ metrics-jvm/target/metrics-jvm-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 24199 bytes, number of entries: 27
│ +Zip file size: 24198 bytes, number of entries: 27
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1093 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1089 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jvm/
│ -rw---- 2.0 fat 67 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jvm/pom.properties
│ -rw---- 2.0 fat 2196 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jvm/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -22,8 +22,8 @@
│ -rw---- 2.0 fat 1259 bl defN 80-Feb-01 00:00 com/codahale/metrics/jvm/MemoryUsageGaugeSet$1.class
│ -rw---- 2.0 fat 1262 bl defN 80-Feb-01 00:00 com/codahale/metrics/jvm/MemoryUsageGaugeSet$2.class
│ -rw---- 2.0 fat 1370 bl defN 80-Feb-01 00:00 com/codahale/metrics/jvm/MemoryUsageGaugeSet$3.class
│ -rw---- 2.0 fat 7303 bl defN 80-Feb-01 00:00 com/codahale/metrics/jvm/MemoryUsageGaugeSet.class
│ -rw---- 2.0 fat 2493 bl defN 80-Feb-01 00:00 com/codahale/metrics/jvm/ThreadDeadlockDetector.class
│ -rw---- 2.0 fat 4030 bl defN 80-Feb-01 00:00 com/codahale/metrics/jvm/ThreadDump.class
│ -rw---- 2.0 fat 4662 bl defN 80-Feb-01 00:00 com/codahale/metrics/jvm/ThreadStatesGaugeSet.class
│ -27 files, 44444 bytes uncompressed, 19419 bytes compressed: 56.3%
│ +27 files, 44440 bytes uncompressed, 19418 bytes compressed: 56.3%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.jvm
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: A set of classes which allow you to monitor critic
│ al aspects of your Java Virtual Machine using Metrics.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: JVM Integration for Metrics
│ Bundle-SymbolicName: io.dropwizard.metrics.jvm
│ Bundle-Version: 4.2.1
target/reference/metrics-healthchecks-4.2.1.jar metrics-healthchecks/target/metrics-healthchecks-4.2.1.jar
--- target/reference/metrics-healthchecks-4.2.1.jar
+++ metrics-healthchecks/target/metrics-healthchecks-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 22841 bytes, number of entries: 27
│ +Zip file size: 22840 bytes, number of entries: 27
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1465 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1461 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-healthchecks/
│ -rw---- 2.0 fat 76 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-healthchecks/pom.properties
│ -rw---- 2.0 fat 2435 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-healthchecks/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -22,8 +22,8 @@
│ -rw---- 2.0 fat 3166 bl defN 80-Feb-01 00:00 com/codahale/metrics/health/SharedHealthCheckRegistries.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/metrics/health/annotation/
│ -rw---- 2.0 fat 1253 bl defN 80-Feb-01 00:00 com/codahale/metrics/health/annotation/Async$InitialState.class
│ -rw---- 2.0 fat 1258 bl defN 80-Feb-01 00:00 com/codahale/metrics/health/annotation/Async$ScheduleType.class
│ -rw---- 2.0 fat 1167 bl defN 80-Feb-01 00:00 com/codahale/metrics/health/annotation/Async.class
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/metrics/health/jvm/
│ -rw---- 2.0 fat 1410 bl defN 80-Feb-01 00:00 com/codahale/metrics/health/jvm/ThreadDeadlockHealthCheck.class
│ -27 files, 44071 bytes uncompressed, 17903 bytes compressed: 59.4%
│ +27 files, 44067 bytes uncompressed, 17902 bytes compressed: 59.4%
├── META-INF/MANIFEST.MF
│ @@ -1,30 +1,30 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.health
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: An addition to Metrics which provides the ability
│ to run application-specific health checks, allowing you to che
│ ck your application's heath in production.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Health Checks
│ Bundle-SymbolicName: io.dropwizard.metrics.healthchecks
│ Bundle-Version: 4.2.1
│ Created-By: Apache Maven Bundle Plugin
│ -Export-Package: com.codahale.metrics.health;uses:="com.codahale.metric
│ - s";version="4.2.1",com.codahale.metrics.health.jvm;uses:="com.codahal
│ - e.metrics.health,com.codahale.metrics.jvm";version="4.2.1",com.codaha
│ - le.metrics.health.annotation;version="4.2.1"
│ +Export-Package: com.codahale.metrics.health.annotation;version="4.2.1"
│ + ,com.codahale.metrics.health;uses:="com.codahale.metrics";version="4.
│ + 2.1",com.codahale.metrics.health.jvm;uses:="com.codahale.metrics.heal
│ + th,com.codahale.metrics.jvm";version="4.2.1"
│ Implementation-Title: Metrics Health Checks
│ Implementation-URL: https://metrics.dropwizard.io/metrics-healthchecks
│ Implementation-Vendor-Id: io.dropwizard.metrics
│ Implementation-Version: 4.2.1
│ Import-Package: org.slf4j;version="[1.6.0,2.0.0)",com.codahale.metrics
│ ;version="[4.2,5)",com.codahale.metrics.health,com.codahale.metrics.h
│ ealth.annotation,com.codahale.metrics.jvm;version="[4.2,5)";resolutio
│ n:=optional
│ -Private-Package: com.codahale.metrics.health,com.codahale.metrics.heal
│ - th.jvm,com.codahale.metrics.health.annotation
│ +Private-Package: com.codahale.metrics.health.annotation,com.codahale.m
│ + etrics.health,com.codahale.metrics.health.jvm
│ Require-Capability: osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))"
│ Tool: Bnd-5.1.1.202006162103
target/reference/metrics-httpclient-4.2.1.jar metrics-httpclient/target/metrics-httpclient-4.2.1.jar
--- target/reference/metrics-httpclient-4.2.1.jar
+++ metrics-httpclient/target/metrics-httpclient-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 12014 bytes, number of entries: 17
│ +Zip file size: 12013 bytes, number of entries: 17
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1628 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1624 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-httpclient/
│ -rw---- 2.0 fat 74 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-httpclient/pom.properties
│ -rw---- 2.0 fat 2911 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-httpclient/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -12,8 +12,8 @@
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient/
│ -rw---- 2.0 fat 3648 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient/HttpClientMetricNameStrategies.class
│ -rw---- 2.0 fat 970 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient/HttpClientMetricNameStrategy.class
│ -rw---- 2.0 fat 4606 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient/InstrumentedHttpClientConnectionManager$Builder.class
│ -rw---- 2.0 fat 7417 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient/InstrumentedHttpClientConnectionManager.class
│ -rw---- 2.0 fat 2509 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient/InstrumentedHttpClients.class
│ -rw---- 2.0 fat 3168 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient/InstrumentedHttpRequestExecutor.class
│ -17 files, 26931 bytes uncompressed, 8888 bytes compressed: 67.0%
│ +17 files, 26927 bytes uncompressed, 8887 bytes compressed: 67.0%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.httpclient
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: An Apache HttpClient wrapper providing Metrics ins
│ trumentation of connection pools, request durations and rates,
│ and other useful information.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for Apache HttpClient
│ Bundle-SymbolicName: io.dropwizard.metrics.httpclient
target/reference/metrics-httpclient5-4.2.1.jar metrics-httpclient5/target/metrics-httpclient5-4.2.1.jar
--- target/reference/metrics-httpclient5-4.2.1.jar
+++ metrics-httpclient5/target/metrics-httpclient5-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 19514 bytes, number of entries: 22
│ +Zip file size: 19513 bytes, number of entries: 22
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 2458 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 2454 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-httpclient5/
│ -rw---- 2.0 fat 75 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-httpclient5/pom.properties
│ -rw---- 2.0 fat 3184 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-httpclient5/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -17,8 +17,8 @@
│ -rw---- 2.0 fat 3273 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient5/InstrumentedAsyncExecChainHandler$InstrumentedAsyncExecCallback.class
│ -rw---- 2.0 fat 3008 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient5/InstrumentedAsyncExecChainHandler.class
│ -rw---- 2.0 fat 3342 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient5/InstrumentedHttpAsyncClients.class
│ -rw---- 2.0 fat 5314 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient5/InstrumentedHttpClientConnectionManager$Builder.class
│ -rw---- 2.0 fat 6015 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient5/InstrumentedHttpClientConnectionManager.class
│ -rw---- 2.0 fat 2646 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient5/InstrumentedHttpClients.class
│ -rw---- 2.0 fat 4392 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpclient5/InstrumentedHttpRequestExecutor.class
│ -22 files, 47598 bytes uncompressed, 15094 bytes compressed: 68.3%
│ +22 files, 47594 bytes uncompressed, 15093 bytes compressed: 68.3%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.httpclient
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: An Apache HttpClient 5.x wrapper providing Metrics
│ instrumentation of connection pools, request durations and ra
│ tes, and other useful information.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for Apache HttpClient 5.x
│ Bundle-SymbolicName: io.dropwizard.metrics.httpclient5
target/reference/metrics-httpasyncclient-4.2.1.jar metrics-httpasyncclient/target/metrics-httpasyncclient-4.2.1.jar
--- target/reference/metrics-httpasyncclient-4.2.1.jar
+++ metrics-httpasyncclient/target/metrics-httpasyncclient-4.2.1.jar
├── zipinfo {}
│ @@ -1,17 +1,17 @@
│ Zip file size: 8551 bytes, number of entries: 15
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1668 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1664 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-httpasyncclient/
│ -rw---- 2.0 fat 79 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-httpasyncclient/pom.properties
│ -rw---- 2.0 fat 3647 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-httpasyncclient/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpasyncclient/
│ -rw---- 2.0 fat 4039 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpasyncclient/InstrumentedNClientConnManager.class
│ -rw---- 2.0 fat 3426 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpasyncclient/InstrumentedNHttpClientBuilder$1.class
│ -rw---- 2.0 fat 2586 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpasyncclient/InstrumentedNHttpClientBuilder$TimingFutureCallback.class
│ -rw---- 2.0 fat 2708 bl defN 80-Feb-01 00:00 com/codahale/metrics/httpasyncclient/InstrumentedNHttpClientBuilder.class
│ -15 files, 18153 bytes uncompressed, 5791 bytes compressed: 68.1%
│ +15 files, 18149 bytes uncompressed, 5791 bytes compressed: 68.1%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.httpasyncclient
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: An Apache HttpAsyncClient wrapper providing Metric
│ s instrumentation of connection pools, request durations and r
│ ates, and other useful information.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for Apache HttpAsyncClient
│ Bundle-SymbolicName: io.dropwizard.metrics.httpasyncclient
target/reference/metrics-jakarta-servlet-4.2.1.jar metrics-jakarta-servlet/target/metrics-jakarta-servlet-4.2.1.jar
--- target/reference/metrics-jakarta-servlet-4.2.1.jar
+++ metrics-jakarta-servlet/target/metrics-jakarta-servlet-4.2.1.jar
├── zipinfo {}
│ @@ -1,18 +1,18 @@
│ -Zip file size: 10013 bytes, number of entries: 16
│ +Zip file size: 10012 bytes, number of entries: 16
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1073 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1069 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jakarta-servlet/
│ -rw---- 2.0 fat 79 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jakarta-servlet/pom.properties
│ -rw---- 2.0 fat 1979 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jakarta-servlet/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/dropwizard/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlet/
│ -rw---- 2.0 fat 2337 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlet/AbstractInstrumentedFilter$AsyncResultListener.class
│ -rw---- 2.0 fat 1370 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlet/AbstractInstrumentedFilter$StatusExposingServletResponse.class
│ -rw---- 2.0 fat 6932 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlet/AbstractInstrumentedFilter.class
│ -rw---- 2.0 fat 1918 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlet/InstrumentedFilter.class
│ -rw---- 2.0 fat 1110 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlet/InstrumentedFilterContextListener.class
│ -16 files, 16798 bytes uncompressed, 7085 bytes compressed: 57.8%
│ +16 files, 16794 bytes uncompressed, 7084 bytes compressed: 57.8%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: io.dropwizard.metrics.servlet
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: An instrumented filter for servlet environments.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for Jakarta Servlets
│ Bundle-SymbolicName: io.dropwizard.metrics.jakarta-servlet
│ Bundle-Version: 4.2.1
│ Created-By: Apache Maven Bundle Plugin
target/reference/metrics-json-4.2.1.jar metrics-json/target/metrics-json-4.2.1.jar
--- target/reference/metrics-json-4.2.1.jar
+++ metrics-json/target/metrics-json-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ Zip file size: 16707 bytes, number of entries: 22
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1365 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1361 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-json/
│ -rw---- 2.0 fat 68 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-json/pom.properties
│ -rw---- 2.0 fat 2869 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-json/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -17,8 +17,8 @@
│ -rw---- 2.0 fat 1820 bl defN 80-Feb-01 00:00 com/codahale/metrics/json/MetricsModule$CounterSerializer.class
│ -rw---- 2.0 fat 2076 bl defN 80-Feb-01 00:00 com/codahale/metrics/json/MetricsModule$GaugeSerializer.class
│ -rw---- 2.0 fat 2782 bl defN 80-Feb-01 00:00 com/codahale/metrics/json/MetricsModule$HistogramSerializer.class
│ -rw---- 2.0 fat 2317 bl defN 80-Feb-01 00:00 com/codahale/metrics/json/MetricsModule$MeterSerializer.class
│ -rw---- 2.0 fat 2587 bl defN 80-Feb-01 00:00 com/codahale/metrics/json/MetricsModule$MetricRegistrySerializer.class
│ -rw---- 2.0 fat 4205 bl defN 80-Feb-01 00:00 com/codahale/metrics/json/MetricsModule$TimerSerializer.class
│ -rw---- 2.0 fat 3977 bl defN 80-Feb-01 00:00 com/codahale/metrics/json/MetricsModule.class
│ -22 files, 30314 bytes uncompressed, 12721 bytes compressed: 58.0%
│ +22 files, 30310 bytes uncompressed, 12721 bytes compressed: 58.0%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.json
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: A set of Jackson modules which provide serializers
│ for most Metrics classes.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Jackson Integration for Metrics
│ Bundle-SymbolicName: io.dropwizard.metrics.json
│ Bundle-Version: 4.2.1
target/reference/metrics-jetty11-4.2.1.jar metrics-jetty11/target/metrics-jetty11-4.2.1.jar
--- target/reference/metrics-jetty11-4.2.1.jar
+++ metrics-jetty11/target/metrics-jetty11-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ Zip file size: 31820 bytes, number of entries: 35
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1741 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1737 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jetty11/
│ -rw---- 2.0 fat 71 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jetty11/pom.properties
│ -rw---- 2.0 fat 3989 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jetty11/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/dropwizard/
│ @@ -30,8 +30,8 @@
│ -rw---- 2.0 fat 2827 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty11/InstrumentedHttpChannelListener$7.class
│ -rw---- 2.0 fat 1125 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty11/InstrumentedHttpChannelListener$8.class
│ -rw---- 2.0 fat 10080 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty11/InstrumentedHttpChannelListener.class
│ -rw---- 2.0 fat 1012 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty11/InstrumentedQueuedThreadPool$1.class
│ -rw---- 2.0 fat 1038 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty11/InstrumentedQueuedThreadPool$2.class
│ -rw---- 2.0 fat 1343 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty11/InstrumentedQueuedThreadPool$3.class
│ -rw---- 2.0 fat 5397 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty11/InstrumentedQueuedThreadPool.class
│ -35 files, 63177 bytes uncompressed, 24862 bytes compressed: 60.6%
│ +35 files, 63173 bytes uncompressed, 24862 bytes compressed: 60.6%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: io.dropwizard.metrics.jetty11
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: A set of extensions for Jetty 11.x and higher whic
│ h provide instrumentation of thread pools, connector metrics,
│ and application latency and utilization.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for Jetty 11.x and higher
│ Bundle-SymbolicName: io.dropwizard.metrics.jetty11
target/reference/metrics-jakarta-servlets-4.2.1.jar metrics-jakarta-servlets/target/metrics-jakarta-servlets-4.2.1.jar
--- target/reference/metrics-jakarta-servlets-4.2.1.jar
+++ metrics-jakarta-servlets/target/metrics-jakarta-servlets-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 19877 bytes, number of entries: 19
│ +Zip file size: 19876 bytes, number of entries: 19
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1519 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1515 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jakarta-servlets/
│ -rw---- 2.0 fat 80 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jakarta-servlets/pom.properties
│ -rw---- 2.0 fat 5663 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jakarta-servlets/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/dropwizard/
│ @@ -14,8 +14,8 @@
│ -rw---- 2.0 fat 3545 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlets/CpuProfileServlet.class
│ -rw---- 2.0 fat 1667 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlets/HealthCheckServlet$ContextListener.class
│ -rw---- 2.0 fat 6300 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlets/HealthCheckServlet.class
│ -rw---- 2.0 fat 2251 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlets/MetricsServlet$ContextListener.class
│ -rw---- 2.0 fat 6010 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlets/MetricsServlet.class
│ -rw---- 2.0 fat 1647 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlets/PingServlet.class
│ -rw---- 2.0 fat 2868 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/servlets/ThreadDumpServlet.class
│ -19 files, 38715 bytes uncompressed, 16485 bytes compressed: 57.4%
│ +19 files, 38711 bytes uncompressed, 16484 bytes compressed: 57.4%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: io.dropwizard.metrics.servlets
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: A set of utility servlets for Metrics, allowing yo
│ u to expose valuable information about your production environ
│ ment.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Utility Jakarta Servlets
│ Bundle-SymbolicName: io.dropwizard.metrics.jakarta-servlets
target/reference/metrics-jcache-4.2.1.jar metrics-jcache/target/metrics-jcache-4.2.1.jar
--- target/reference/metrics-jcache-4.2.1.jar
+++ metrics-jcache/target/metrics-jcache-4.2.1.jar
├── zipinfo {}
│ @@ -1,14 +1,14 @@
│ -Zip file size: 5463 bytes, number of entries: 12
│ +Zip file size: 5462 bytes, number of entries: 12
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1153 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1149 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jcache/
│ -rw---- 2.0 fat 70 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jcache/pom.properties
│ -rw---- 2.0 fat 3739 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jcache/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/metrics/jcache/
│ -rw---- 2.0 fat 4706 bl defN 80-Feb-01 00:00 com/codahale/metrics/jcache/JCacheGaugeSet.class
│ -12 files, 9668 bytes uncompressed, 3585 bytes compressed: 62.9%
│ +12 files, 9664 bytes uncompressed, 3584 bytes compressed: 62.9%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.jcache
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: Metrics Integration for JCache, JSR 107 standard f
│ or caching. Uses the CacheStatisticsMXBean provided statistics
│ .
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for JCache
│ Bundle-SymbolicName: io.dropwizard.metrics.jcache
target/reference/metrics-jdbi-4.2.1.jar metrics-jdbi/target/metrics-jdbi-4.2.1.jar
--- target/reference/metrics-jdbi-4.2.1.jar
+++ metrics-jdbi/target/metrics-jdbi-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 19534 bytes, number of entries: 31
│ +Zip file size: 19530 bytes, number of entries: 31
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1191 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1187 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jdbi/
│ -rw---- 2.0 fat 68 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jdbi/pom.properties
│ -rw---- 2.0 fat 2251 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jdbi/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -26,8 +26,8 @@
│ -rw---- 2.0 fat 2268 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi/strategies/NameStrategies.class
│ -rw---- 2.0 fat 273 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi/strategies/ShortNameStrategy$1.class
│ -rw---- 2.0 fat 2561 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi/strategies/ShortNameStrategy$ShortContextClassStrategy.class
│ -rw---- 2.0 fat 2715 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi/strategies/ShortNameStrategy$ShortSqlObjectStrategy.class
│ -rw---- 2.0 fat 1947 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi/strategies/ShortNameStrategy.class
│ -rw---- 2.0 fat 841 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi/strategies/SmartNameStrategy.class
│ -rw---- 2.0 fat 246 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi/strategies/StatementNameStrategy.class
│ -31 files, 30672 bytes uncompressed, 13338 bytes compressed: 56.5%
│ +31 files, 30668 bytes uncompressed, 13334 bytes compressed: 56.5%
├── META-INF/MANIFEST.MF
│ @@ -1,27 +1,27 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.jdbi
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: A JDBI wrapper providing Metrics instrumentation o
│ f query durations and rates.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for JDBI
│ Bundle-SymbolicName: io.dropwizard.metrics.jdbi
│ Bundle-Version: 4.2.1
│ Created-By: Apache Maven Bundle Plugin
│ -Export-Package: com.codahale.metrics.jdbi.strategies;uses:="org.skife.
│ - jdbi.v2";version="4.2.1",com.codahale.metrics.jdbi;uses:="com.codahal
│ - e.metrics,com.codahale.metrics.jdbi.strategies,org.skife.jdbi.v2";ver
│ +Export-Package: com.codahale.metrics.jdbi;uses:="com.codahale.metrics,
│ + com.codahale.metrics.jdbi.strategies,org.skife.jdbi.v2";version="4.2.
│ + 1",com.codahale.metrics.jdbi.strategies;uses:="org.skife.jdbi.v2";ver
│ sion="4.2.1"
│ Implementation-Title: Metrics Integration for JDBI
│ Implementation-URL: https://metrics.dropwizard.io/metrics-jdbi
│ Implementation-Vendor-Id: io.dropwizard.metrics
│ Implementation-Version: 4.2.1
│ Import-Package: com.codahale.metrics;version="[4.2,5)",com.codahale.me
│ trics.jdbi.strategies,org.skife.jdbi.v2
│ -Private-Package: com.codahale.metrics.jdbi.strategies,com.codahale.met
│ - rics.jdbi
│ +Private-Package: com.codahale.metrics.jdbi,com.codahale.metrics.jdbi.s
│ + trategies
│ Require-Capability: osgi.ee;filter:="(&(osgi.ee=JavaSE)(version=1.8))"
│ Tool: Bnd-5.1.1.202006162103
target/reference/metrics-jdbi3-4.2.1.jar metrics-jdbi3/target/metrics-jdbi3-4.2.1.jar
--- target/reference/metrics-jdbi3-4.2.1.jar
+++ metrics-jdbi3/target/metrics-jdbi3-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ Zip file size: 13446 bytes, number of entries: 25
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1284 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1280 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jdbi3/
│ -rw---- 2.0 fat 69 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jdbi3/pom.properties
│ -rw---- 2.0 fat 2590 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jdbi3/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -20,8 +20,8 @@
│ -rw---- 2.0 fat 879 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi3/strategies/DefaultNameStrategy$4.class
│ -rw---- 2.0 fat 2025 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi3/strategies/DefaultNameStrategy.class
│ -rw---- 2.0 fat 1540 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi3/strategies/DelegatingStatementNameStrategy.class
│ -rw---- 2.0 fat 730 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi3/strategies/NaiveNameStrategy.class
│ -rw---- 2.0 fat 765 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi3/strategies/SmartNameStrategy.class
│ -rw---- 2.0 fat 330 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi3/strategies/StatementNameStrategy.class
│ -rw---- 2.0 fat 2158 bl defN 80-Feb-01 00:00 com/codahale/metrics/jdbi3/strategies/TimedAnnotationNameStrategy.class
│ -25 files, 20677 bytes uncompressed, 8732 bytes compressed: 57.8%
│ +25 files, 20673 bytes uncompressed, 8732 bytes compressed: 57.8%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.jdbi3
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: Provides instrumentation of Jdbi3 data access obje
│ cts
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for JDBI3
│ Bundle-SymbolicName: io.dropwizard.metrics.jdbi3
│ Bundle-Version: 4.2.1
target/reference/metrics-jersey2-4.2.1.jar metrics-jersey2/target/metrics-jersey2-4.2.1.jar
--- target/reference/metrics-jersey2-4.2.1.jar
+++ metrics-jersey2/target/metrics-jersey2-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 20843 bytes, number of entries: 22
│ +Zip file size: 20844 bytes, number of entries: 22
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1400 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1396 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jersey2/
│ -rw---- 2.0 fat 71 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jersey2/pom.properties
│ -rw---- 2.0 fat 3723 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jersey2/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -17,8 +17,8 @@
│ -rw---- 2.0 fat 3167 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$ExceptionMeterRequestEventListener.class
│ -rw---- 2.0 fat 2324 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$MeterRequestEventListener.class
│ -rw---- 2.0 fat 2039 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$ResponseMeterMetric.class
│ -rw---- 2.0 fat 3309 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$ResponseMeterRequestEventListener.class
│ -rw---- 2.0 fat 4303 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener$TimerRequestEventListener.class
│ -rw---- 2.0 fat 14806 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey2/InstrumentedResourceMethodApplicationListener.class
│ -rw---- 2.0 fat 3206 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey2/MetricsFeature.class
│ -22 files, 45504 bytes uncompressed, 16013 bytes compressed: 64.8%
│ +22 files, 45500 bytes uncompressed, 16014 bytes compressed: 64.8%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.jersey2
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: A set of class providing Metrics integration for J
│ ersey, the reference JAX-RS implementation.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for Jersey 2.x
│ Bundle-SymbolicName: io.dropwizard.metrics.jersey2
│ Bundle-Version: 4.2.1
target/reference/metrics-jersey3-4.2.1.jar metrics-jersey3/target/metrics-jersey3-4.2.1.jar
--- target/reference/metrics-jersey3-4.2.1.jar
+++ metrics-jersey3/target/metrics-jersey3-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 20870 bytes, number of entries: 22
│ +Zip file size: 20869 bytes, number of entries: 22
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1405 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1401 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jersey3/
│ -rw---- 2.0 fat 71 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jersey3/pom.properties
│ -rw---- 2.0 fat 4074 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jersey3/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -17,8 +17,8 @@
│ -rw---- 2.0 fat 3167 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey3/InstrumentedResourceMethodApplicationListener$ExceptionMeterRequestEventListener.class
│ -rw---- 2.0 fat 2324 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey3/InstrumentedResourceMethodApplicationListener$MeterRequestEventListener.class
│ -rw---- 2.0 fat 2039 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey3/InstrumentedResourceMethodApplicationListener$ResponseMeterMetric.class
│ -rw---- 2.0 fat 3309 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey3/InstrumentedResourceMethodApplicationListener$ResponseMeterRequestEventListener.class
│ -rw---- 2.0 fat 4303 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey3/InstrumentedResourceMethodApplicationListener$TimerRequestEventListener.class
│ -rw---- 2.0 fat 14812 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey3/InstrumentedResourceMethodApplicationListener.class
│ -rw---- 2.0 fat 3216 bl defN 80-Feb-01 00:00 com/codahale/metrics/jersey3/MetricsFeature.class
│ -22 files, 45876 bytes uncompressed, 16040 bytes compressed: 65.0%
│ +22 files, 45872 bytes uncompressed, 16039 bytes compressed: 65.0%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.jersey3
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: A set of class providing Metrics integration for J
│ ersey, the reference JAX-RS implementation.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for Jersey 3.x
│ Bundle-SymbolicName: io.dropwizard.metrics.jersey3
│ Bundle-Version: 4.2.1
target/reference/metrics-jetty9-4.2.1.jar metrics-jetty9/target/metrics-jetty9-4.2.1.jar
--- target/reference/metrics-jetty9-4.2.1.jar
+++ metrics-jetty9/target/metrics-jetty9-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 31507 bytes, number of entries: 35
│ +Zip file size: 31506 bytes, number of entries: 35
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1727 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1723 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jetty9/
│ -rw---- 2.0 fat 70 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jetty9/pom.properties
│ -rw---- 2.0 fat 3210 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jetty9/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 com/codahale/
│ @@ -30,8 +30,8 @@
│ -rw---- 2.0 fat 2781 bl defN 80-Feb-01 00:00 com/codahale/metrics/jetty9/InstrumentedHttpChannelListener$7.class
│ -rw---- 2.0 fat 1121 bl defN 80-Feb-01 00:00 com/codahale/metrics/jetty9/InstrumentedHttpChannelListener$8.class
│ -rw---- 2.0 fat 10028 bl defN 80-Feb-01 00:00 com/codahale/metrics/jetty9/InstrumentedHttpChannelListener.class
│ -rw---- 2.0 fat 1002 bl defN 80-Feb-01 00:00 com/codahale/metrics/jetty9/InstrumentedQueuedThreadPool$1.class
│ -rw---- 2.0 fat 1028 bl defN 80-Feb-01 00:00 com/codahale/metrics/jetty9/InstrumentedQueuedThreadPool$2.class
│ -rw---- 2.0 fat 1331 bl defN 80-Feb-01 00:00 com/codahale/metrics/jetty9/InstrumentedQueuedThreadPool$3.class
│ -rw---- 2.0 fat 5381 bl defN 80-Feb-01 00:00 com/codahale/metrics/jetty9/InstrumentedQueuedThreadPool.class
│ -35 files, 62547 bytes uncompressed, 24657 bytes compressed: 60.6%
│ +35 files, 62543 bytes uncompressed, 24656 bytes compressed: 60.6%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: com.codahale.metrics.jetty9
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: A set of extensions for Jetty 9.3 and higher which
│ provide instrumentation of thread pools, connector metrics, a
│ nd application latency and utilization.
│ Bundle-License: https://www.apache.org/licenses/LICENSE-2.0.html
│ Bundle-ManifestVersion: 2
│ Bundle-Name: Metrics Integration for Jetty 9.3 and higher
│ Bundle-SymbolicName: io.dropwizard.metrics.jetty9
target/reference/metrics-jetty10-4.2.1.jar metrics-jetty10/target/metrics-jetty10-4.2.1.jar
--- target/reference/metrics-jetty10-4.2.1.jar
+++ metrics-jetty10/target/metrics-jetty10-4.2.1.jar
├── zipinfo {}
│ @@ -1,10 +1,10 @@
│ -Zip file size: 31816 bytes, number of entries: 35
│ +Zip file size: 31814 bytes, number of entries: 35
│ -rw---- 2.0 fat 0 bX defN 80-Feb-01 00:00 META-INF/
│ --rw---- 2.0 fat 1745 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ +-rw---- 2.0 fat 1741 bl defN 80-Feb-01 00:00 META-INF/MANIFEST.MF
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jetty10/
│ -rw---- 2.0 fat 71 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jetty10/pom.properties
│ -rw---- 2.0 fat 3981 bl defN 80-Feb-01 00:00 META-INF/maven/io.dropwizard.metrics/metrics-jetty10/pom.xml
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/
│ -rw---- 2.0 fat 0 bl defN 80-Feb-01 00:00 io/dropwizard/
│ @@ -30,8 +30,8 @@
│ -rw---- 2.0 fat 2797 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty10/InstrumentedHttpChannelListener$7.class
│ -rw---- 2.0 fat 1125 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty10/InstrumentedHttpChannelListener$8.class
│ -rw---- 2.0 fat 10060 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty10/InstrumentedHttpChannelListener.class
│ -rw---- 2.0 fat 1012 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty10/InstrumentedQueuedThreadPool$1.class
│ -rw---- 2.0 fat 1038 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty10/InstrumentedQueuedThreadPool$2.class
│ -rw---- 2.0 fat 1343 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty10/InstrumentedQueuedThreadPool$3.class
│ -rw---- 2.0 fat 5397 bl defN 80-Feb-01 00:00 io/dropwizard/metrics/jetty10/InstrumentedQueuedThreadPool.class
│ -35 files, 63067 bytes uncompressed, 24858 bytes compressed: 60.6%
│ +35 files, 63063 bytes uncompressed, 24856 bytes compressed: 60.6%
├── META-INF/MANIFEST.MF
│ @@ -1,11 +1,11 @@
│ Manifest-Version: 1.0
│ Automatic-Module-Name: io.dropwizard.metrics.jetty10
│ -Build-Jdk: 11.0.11
│ -Built-By: runner
│ +Build-Jdk: 11.0.9.1
│ +Built-By: ?
│ Bundle-Description: A set of extensions for Jetty 10.x and higher whic