forked from undera/jmeter-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvarious.json
More file actions
3604 lines (3604 loc) · 205 KB
/
Copy pathvarious.json
File metadata and controls
3604 lines (3604 loc) · 205 KB
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
[
{
"id": "io.github.sagaraggarwal86-configurable-aggregate-report",
"name": "JAAR — JTL AI Analysis & Reporting",
"description": "A file-based Apache JMeter listener plugin for post-test JTL analysis. Provides a filterable aggregate table with features like Filter Results using Start/End Offset & Transaction Names with RegEx support, Dynamic Percentile & Table Columns, SLA Threshold Highlighting (Error %, Response Time & TPS), CLI Headless Mode, Chart Interval Control, AI-Analyzed HTML Performance Report, Data-Only HTML Report (no AI required), Export Report in Excel & PDF Format, Performance Charts, Dark Mode — with zero runtime overhead.",
"screenshotUrl": "https://raw.githubusercontent.com/sagaraggarwal86/jaar-jmeter-plugin/main/docs/Image.jpg",
"helpUrl": "https://github.com/sagaraggarwal86/jaar-jmeter-plugin/blob/main/README.md",
"vendor": "Sagar Aggarwal",
"markerClass": "io.github.sagaraggarwal86.jmeter.listener.gui.ListenerCollector",
"componentClasses": [
"io.github.sagaraggarwal86.jmeter.listener.gui.ListenerCollector",
"io.github.sagaraggarwal86.jmeter.listener.gui.ListenerGUI"
],
"versions": {
"5.0.1": {
"changes": "fixed marker class and component class, removed old deprecated versions and kept only relevant meaningful version",
"downloadUrl": "https://repo1.maven.org/maven2/io/github/sagaraggarwal86/jaar-jmeter-plugin/5.0.1/jaar-jmeter-plugin-5.0.1.jar"
},
"5.5.0": {
"changes": "performance improvement on listener gui and prompt for report generation",
"downloadUrl": "https://repo1.maven.org/maven2/io/github/sagaraggarwal86/jaar-jmeter-plugin/5.5.0/jaar-jmeter-plugin-5.5.0.jar"
},
"6.0.0": {
"changes": "TPS SLA threshold, data-only HTML report (no AI required), performance charts with configurable interval, Excel & PDF export, dark mode, pagination & search in HTML report transaction metrics, CLI fallback to data-only report on AI failure",
"downloadUrl": "https://repo1.maven.org/maven2/io/github/sagaraggarwal86/jaar-jmeter-plugin/6.0.0/jaar-jmeter-plugin-6.0.0.jar"
}
}
},
{
"id": "io.github.sagaraggarwal86-jmxauditor",
"name": "JMXAuditor — JMX Static Analyser",
"description": "A JMeter GUI-mode plugin that performs static analysis on .jmx test plans. Surfaces findings across six quality categories (Correctness, Security, Scalability, Realism, Maintainability, Observability) with 25 read-only rules. HTML & JSON Report Export, with zero impact on test execution.",
"screenshotUrl": "https://raw.githubusercontent.com/sagaraggarwal86/JMXAuditor-jmeter-plugin/main/docs/Image.jpg",
"helpUrl": "https://github.com/sagaraggarwal86/JMXAuditor-jmeter-plugin/blob/main/README.md",
"vendor": "Sagar Aggarwal",
"markerClass": "io.github.sagaraggarwal86.jmeter.jmxauditor.ui.action.JMXAuditorMenuCreator",
"componentClasses": [
"io.github.sagaraggarwal86.jmeter.jmxauditor.ui.action.JMXAuditorMenuCreator"
],
"versions": {
"0.6.0": {
"changes": "Initial public release",
"downloadUrl": "https://repo1.maven.org/maven2/io/github/sagaraggarwal86/jmxauditor-jmeter-plugin/0.6.0/jmxauditor-jmeter-plugin-0.6.0.jar"
}
}
},
{
"id": "io.github.sagaraggarwal86-jmx-version-control-system",
"name": "JVCS — JMX Version Control System",
"description": "A lightweight local version control plugin for Apache JMeter test plans (.jmx files). Auto-snapshots on every save with SHA-256 deduplication, manual checkpoints with notes, one-click rollback with safety net, version freezing, configurable retention with FIFO pruning, periodic auto-checkpoint, selective deletion, export to .jmx, audit trail, lock file mechanism, dirty state indicator, self-healing index, toolbar integration, keyboard shortcuts (Ctrl+K, Ctrl+H) — no Git, no SVN, no external tools required.",
"screenshotUrl": "https://raw.githubusercontent.com/sagaraggarwal86/jmx-version-control-system/main/docs/Image.jpeg",
"helpUrl": "https://github.com/sagaraggarwal86/jmx-version-control-system/blob/main/README.md",
"vendor": "Sagar Aggarwal",
"markerClass": "io.github.sagaraggarwal86.jmeter.scm.ui.ScmMenuCreator",
"componentClasses": [
"io.github.sagaraggarwal86.jmeter.scm.ui.ScmMenuCreator",
"io.github.sagaraggarwal86.jmeter.scm.core.SaveCommandWrapper",
"io.github.sagaraggarwal86.jmeter.scm.core.ScmOpenListener"
],
"versions": {
"1.1.0": {
"changes": "Initial release — auto-snapshot on save, manual checkpoint, version history panel, one-click restore, freeze/unfreeze, retention pruning, auto-checkpoint, selective deletion, export, audit log, lock management, dirty indicator, toolbar buttons, settings dialog, self-healing index, storage migration",
"downloadUrl": "https://repo1.maven.org/maven2/io/github/sagaraggarwal86/jmx-version-control-system/v1.1.0/jmx-version-control-system-v1.1.0.jar"
}
}
},
{
"id": "io.github.sagaraggarwal86-bpm-jmeter-plugin",
"name": "BPM — Browser Performance Metrics",
"description": "A live JMeter listener plugin for capturing browser rendering metrics via Chrome DevTools Protocol. Features include Core Web Vitals (LCP, FCP, CLS, TTFB), Network & Console capture, Composite Performance Score, SLA Threshold Highlighting, Improvement Area Detection, Filter by Start/End Offset & Transaction Names with RegEx support, CLI Headless Mode, Chart Interval Control, HTML Performance Report, and Excel Export — with minimal impact on JMeter thread performance.",
"screenshotUrl": "https://raw.githubusercontent.com/sagaraggarwal86/BPM-jmeter-plugin/v1.0.1/docs/Image.jpg",
"helpUrl": "https://github.com/sagaraggarwal86/BPM-jmeter-plugin/blob/v1.0.1/README.md",
"vendor": "Sagar Aggarwal",
"markerClass": "io.github.sagaraggarwal86.jmeter.bpm.core.BpmListener",
"componentClasses": [
"io.github.sagaraggarwal86.jmeter.bpm.core.BpmListener",
"io.github.sagaraggarwal86.jmeter.bpm.gui.BpmListenerGui"
],
"versions": {
"1.0.1": {
"changes": "Initial release",
"downloadUrl": "https://repo1.maven.org/maven2/io/github/sagaraggarwal86/bpm-jmeter-plugin/v1.0.1/bpm-jmeter-plugin-v1.0.1.jar"
}
}
},
{
"id": "ssh-sampler",
"name": "SSH Protocol Support",
"description": "",
"screenshotUrl": "",
"helpUrl": "https://github.com/yciabaud/jmeter-ssh-sampler",
"vendor": "Yoann Ciabaud",
"markerClass": "org.apache.jmeter.protocol.ssh.sampler.AbstractSSHSampler",
"componentClasses": [
"org.apache.jmeter.protocol.ssh.sampler.SSHCommandSampler",
"org.apache.jmeter.protocol.ssh.sampler.SSHSFTPSampler"
],
"versions": {
"1.1.1-SNAPSHOT": {
"downloadUrl": "https://jmeter-plugins.org/files/thirdparty/ApacheJMeter_ssh-1.1.1-SNAPSHOT.jar",
"libs": {
"jsch": "https://search.maven.org/remotecontent?filepath=com/jcraft/jsch/0.1.50/jsch-0.1.50.jar"
}
},
"1.2.0": {
"changes": "Configurable pseudo TTY allocation; bug fixes",
"downloadUrl": "https://github.com/yciabaud/jmeter-ssh-sampler/releases/download/jmeter-ssh-sampler-1.2.0/ApacheJMeter_ssh-1.2.0.jar",
"libs": {
"jsch": "https://search.maven.org/remotecontent?filepath=com/jcraft/jsch/0.1.55/jsch-0.1.55.jar"
}
}
}
},
{
"id": "websocket-sampler",
"name": "WebSocket Sampler by Maciej Zaleski",
"description": "",
"screenshotUrl": "",
"helpUrl": "https://github.com/maciejzaleski/JMeter-WebSocketSampler/wiki",
"vendor": "Maciej Zaleski",
"markerClass": "JMeter.plugins.functional.samplers.websocket.WebSocketSampler",
"componentClasses": [
"JMeter.plugins.functional.samplers.websocket.WebSocketSampler",
"JMeter.plugins.functional.samplers.websocket.WebSocketSamplerGui"
],
"versions": {
"1.0.2-SNAPSHOT": {
"downloadUrl": "https://jmeter-plugins.org/files/thirdparty/JMeterWebSocketSampler-1.0.2-SNAPSHOT.jar",
"libs": {
"jetty-http": "https://search.maven.org/remotecontent?filepath=org/eclipse/jetty/jetty-http/9.1.1.v20140108/jetty-http-9.1.1.v20140108.jar",
"jetty-io": "https://search.maven.org/remotecontent?filepath=org/eclipse/jetty/jetty-io/9.1.1.v20140108/jetty-io-9.1.1.v20140108.jar",
"jetty-util": "https://search.maven.org/remotecontent?filepath=org/eclipse/jetty/jetty-util/9.1.1.v20140108/jetty-util-9.1.1.v20140108.jar",
"websocket-api": "https://search.maven.org/remotecontent?filepath=org/eclipse/jetty/websocket/websocket-api/9.1.1.v20140108/websocket-api-9.1.1.v20140108.jar",
"websocket-client": "https://search.maven.org/remotecontent?filepath=org/eclipse/jetty/websocket/websocket-client/9.1.1.v20140108/websocket-client-9.1.1.v20140108.jar",
"websocket-common": "https://search.maven.org/remotecontent?filepath=org/eclipse/jetty/websocket/websocket-common/9.1.1.v20140108/websocket-common-9.1.1.v20140108.jar"
}
}
}
},
{
"id": "mqtt-sampler",
"name": "MQTT Protocol Support",
"description": "",
"screenshotUrl": "",
"helpUrl": "https://github.com/hemikak/mqtt-jmeter",
"vendor": "Hemika Kodikara",
"markerClass": "org.apache.jmeter.protocol.mqtt.sampler.SubscriberSampler",
"componentClasses": [
"org.apache.jmeter.protocol.mqtt.control.gui.MQTTPublisherGui",
"org.apache.jmeter.protocol.mqtt.control.gui.MQTTSubscriberGui",
"org.apache.jmeter.protocol.mqtt.sampler.PublisherSampler",
"org.apache.jmeter.protocol.mqtt.sampler.SubscriberSampler"
],
"versions": {
"0.0.1-SNAPSHOT": {
"downloadUrl": "https://jmeter-plugins.org/files/thirdparty/mqtt-jmeter-0.0.1-SNAPSHOT.jar",
"libs": {
"org.eclipse.paho.client.mqttv3": "https://search.maven.org/remotecontent?filepath=org/eclipse/paho/org.eclipse.paho.client.mqttv3/1.0.2/org.eclipse.paho.client.mqttv3-1.0.2.jar"
}
}
}
},
{
"id": "mqtt-xmeter",
"name": "MQTT Protocol Samplers",
"description": "connect, publish, subscribe and disconnect samplers",
"screenshotUrl": "https://github.com/xmeter-net/mqtt-jmeter/raw/master/screenshots/mqtt_jmeter_plugin.png",
"helpUrl": "https://github.com/xmeter-net/mqtt-jmeter",
"vendor": "XMeter.com",
"markerClass": "net.xmeter.samplers.ConnectSampler",
"componentClasses": [
"net.xmeter.gui.ConnectSamplerUI",
"net.xmeter.samplers.ConnectSampler",
"net.xmeter.gui.DisConnectSamplerUI",
"net.xmeter.samplers.DisConnectSampler",
"net.xmeter.gui.PubSamplerUI",
"net.xmeter.samplers.PubSampler",
"net.xmeter.gui.SubSamplerUI",
"net.xmeter.samplers.SubSampler"
],
"versions": {
"2.0.2": {
"downloadUrl": "https://github.com/xmeter-net/mqtt-jmeter/raw/master/Download/v2.0.2/mqtt-xmeter-2.0.2-jar-with-dependencies.jar"
}
}
},
{
"id": "netflix-cassandra",
"name": "Cassandra Support",
"description": "",
"helpUrl": "https://github.com/Netflix/CassJMeter/wiki",
"screenshotUrl": "",
"vendor": "Netflix",
"markerClass": "com.netflix.jmeter.sampler.AbstractSampler",
"componentClasses": [
"com.netflix.jmeter.gui.BatchPut",
"com.netflix.jmeter.gui.CompositGet",
"com.netflix.jmeter.gui.CompositPut",
"com.netflix.jmeter.gui.Delete",
"com.netflix.jmeter.gui.Get",
"com.netflix.jmeter.gui.GetRangeSlice",
"com.netflix.jmeter.gui.Put",
"com.netflix.jmeter.properties.CassandraProperties",
"com.netflix.jmeter.properties.FatclientProperties",
"com.netflix.jmeter.properties.SchemaProperties",
"com.netflix.jmeter.report.ServoSummariserGui",
"com.netflix.jmeter.sampler.BatchPutSampler",
"com.netflix.jmeter.sampler.CompositGetSampler",
"com.netflix.jmeter.sampler.CompositeBatchPutSampler",
"com.netflix.jmeter.sampler.CompsitePutSampler",
"com.netflix.jmeter.sampler.DeleteSampler",
"com.netflix.jmeter.sampler.GetRangeSliceSampler",
"com.netflix.jmeter.sampler.GetSampler",
"com.netflix.jmeter.sampler.PutSampler"
],
"versions": {
"0.2-SNAPSHOT": {
"downloadUrl": "https://jmeter-plugins.org/files/thirdparty/CassJMeter-0.2-SNAPSHOT.jar",
"libs": {
"servo-core": "https://search.maven.org/remotecontent?filepath=com/netflix/servo/servo-core/0.4.32/servo-core-0.4.32.jar",
"hector-core": "https://search.maven.org/remotecontent?filepath=org/hectorclient/hector-core/1.1-2/hector-core-1.1-2.jar",
"astyanax": "https://search.maven.org/remotecontent?filepath=com/netflix/astyanax/astyanax/1.56.25/astyanax-1.56.25.jar",
"guava": "https://search.maven.org/remotecontent?filepath=io/janusproject/guava/guava/19.0.0/guava-19.0.0.jar",
"cassandra-driver-core": "https://search.maven.org/remotecontent?filepath=com/datastax/cassandra/cassandra-driver-core/1.0.0/cassandra-driver-core-1.0.0.jar"
}
}
}
},
{
"id": "kafkameter",
"name": "Kafka Support",
"description": "",
"screenshotUrl": "",
"helpUrl": "https://github.com/BrightTag/kafkameter",
"vendor": "www.signal.co",
"markerClass": "co.signal.kafkameter.KafkaProducerSampler",
"componentClasses": [
"co.signal.loadgen.LoadGenerator"
],
"versions": {
"0.2.0": {
"downloadUrl": "https://jmeter-plugins.org/files/thirdparty/kafkameter-0.2.0.jar",
"depends": [
"jmeter-java"
],
"libs": {
"guava": "https://search.maven.org/remotecontent?filepath=io/janusproject/guava/guava/19.0.0/guava-19.0.0.jar",
"kafka_2.8.2": "https://search.maven.org/remotecontent?filepath=org/apache/kafka/kafka_2.8.2/0.8.0/kafka_2.8.2-0.8.0.jar",
"gson": "https://search.maven.org/remotecontent?filepath=com/google/code/gson/gson/2.2.4/gson-2.2.4.jar",
"scala-library": "https://search.maven.org/remotecontent?filepath=org/scala-lang/scala-library/2.8.2/scala-library-2.8.2.jar",
"metrics-core": "https://search.maven.org/remotecontent?filepath=com/yammer/metrics/metrics-core/2.2.0/metrics-core-2.2.0.jar"
}
}
}
},
{
"id": "custom-soap",
"name": "Custom SOAP Sampler",
"description": "",
"screenshotUrl": "https://camo.githubusercontent.com/439a3066e3d0053d6e9764f8ca82af3a3af9c572/68747470733a2f2f312e62702e626c6f6773706f742e636f6d2f2d536170454572374e3239302f56724e7161495254566d492f41414141414141414864452f5337345753615a37354c452f73313630302f6d61696e566965772e706e67",
"helpUrl": "https://github.com/spinning10/JMeterSoapSampler/wiki",
"vendor": "Lukasz W",
"markerClass": "com.jmeter.protocol.soap.sampler.CustomSOAPSampler",
"componentClasses": [
"com.jmeter.protocol.soap.control.gui.CustomSOAPSamplerGui",
"com.jmeter.protocol.soap.sampler.CustomSOAPSampler",
"com.jmeter.sampler.assertions.SOAPXPathAssertion",
"com.jmeter.sampler.assertions.gui.SOAPXPathAssertionGui",
"com.jmeter.sampler.config.gui.VariableDefinitionPanel"
],
"versions": {
"1.3": {
"downloadUrl": "https://jmeter-plugins.org/files/thirdparty/CustomSoapSampler-1.3.jar",
"depends": [
"jmeter-http"
],
"libs": {
"jmeter-plugins-cmn-jmeter": "https://search.maven.org/remotecontent?filepath=kg/apc/jmeter-plugins-cmn-jmeter/0.5/jmeter-plugins-cmn-jmeter-0.5.jar"
}
},
"1.3.3": {
"changes": "Sampler now supports Header/Cookie/Auth Manager, reports response headers, and handles binary attachments.",
"downloadUrl": "https://github.com/spinning10/JMeterSoapSampler/raw/master/target/CustomSoapSampler-1.3.3.jar",
"depends": [
"jmeter-http"
],
"libs": {
"jmeter-plugins-cmn-jmeter": "https://search.maven.org/remotecontent?filepath=kg/apc/jmeter-plugins-cmn-jmeter/0.7/jmeter-plugins-cmn-jmeter-0.7.jar"
}
}
}
},
{
"id": "tilln-cors-plugin",
"name": "CORS Pre-Processor",
"description": "CORS Pre-Processor makes preflight requests for cross-origin HTTP requests if required, based on request method and headers, and mimics a browser's preflight cache to avoid unnecessary requests.",
"screenshotUrl": "https://raw.githubusercontent.com/tilln/jmeter-cors-plugin/main/docs/cors-preprocessor.png",
"helpUrl": "https://github.com/tilln/jmeter-cors-plugin",
"vendor": "Till Neunast",
"markerClass": "nz.co.breakpoint.jmeter.modifiers.CorsPreProcessor",
"componentClasses": [
"nz.co.breakpoint.jmeter.modifiers.CorsPreProcessor"
],
"versions": {
"1.0": {
"downloadUrl": "https://github.com/tilln/jmeter-cors-plugin/releases/download/1.0/jmeter-cors-plugin-1.0.jar",
"depends": [
"jmeter-core"
]
},
"1.1": {
"changes": "Bug fixes (#2)",
"downloadUrl": "https://github.com/tilln/jmeter-cors-plugin/releases/download/1.1/jmeter-cors-plugin-1.1.jar",
"depends": [
"jmeter-core"
]
}
}
},
{
"id": "tilln-formman",
"name": "HTTP Form Manager",
"description": "This plugin makes JMeter behave a little more like a browser: form fields are automatically populated with preselected values.<br><ul><li>No more manual correlation of hidden inputs, such as session variables.</li><li>Just correlate parameters that actually relate to user input.</li></ul>",
"screenshotUrl": "https://raw.githubusercontent.com/tilln/jmeter-formman/master/docs/before.png",
"helpUrl": "https://github.com/tilln/jmeter-formman",
"vendor": "Till Neunast",
"markerClass": "nz.co.breakpoint.jmeter.modifiers.HTTPFormManager",
"componentClasses": [
"nz.co.breakpoint.jmeter.modifiers.HTTPFormManager"
],
"versions": {
"1.0": {
"downloadUrl": "https://github.com/tilln/jmeter-formman/releases/download/1.0/jmeter-formman-1.0.jar"
}
}
},
{
"id": "tilln-iso8583",
"name": "ISO-8583 Sampler",
"description": "Generate ISO-8583 financial transactions for testing of payment gateways and switches<br />With support for cryptogram calculation (PIN Block, MAC, ARQC)<br />Based on the <a href=\"http://jpos.org\">jPOS</a> framework",
"screenshotUrl": "https://raw.githubusercontent.com/tilln/jmeter-iso8583/master/docs/sampler.png",
"helpUrl": "https://github.com/tilln/jmeter-iso8583",
"vendor": "Till Neunast",
"markerClass": "nz.co.breakpoint.jmeter.iso8583.ISO8583Sampler",
"componentClasses": [
"nz.co.breakpoint.jmeter.iso8583.ISO8583Config",
"nz.co.breakpoint.jmeter.iso8583.ISO8583Sampler",
"nz.co.breakpoint.jmeter.iso8583.ISO8583Component",
"nz.co.breakpoint.jmeter.iso8583.ISO8583Crypto"
],
"versions": {
"1.0": {
"downloadUrl": "https://github.com/tilln/jmeter-iso8583/releases/download/1.0/jmeter-iso8583-1.0.jar",
"libs": {
"jpos": "https://search.maven.org/remotecontent?filepath=org/jpos/jpos/2.1.3/jpos-2.1.3.jar",
"bcprov-jdk15on": "https://search.maven.org/remotecontent?filepath=org/bouncycastle/bcprov-jdk15on/1.62/bcprov-jdk15on-1.62.jar",
"bcpg-jdk15on": "https://search.maven.org/remotecontent?filepath=org/bouncycastle/bcpg-jdk15on/1.62/bcpg-jdk15on-1.62.jar",
"jdom2": "https://search.maven.org/remotecontent?filepath=org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar",
"org.osgi.core": "https://search.maven.org/remotecontent?filepath=org/osgi/org.osgi.core/6.0.0/org.osgi.core-6.0.0.jar",
"commons-cli": "https://search.maven.org/remotecontent?filepath=commons-cli/commons-cli/1.4/commons-cli-1.4.jar",
"snakeyaml": "https://search.maven.org/remotecontent?filepath=org/yaml/snakeyaml/1.24/snakeyaml-1.24.jar",
"HdrHistogram": "https://search.maven.org/remotecontent?filepath=org/hdrhistogram/HdrHistogram/2.1.11/HdrHistogram-2.1.11.jar",
"javatuples": "https://search.maven.org/remotecontent?filepath=org/javatuples/javatuples/1.2/javatuples-1.2.jar"
}
},
"1.1": {
"changes": "<ul><li>Upgrade to jPOS v2.1.4</li><li>Fire-and-forget messages</li><li>Non-persistent Channel option</li><li>Advanced Mux options to configure response/request matching</li><li>Non-message related cryptographic functions</li><li>Packager logging</li><li>Multiple success response codes</li><li>ARQC transaction data overriding, custom padding, and automatic CVR extraction</li><li>Bug fixes: #2</li><li>Incompatible changes:</li><ul><li>ISO8583 Crypto PreProcessor: Transaction Data field now overrides the ARQC input instead of appending</li><li>ISO8583 Config: renamed to ISO8583 Connection Configuration</li></ul></ul>",
"downloadUrl": "https://github.com/tilln/jmeter-iso8583/releases/download/1.1/jmeter-iso8583-1.1.jar",
"libs": {
"jpos>=2.1.4": "https://search.maven.org/remotecontent?filepath=org/jpos/jpos/2.1.4/jpos-2.1.4.jar",
"bcprov-jdk15on>=1.64": "https://search.maven.org/remotecontent?filepath=org/bouncycastle/bcprov-jdk15on/1.64/bcprov-jdk15on-1.64.jar",
"bcpg-jdk15on>=1.64": "https://search.maven.org/remotecontent?filepath=org/bouncycastle/bcpg-jdk15on/1.64/bcpg-jdk15on-1.64.jar",
"jdom2": "https://search.maven.org/remotecontent?filepath=org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar",
"org.osgi.core": "https://search.maven.org/remotecontent?filepath=org/osgi/org.osgi.core/6.0.0/org.osgi.core-6.0.0.jar",
"commons-cli": "https://search.maven.org/remotecontent?filepath=commons-cli/commons-cli/1.4/commons-cli-1.4.jar",
"snakeyaml>=1.26": "https://search.maven.org/remotecontent?filepath=org/yaml/snakeyaml/1.26/snakeyaml-1.26.jar",
"HdrHistogram>=2.1.12": "https://search.maven.org/remotecontent?filepath=org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar",
"javatuples": "https://search.maven.org/remotecontent?filepath=org/javatuples/javatuples/1.2/javatuples-1.2.jar"
}
},
"1.2": {
"changes": "<ul><li>Upgrade to jPOS v2.1.6</li><li>Round-robin selection for multiple connections in server mode</li><li>Optional reference ID for explicitly linking Sampler to Connection Config</li><li>Request Listener script option to handle incoming messages (0800 network management)</li><li>Bug fixes: #30, #32</li></ul></ul>",
"downloadUrl": "https://github.com/tilln/jmeter-iso8583/releases/download/1.2/jmeter-iso8583-1.2.jar",
"libs": {
"jpos>=2.1.6": "https://search.maven.org/remotecontent?filepath=org/jpos/jpos/2.1.6/jpos-2.1.6.jar",
"bcprov-jdk15on>=1.67": "https://search.maven.org/remotecontent?filepath=org/bouncycastle/bcprov-jdk15on/1.67/bcprov-jdk15on-1.67.jar",
"bcpg-jdk15on>=1.67": "https://search.maven.org/remotecontent?filepath=org/bouncycastle/bcpg-jdk15on/1.67/bcpg-jdk15on-1.67.jar",
"jdom2": "https://search.maven.org/remotecontent?filepath=org/jdom/jdom2/2.0.6/jdom2-2.0.6.jar",
"org.osgi.core": "https://search.maven.org/remotecontent?filepath=org/osgi/org.osgi.core/6.0.0/org.osgi.core-6.0.0.jar",
"commons-cli": "https://search.maven.org/remotecontent?filepath=commons-cli/commons-cli/1.4/commons-cli-1.4.jar",
"snakeyaml>=1.26": "https://search.maven.org/remotecontent?filepath=org/yaml/snakeyaml/1.26/snakeyaml-1.26.jar",
"HdrHistogram>=2.1.12": "https://search.maven.org/remotecontent?filepath=org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar",
"javatuples": "https://search.maven.org/remotecontent?filepath=org/javatuples/javatuples/1.2/javatuples-1.2.jar"
}
},
"1.3": {
"changes": "<ul><li>Upgrade to jPOS v2.1.8</li><li>Bug fixes: #24</li><li>Incompatible changes:</li><ul><li>ISO8583 Config: Request Listener script now Groovy instead of BeanShell</li><li>ISO8583 Crypto PreProcessor: Removed some ARQC settings that are now derived automatically from Issuer Application Data (Session Key Derivation Method, jmeter.iso8583.arqcInputTags, jmeter.iso8583.arqcFromFullIADForCVNs)</li></ul></ul>",
"downloadUrl": "https://github.com/tilln/jmeter-iso8583/releases/download/1.3/jmeter-iso8583-1.3.jar",
"libs": {
"jpos>=2.1.8": "https://search.maven.org/remotecontent?filepath=org/jpos/jpos/2.1.8/jpos-2.1.8.jar",
"bcprov-jdk15on>=1.69": "https://search.maven.org/remotecontent?filepath=org/bouncycastle/bcprov-jdk15on/1.69/bcprov-jdk15on-1.69.jar",
"bcpg-jdk15on>=1.69": "https://search.maven.org/remotecontent?filepath=org/bouncycastle/bcpg-jdk15on/1.69/bcpg-jdk15on-1.69.jar",
"jdom2>=2.0.6.1": "https://search.maven.org/remotecontent?filepath=org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar",
"org.osgi.core": "https://search.maven.org/remotecontent?filepath=org/osgi/org.osgi.core/6.0.0/org.osgi.core-6.0.0.jar",
"commons-cli": "https://search.maven.org/remotecontent?filepath=commons-cli/commons-cli/1.4/commons-cli-1.4.jar",
"snakeyaml>=1.33": "https://search.maven.org/remotecontent?filepath=org/yaml/snakeyaml/1.33/snakeyaml-1.33.jar",
"HdrHistogram>=2.1.12": "https://search.maven.org/remotecontent?filepath=org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar",
"javatuples": "https://search.maven.org/remotecontent?filepath=org/javatuples/javatuples/1.2/javatuples-1.2.jar"
}
},
"1.4": {
"changes": "<ul><li>Upgrade to jPOS v2.1.10</li><li>Automatic ARQC padding</li><li>Bug fixes: #77</li></ul>",
"downloadUrl": "https://github.com/tilln/jmeter-iso8583/releases/download/1.4/jmeter-iso8583-1.4.jar",
"libs": {
"jpos>=2.1.10": "https://search.maven.org/remotecontent?filepath=org/jpos/jpos/2.1.10/jpos-2.1.10.jar",
"bcprov-lts8on>=2.73.6": "https://search.maven.org/remotecontent?filepath=org/bouncycastle/bcprov-lts8on/2.73.6/bcprov-lts8on-2.73.6.jar",
"bcpg-lts8on>=2.73.6": "https://search.maven.org/remotecontent?filepath=org/bouncycastle/bcpg-lts8on/2.73.6/bcpg-lts8on-2.73.6.jar",
"jdom2>=2.0.6.1": "https://search.maven.org/remotecontent?filepath=org/jdom/jdom2/2.0.6.1/jdom2-2.0.6.1.jar",
"org.osgi.core": "https://search.maven.org/remotecontent?filepath=org/osgi/org.osgi.core/6.0.0/org.osgi.core-6.0.0.jar",
"commons-cli": "https://search.maven.org/remotecontent?filepath=commons-cli/commons-cli/1.4/commons-cli-1.4.jar",
"snakeyaml>=2.0": "https://search.maven.org/remotecontent?filepath=org/yaml/snakeyaml/2.0/snakeyaml-2.0.jar",
"HdrHistogram>=2.1.12": "https://search.maven.org/remotecontent?filepath=org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar",
"javatuples": "https://search.maven.org/remotecontent?filepath=org/javatuples/javatuples/1.2/javatuples-1.2.jar"
}
}
}
},
{
"id": "tilln-junit",
"name": "JUnit Reporter",
"description": "Generates CI/CD-compatible JUnit Reports in XML format based on custom KPIs: Comparing aggregate metrics with threshold values determines pass/fail.<br />Supports filtering of sample labels by regular expressions.<br />Supported aggregates:<ul><li>Response time percentiles (any)</li><li>Maximum and minimum response time</li><li>Response time average and standard deviation</li><li>Sample error rate</li><li>Total number of samples</li><li>Custom metrics</li></ul>",
"screenshotUrl": "https://raw.githubusercontent.com/tilln/jmeter-junit-reporter/master/docs/reporter.png",
"helpUrl": "https://github.com/tilln/jmeter-junit-reporter",
"vendor": "Till Neunast",
"markerClass": "nz.co.breakpoint.jmeter.JUnitReporter",
"componentClasses": [
"nz.co.breakpoint.jmeter.JUnitReporter"
],
"versions": {
"1.0": {
"downloadUrl": "https://github.com/tilln/jmeter-junit-reporter/releases/download/1.0/jmeter-junit-reporter-1.0.jar"
},
"1.1": {
"changes": "Bug fixes",
"downloadUrl": "https://github.com/tilln/jmeter-junit-reporter/releases/download/1.1/jmeter-junit-reporter-1.1.jar"
}
}
},
{
"id": "tilln-retrier",
"name": "Sample Retrier",
"description": "Post-Processor that retries failed samplers based on sample results (regex match of response code, data, headers or message).<br /><ul><li>Configurable pause and back-off behaviour</li><li>Handles \"Retry-After\" HTTP headers</li><li>Retries as represented as sub-results</li></ul>Does <b>not</b> take into account any assertion results.",
"screenshotUrl": "https://raw.githubusercontent.com/tilln/jmeter-retrier/master/docs/example.png",
"helpUrl": "https://github.com/tilln/jmeter-retrier",
"vendor": "Till Neunast",
"markerClass": "nz.co.breakpoint.jmeter.modifiers.RetryPostProcessor",
"componentClasses": [
"nz.co.breakpoint.jmeter.modifiers.RetryPostProcessor"
],
"versions": {
"1.0": {
"downloadUrl": "https://github.com/tilln/jmeter-retrier/releases/download/1.0/jmeter-retrier-1.0.jar"
}
}
},
{
"id": "tilln-sshmon",
"name": "SSHMon Sample Collector",
"description": "Monitoring plugin for agentless collection and plotting of remote server metrics via SSH connections",
"screenshotUrl": "https://raw.githubusercontent.com/tilln/jmeter-sshmon/master/docs/sshmon_samples_collector.png",
"helpUrl": "https://github.com/tilln/jmeter-sshmon",
"vendor": "Till Neunast",
"markerClass": "nz.co.breakpoint.jmeter.vizualizers.sshmon.SSHMonCollector",
"componentClasses": [
"nz.co.breakpoint.jmeter.vizualizers.sshmon.SSHMonCollector",
"nz.co.breakpoint.jmeter.vizualizers.sshmon.SSHMonGui"
],
"versions": {
"1.0": {
"downloadUrl": "https://github.com/tilln/jmeter-sshmon/releases/download/1.0/jmeter-sshmon-1.0.jar",
"libs": {
"jmeter-plugins-cmn-jmeter>=0.5": "https://search.maven.org/remotecontent?filepath=kg/apc/jmeter-plugins-cmn-jmeter/0.5/jmeter-plugins-cmn-jmeter-0.5.jar",
"jsch": "https://search.maven.org/remotecontent?filepath=com/jcraft/jsch/0.1.54/jsch-0.1.54.jar"
}
},
"1.1": {
"changes": "Bug fixes",
"downloadUrl": "https://github.com/tilln/jmeter-sshmon/releases/download/1.1/jmeter-sshmon-1.1.jar",
"libs": {
"jmeter-plugins-cmn-jmeter>=0.6": "https://search.maven.org/remotecontent?filepath=kg/apc/jmeter-plugins-cmn-jmeter/0.6/jmeter-plugins-cmn-jmeter-0.6.jar",
"jsch": "https://search.maven.org/remotecontent?filepath=com/jcraft/jsch/0.1.54/jsch-0.1.54.jar"
}
},
"1.2": {
"changes": "Bug fixes and new locale config option.",
"downloadUrl": "https://github.com/tilln/jmeter-sshmon/releases/download/1.2/jmeter-sshmon-1.2.jar",
"libs": {
"jmeter-plugins-cmn-jmeter>=0.6": "https://search.maven.org/remotecontent?filepath=kg/apc/jmeter-plugins-cmn-jmeter/0.6/jmeter-plugins-cmn-jmeter-0.6.jar",
"jsch": "https://search.maven.org/remotecontent?filepath=com/jcraft/jsch/0.1.54/jsch-0.1.54.jar"
}
},
"1.3": {
"changes": "<ul><li>Replaced ssh client library <a href=\"http://www.jcraft.com/jsch/\">JSch</a> with <a href=\"https://mina.apache.org/sshd-project/\">Apache Mina SSHD</a></li><li>ProxyJump support</li><li>Bug fixes</li></ul>",
"downloadUrl": "https://github.com/tilln/jmeter-sshmon/releases/download/1.3/jmeter-sshmon-1.3.jar",
"libs": {
"jmeter-plugins-cmn-jmeter>=0.7": "https://search.maven.org/remotecontent?filepath=kg/apc/jmeter-plugins-cmn-jmeter/0.7/jmeter-plugins-cmn-jmeter-0.7.jar",
"sshd-core>=2.6": "https://search.maven.org/remotecontent?filepath=org/apache/sshd/sshd-core/2.6.0/sshd-core-2.6.0.jar",
"sshd-common>=2.6": "https://search.maven.org/remotecontent?filepath=org/apache/sshd/sshd-common/2.6.0/sshd-common-2.6.0.jar"
}
},
"1.4": {
"changes": "Maintenance release: Dependency updates and bug fixes",
"downloadUrl": "https://github.com/tilln/jmeter-sshmon/releases/download/1.4/jmeter-sshmon-1.4.jar",
"libs": {
"jmeter-plugins-cmn-jmeter>=0.7": "https://search.maven.org/remotecontent?filepath=kg/apc/jmeter-plugins-cmn-jmeter/0.7/jmeter-plugins-cmn-jmeter-0.7.jar",
"sshd-core>=2.6": "https://search.maven.org/remotecontent?filepath=org/apache/sshd/sshd-core/2.12.1/sshd-core-2.12.1.jar",
"sshd-common>=2.6": "https://search.maven.org/remotecontent?filepath=org/apache/sshd/sshd-common/2.12.1/sshd-common-2.12.1.jar"
}
}
}
},
{
"id": "tilln-wssecurity",
"name": "WS Security for SOAP",
"description": "Digital signature, encryption, decryption, timestamp and username token for SOAP messages via Pre/Post-Processors that modify sampler payloads/responses.",
"screenshotUrl": "https://raw.githubusercontent.com/tilln/jmeter-wssecurity/master/docs/signature.png",
"helpUrl": "https://github.com/tilln/jmeter-wssecurity",
"vendor": "Till Neunast",
"markerClass": "nz.co.breakpoint.jmeter.modifiers.SamplerPayloadAccessor",
"componentClasses": [
"nz.co.breakpoint.jmeter.modifiers.WSSEncryptionPreProcessor",
"nz.co.breakpoint.jmeter.modifiers.WSSSignaturePreProcessor",
"nz.co.breakpoint.jmeter.modifiers.WSSUsernameTokenPreProcessor",
"nz.co.breakpoint.jmeter.modifiers.WSSTimestampPreProcessor",
"nz.co.breakpoint.jmeter.modifiers.WSSDecryptionPostProcessor"
],
"versions": {
"1.1": {
"downloadUrl": "https://github.com/tilln/jmeter-wssecurity/releases/download/1.1/jmeter-wssecurity-1.1.jar",
"depends": [
"jmeter-core"
],
"libs": {
"wss4j-ws-security-dom": "http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-dom/2.1.8/wss4j-ws-security-dom-2.1.8.jar",
"wss4j-ws-security-common": "http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-common/2.1.8/wss4j-ws-security-common-2.1.8.jar",
"xmlsec": "http://central.maven.org/maven2/org/apache/santuario/xmlsec/2.0.8/xmlsec-2.0.8.jar"
}
},
"1.2": {
"changes": "Bug fix release",
"downloadUrl": "https://github.com/tilln/jmeter-wssecurity/releases/download/1.2/jmeter-wssecurity-1.2.jar",
"depends": [
"jmeter-core"
],
"libs": {
"wss4j-ws-security-dom": "http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-dom/2.1.8/wss4j-ws-security-dom-2.1.8.jar",
"wss4j-ws-security-common": "http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-common/2.1.8/wss4j-ws-security-common-2.1.8.jar",
"xmlsec": "http://central.maven.org/maven2/org/apache/santuario/xmlsec/2.0.8/xmlsec-2.0.8.jar"
}
},
"1.3": {
"changes": "Added support for WSS UsernameToken",
"downloadUrl": "https://github.com/tilln/jmeter-wssecurity/releases/download/1.3/jmeter-wssecurity-1.3.jar",
"depends": [
"jmeter-core"
],
"libs": {
"wss4j-ws-security-dom": "http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-dom/2.1.8/wss4j-ws-security-dom-2.1.8.jar",
"wss4j-ws-security-common": "http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-common/2.1.8/wss4j-ws-security-common-2.1.8.jar",
"xmlsec": "http://central.maven.org/maven2/org/apache/santuario/xmlsec/2.0.8/xmlsec-2.0.8.jar"
}
},
"1.4": {
"changes": "Added support for decryption of response messages",
"downloadUrl": "https://github.com/tilln/jmeter-wssecurity/releases/download/1.4/jmeter-wssecurity-1.4.jar",
"depends": [
"jmeter-core"
],
"libs": {
"wss4j-ws-security-dom": "http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-dom/2.1.8/wss4j-ws-security-dom-2.1.8.jar",
"wss4j-ws-security-common": "http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-common/2.1.8/wss4j-ws-security-common-2.1.8.jar",
"xmlsec": "http://central.maven.org/maven2/org/apache/santuario/xmlsec/2.0.8/xmlsec-2.0.8.jar"
}
},
"1.5": {
"changes": "Added WSS Timestamp Pre-Processor. Added WSS UsernameToken timestamp precision option and 'no password' option.",
"downloadUrl": "https://github.com/tilln/jmeter-wssecurity/releases/download/1.5/jmeter-wssecurity-1.5.jar",
"depends": [
"jmeter-core"
],
"libs": {
"wss4j-ws-security-dom": "http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-dom/2.1.8/wss4j-ws-security-dom-2.1.8.jar",
"wss4j-ws-security-common": "http://central.maven.org/maven2/org/apache/wss4j/wss4j-ws-security-common/2.1.8/wss4j-ws-security-common-2.1.8.jar",
"xmlsec": "http://central.maven.org/maven2/org/apache/santuario/xmlsec/2.0.8/xmlsec-2.0.8.jar"
}
},
"1.6": {
"changes": "<ul><li>Support for signing/encrypting/decrypting attachments</li><li>Upgrade to wss4j v2.2</li><li>Support for TCP Sampler, SMTP Sampler</li><li>New options:</li><ul><li>Header: Actor, mustUnderstand</li><li>Parts to Sign/Encrypt: ID</li></ul><li>Removed options:</li><ul><li>Signature algorithm http://www.w3.org/2001/04/xmldsig-more#rsa-ripemd160</li><li>Digest algorithm http://www.w3.org/2001/04/xmlenc#ripemd160</li><li>Key encryption algorithm http://www.w3.org/2001/04/xmlenc#rsa-oaep-mgf1p</li></ul></ul>",
"downloadUrl": "https://github.com/tilln/jmeter-wssecurity/releases/download/1.6/jmeter-wssecurity-1.6.jar",
"depends": [
"jmeter-core"
],
"libs": {
"wss4j-ws-security-dom>=2.2": "https://search.maven.org/remotecontent?filepath=org/apache/wss4j/wss4j-ws-security-dom/2.2.2/wss4j-ws-security-dom-2.2.2.jar",
"wss4j-ws-security-common>=2.2": "https://search.maven.org/remotecontent?filepath=org/apache/wss4j/wss4j-ws-security-common/2.2.2/wss4j-ws-security-common-2.2.2.jar",
"xmlsec>=2.1": "https://search.maven.org/remotecontent?filepath=org/apache/santuario/xmlsec/2.1.2/xmlsec-2.1.2.jar"
}
},
"1.7": {
"changes": "<ul><li>SOAP Message Signer: Support for symmetric signature (HMAC)</li><li>SOAP Message Decrypter: Support for multiple decryption keys</li><li>Default keystore type is now JCEKS (compatible with JKS and PKCS12)</li><li>Bug fixes</li><li>Incompatible changes:</li><ul><li>SOAP Message Decrypter: Private Key Password field removed (use Credentials table instead)</li></ul></ul>",
"downloadUrl": "https://github.com/tilln/jmeter-wssecurity/releases/download/1.7/jmeter-wssecurity-1.7.jar",
"depends": [
"jmeter-core"
],
"libs": {
"wss4j-ws-security-dom": "https://search.maven.org/remotecontent?filepath=org/apache/wss4j/wss4j-ws-security-dom/2.2.2/wss4j-ws-security-dom-2.2.2.jar",
"wss4j-ws-security-common": "https://search.maven.org/remotecontent?filepath=org/apache/wss4j/wss4j-ws-security-common/2.2.2/wss4j-ws-security-common-2.2.2.jar",
"xmlsec": "https://search.maven.org/remotecontent?filepath=org/apache/santuario/xmlsec/2.1.2/xmlsec-2.1.2.jar"
}
},
"1.8": {
"changes": "<ul><li>Upgrade to wss4j v2.3.1</li><li>Configurable keystore type (JCEKS/JKS/PKCS12)</li><li>Bug fixes</li></ul>",
"downloadUrl": "https://github.com/tilln/jmeter-wssecurity/releases/download/1.8/jmeter-wssecurity-1.8.jar",
"depends": [
"jmeter-core"
],
"libs": {
"wss4j-ws-security-dom": "https://search.maven.org/remotecontent?filepath=org/apache/wss4j/wss4j-ws-security-dom/2.3.1/wss4j-ws-security-dom-2.3.1.jar",
"wss4j-ws-security-common": "https://search.maven.org/remotecontent?filepath=org/apache/wss4j/wss4j-ws-security-common/2.3.1/wss4j-ws-security-common-2.3.1.jar",
"xmlsec": "https://search.maven.org/remotecontent?filepath=org/apache/santuario/xmlsec/2.2.1/xmlsec-2.2.1.jar"
}
},
"1.9": {
"changes": "Maintenance release: Upgrade to wss4j v3.0.0",
"downloadUrl": "https://github.com/tilln/jmeter-wssecurity/releases/download/1.9/jmeter-wssecurity-1.9.jar",
"depends": [
"jmeter-core"
],
"libs": {
"wss4j-ws-security-dom": "https://search.maven.org/remotecontent?filepath=org/apache/wss4j/wss4j-ws-security-dom/3.0.0/wss4j-ws-security-dom-3.0.0.jar",
"wss4j-ws-security-common": "https://search.maven.org/remotecontent?filepath=org/apache/wss4j/wss4j-ws-security-common/3.0.0/wss4j-ws-security-common-3.0.0.jar",
"xmlsec": "https://search.maven.org/remotecontent?filepath=org/apache/santuario/xmlsec/3.0.1/xmlsec-3.0.1.jar"
}
}
}
},
{
"id": "jpgc-hadoop",
"name": "Hadoop/HBase Testing",
"description": "<ul><li>HBase Connection Config</li><li>HDFS Operations</li><li>Hadoop Job Tracker Sampler</li><li>HBase CRUD Sampler</li><li>HBase Scan Sampler</li><li>HBase Rowkey Sampler</li></ul>",
"screenshotUrl": "https://jmeter-plugins.org/img/wiki/HBaseConnection1.png",
"helpUrl": "https://jmeter-plugins.org/wiki/HadoopSet/",
"vendor": "JMeter-Plugins.org",
"markerClass": "com.atlantbh.jmeter.plugins.hadooputilities.hdfsoperations.HdfsOperations",
"componentClasses": [
"com.atlantbh.jmeter.plugins.hadooputilities.hdfsoperations.HdfsOperations",
"com.atlantbh.jmeter.plugins.hadooputilities.hdfsoperations.gui.HdfsOperationsGui",
"com.atlantbh.jmeter.plugins.hadooputilities.jobstatistics.JobStatistics",
"com.atlantbh.jmeter.plugins.hadooputilities.jobstatistics.gui.JobStatisticsGui",
"com.atlantbh.jmeter.plugins.hbasecomponents.config.HBaseConnection",
"com.atlantbh.jmeter.plugins.hbasecomponents.config.gui.HBaseConnectionGui",
"com.atlantbh.jmeter.plugins.hbasecomponents.samplers.HBaseRowkeySampler",
"com.atlantbh.jmeter.plugins.hbasecomponents.samplers.HBaseScanSampler",
"com.atlantbh.jmeter.plugins.hbasecomponents.samplers.gui.HBaseRowKeySamplerGui",
"com.atlantbh.jmeter.plugins.hbasecomponents.samplers.gui.HBaseScanSamplerGui",
"com.atlantbh.jmeter.plugins.hbasecrud.HbaseCrud",
"com.atlantbh.jmeter.plugins.hbasecrud.gui.HbaseCrudGui"
],
"versions": {
"2.0": {
"downloadUrl": "https://search.maven.org/remotecontent?filepath=kg/apc/jmeter-plugins-hadoop/2.0/jmeter-plugins-hadoop-2.0.jar",
"libs": {
"jmeter-plugins-cmn-jmeter": "https://search.maven.org/remotecontent?filepath=kg/apc/jmeter-plugins-cmn-jmeter/0.7/jmeter-plugins-cmn-jmeter-0.7.jar",
"hbase": "https://search.maven.org/remotecontent?filepath=org/apache/hbase/hbase/0.94.5/hbase-0.94.5.jar",
"zookeeper": "https://search.maven.org/remotecontent?filepath=org/apache/zookeeper/zookeeper/3.4.5/zookeeper-3.4.5.jar",
"commons-beanutils": "https://search.maven.org/remotecontent?filepath=commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar",
"commons-configuration": "https://search.maven.org/remotecontent?filepath=commons-configuration/commons-configuration/1.6/commons-configuration-1.6.jar",
"guava": "https://search.maven.org/remotecontent?filepath=com/google/guava/guava/11.0.2/guava-11.0.2.jar",
"hadoop-core": "https://search.maven.org/remotecontent?filepath=org/apache/hadoop/hadoop-core/1.1.2/hadoop-core-1.1.2.jar",
"jackson-core-asl": "https://search.maven.org/remotecontent?filepath=org/codehaus/jackson/jackson-core-asl/1.8.8/jackson-core-asl-1.8.8.jar",
"jackson-mapper-asl": "https://search.maven.org/remotecontent?filepath=org/codehaus/jackson/jackson-mapper-asl/1.8.8/jackson-mapper-asl-1.8.8.jar"
}
}
}
},
{
"id": "websocket-samplers",
"name": "WebSocket Samplers by Peter Doornbosch",
"description": "Provides 6 samplers for load testing WebSocket applications. Use the WebSocket request-response sampler for testing a basic request-response flow (the most common case), or combine the other samplers to support a more sophisticated WebSocket test scenario.",
"screenshotUrl": "https://bytebucket.org/pjtr/jmeter-websocket-samplers/raw/master/docs/request-response-sample.png",
"helpUrl": "https://bitbucket.org/pjtr/jmeter-websocket-samplers/overview",
"vendor": "Peter Doornbosch",
"markerClass": "eu.luminis.jmeter.wssampler.RequestResponseWebSocketSampler",
"componentClasses": [
"eu.luminis.jmeter.assertions.BinaryContentAssertion",
"eu.luminis.jmeter.assertions.BinaryContentAssertionGUI",
"eu.luminis.jmeter.wssampler.BinaryFrameFilter",
"eu.luminis.jmeter.wssampler.BinaryFrameFilterGui",
"eu.luminis.jmeter.wssampler.CloseWebSocketSampler",
"eu.luminis.jmeter.wssampler.CloseWebSocketSamplerGui",
"eu.luminis.jmeter.wssampler.OpenWebSocketSampler",
"eu.luminis.jmeter.wssampler.OpenWebSocketSamplerGui",
"eu.luminis.jmeter.wssampler.PingFrameFilter",
"eu.luminis.jmeter.wssampler.PingFrameFilterGui",
"eu.luminis.jmeter.wssampler.PingPongSampler",
"eu.luminis.jmeter.wssampler.PingPongSamplerGui",
"eu.luminis.jmeter.wssampler.RequestResponseWebSocketSampler",
"eu.luminis.jmeter.wssampler.RequestResponseWebSocketSamplerGui",
"eu.luminis.jmeter.wssampler.SingleReadWebSocketSampler",
"eu.luminis.jmeter.wssampler.SingleReadWebSocketSamplerGui",
"eu.luminis.jmeter.wssampler.SingleWriteWebSocketSampler",
"eu.luminis.jmeter.wssampler.SingleWriteWebSocketSamplerGui",
"eu.luminis.jmeter.wssampler.TextFrameFilter",
"eu.luminis.jmeter.wssampler.TextFrameFilterGui"
],
"versions": {
"0.7.3": {
"downloadUrl": "https://github.com/ptrd/jmeter-websocket-samplers/releases/download/v0.7.3/JMeterWebSocketSamplers-0.7.3.jar",
"depends": [
"jmeter-core"
]
},
"0.8": {
"downloadUrl": "https://github.com/ptrd/jmeter-websocket-samplers/releases/download/v0.8/JMeterWebSocketSamplers-0.8.jar",
"depends": [
"jmeter-core"
]
},
"0.9": {
"changes": "Single read sampler can be made optional, which avoids the sampler to fail when no websocket frame is received; this is useful in test scenario's where you can not exactly predict the server's behavior.",
"downloadUrl": "https://github.com/ptrd/jmeter-websocket-samplers/releases/download/v0.9/JMeterWebSocketSamplers-0.9.jar",
"depends": [
"jmeter-core"
]
},
"0.10": {
"changes": "New feature: frame filters. To handle situations in which the server sends unsolicited messages and the occurrence of such messages is hard to predict or otherwise hard to take into account in the test plan, filters can be used to discard such messages before they are seen by a sampler.",
"downloadUrl": "https://github.com/ptrd/jmeter-websocket-samplers/releases/download/v0.10/JMeterWebSocketSamplers-0.10.jar",
"depends": [
"jmeter-core"
]
},
"0.11.1": {
"changes": "New feature: you can control what's happening with the websocket connections at the end of the test: leave open (default), close on websocket level or close on tcp level, by setting JMeter property websocket.thread.stop.policy. Fix: all result viewers will now correctly show the size of received bytes. Frame payload is counted as 'body', frame headers as 'headers'. By default, filtered frames do not contribute to 'received size', but this can be changed by setting JMeter property websocket.result.size_includes_filtered_frames.",
"downloadUrl": "https://github.com/ptrd/jmeter-websocket-samplers/releases/download/v0.11.1/JMeterWebSocketSamplers-0.11.1.jar",
"depends": [
"jmeter-core"
]
},
"0.12": {
"changes": "Added support for continuation frames.",
"downloadUrl": "https://github.com/ptrd/jmeter-websocket-samplers/releases/download/v0.12/JMeterWebSocketSamplers-0.12.jar",
"depends": [
"jmeter-core"
]
},
"1.0": {
"changes": "New feature: registers size of sent messages too. Requires JMeter version 3.1 or later!",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=net/luminis/jmeter/jmeter-websocket-samplers/1.0/jmeter-websocket-samplers-1.0.jar",
"depends": [
"jmeter-core"
]
},
"1.1": {
"changes": "Ready for / compatible with JMeter 4. New feature: send unsolicited pong.",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=net/luminis/jmeter/jmeter-websocket-samplers/1.1/jmeter-websocket-samplers-1.1.jar",
"depends": [
"jmeter-core"
]
},
"1.2": {
"changes": "Improved ping/pong filtering and added option to read (binary) payload data from file",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=net/luminis/jmeter/jmeter-websocket-samplers/1.2/jmeter-websocket-samplers-1.2.jar",
"depends": [
"jmeter-core"
]
},
"1.2.1": {
"changes": "Improved websocket receive performance",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=net/luminis/jmeter/jmeter-websocket-samplers/1.2.1/jmeter-websocket-samplers-1.2.1.jar",
"depends": [
"jmeter-core"
]
},
"1.2.2": {
"changes": "Improved memory usage for receiving binary messages",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=net/luminis/jmeter/jmeter-websocket-samplers/1.2.2/jmeter-websocket-samplers-1.2.2.jar",
"depends": [
"jmeter-core"
]
},
"1.2.7": {
"changes": "Fixed bug about not always correctly reading frame under heavy load in combination with short read timeouts, and some other minor bug fixes.",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=net/luminis/jmeter/jmeter-websocket-samplers/1.2.7/jmeter-websocket-samplers-1.2.7.jar",
"depends": [
"jmeter-core"
]
},
"1.2.8": {
"changes": "Added option to Single Read Sampler to read Text OR Binary, whatever is received.",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=net/luminis/jmeter/jmeter-websocket-samplers/1.2.8/jmeter-websocket-samplers-1.2.8.jar",
"depends": [
"jmeter-core"
]
},
"1.2.9": {
"changes": "Increased max read timeout; added data type for simplifying handling STOMP protocol messages.",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=net/luminis/jmeter/jmeter-websocket-samplers/1.2.9/jmeter-websocket-samplers-1.2.9.jar",
"depends": [
"jmeter-core"
]
},
"1.2.10": {
"changes": "Merge header managers when present, use Java 8 as before.",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=net/luminis/jmeter/jmeter-websocket-samplers/1.2.10/jmeter-websocket-samplers-1.2.10.jar",
"depends": [
"jmeter-core"
]
},
"1.3": {
"changes": "Added support for deflate/uncompress websocket messages (RFC 7692). ",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=net/luminis/jmeter/jmeter-websocket-samplers/1.3/jmeter-websocket-samplers-1.3.jar",
"depends": [
"jmeter-core"
]
},
"1.3.1": {
"changes": "Fixed bug (ClassCastException when reading unexpected frame in request-response sampler)",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=net/luminis/jmeter/jmeter-websocket-samplers/1.3.1/jmeter-websocket-samplers-1.3.1.jar",
"depends": [
"jmeter-core"
]
},
"1.3.2": {
"changes": "Fixed bug (memory leak due to repeated merging of Header Manager)",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=net/luminis/jmeter/jmeter-websocket-samplers/1.3.2/jmeter-websocket-samplers-1.3.2.jar",
"depends": [
"jmeter-core"
]
}
}
},
{
"id": "jmeter.backendlistener.elasticsearch",
"name": "ElasticSearch backend listener",
"description": "Apache JMeter plugin for sending sample results to an ElasticSearch engine. <ul><li>Simply add a \"Backend Listener\" and change the implementation</li><li>Change the listener's configuration</li><li>To use filters, simply seperate their name by a semicolon. (f1;f2;f3)</li></ul>",
"helpUrl": "https://github.com/delirius325/jmeter-elasticsearch-backend-listener",
"screenshotUrl": "https://camo.githubusercontent.com/03f25b0b0323f0f42470165187af0ee8b2528428/68747470733a2f2f696d6167652e6962622e636f2f6a57364c4e782f53637265656e5f53686f745f323031385f30335f32315f61745f31305f32315f31385f414d2e706e67",
"vendor": "Delirius325",
"markerClass": "io.github.delirius325.jmeter.backendlistener.elasticsearch.ElasticsearchBackendClient",
"versions": {
"2.4.1": {
"changes": "Added support for Xpack authentication",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=io/github/delirius325/jmeter.backendlistener.elasticsearch/2.4.1/jmeter.backendlistener.elasticsearch-2.4.1.jar"
},
"2.4.2": {
"changes": "Added string conversion to number for ElasticSearch",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=io/github/delirius325/jmeter.backendlistener.elasticsearch/2.4.2/jmeter.backendlistener.elasticsearch-2.4.2.jar"
},
"2.4.3": {
"changes": "Fixed class loader problem with JavaFX StringConverter class",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.4.3/jmeter.backendlistener.elasticsearch-2.4.3.jar"
},
"2.5.0": {
"changes": "Switched to low-level client v6.4 & added custom variables support",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=io/github/delirius325/jmeter.backendlistener.elasticsearch/2.5.0/jmeter.backendlistener.elasticsearch-2.5.0.jar"
},
"2.5.1": {
"changes": "Added way of adding all response headers as well as request headers as ElasticSearch Index properties. (Basically JSON key/value pairs)",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=io/github/delirius325/jmeter.backendlistener.elasticsearch/2.5.1/jmeter.backendlistener.elasticsearch-2.5.1.jar"
},
"2.5.2": {
"changes": "Fixed error with filters",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.5.2/jmeter.backendlistener.elasticsearch-2.5.2.jar"
},
"2.5.3": {
"changes": "Fixed error with filters (#2), refactored the method.",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.5.3/jmeter.backendlistener.elasticsearch-2.5.3.jar"
},
"2.5.4": {
"changes": "Fixed error with filters (#37), refactored the method.",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.5.4/jmeter.backendlistener.elasticsearch-2.5.4.jar"
},
"2.6.0": {
"changes": "Added AWS support, added RegExp support in filters, fixed bug with header parsing",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.6.0/jmeter.backendlistener.elasticsearch-2.6.0.jar"
},
"2.6.1": {
"changes": "Fixed bug with header parsing (#40, thanks @ncasaux)",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.6.1/jmeter.backendlistener.elasticsearch-2.6.1.jar"
},
"2.6.5": {
"changes": "New SSL feature, header parsing fixes, multiple little bug fixes.",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.6.5/jmeter.backendlistener.elasticsearch-2.6.5.jar"
},
"2.6.6": {
"changes": "Fixed issue with index types ES 7.0+",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.6.6/jmeter.backendlistener.elasticsearch-2.6.6.jar"
},
"2.6.7": {
"changes": "Fixed breaking issue with getElasticSearchVersion() method",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.6.7/jmeter.backendlistener.elasticsearch-2.6.7.jar"
},
"2.6.8": {
"changes": "Fixed breaking issue with SSL conflicts",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.6.8/jmeter.backendlistener.elasticsearch-2.6.8.jar"
},
"2.6.9": {
"changes": "Fixed breaking issue with SSL conflicts",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.6.9/jmeter.backendlistener.elasticsearch-2.6.9.jar"
},
"2.6.10": {
"changes": "Fixed issue with sending variables through headers (#61)",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.6.10/jmeter.backendlistener.elasticsearch-2.6.10.jar"
},
"2.6.11": {
"changes": "Fixed issue with deprecated methods resulting in errors and timeout issues",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.6.11/jmeter.backendlistener.elasticsearch-2.6.11.jar"
},
"2.7.0": {
"changes": "Added an exclude feature for filters",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.7.0/jmeter.backendlistener.elasticsearch-2.7.0.jar"
},
"2.7.1": {
"changes": "Added support for datastream indexes",
"downloadUrl": "https://github.com/anthonygauthier/jmeter-elasticsearch-backend-listener/releases/download/2.7.1/jmeter.backendlistener.elasticsearch-2.7.1.jar"
}
}
},
{
"id": "jmeter.pack-listener",
"name": "JMeter Listener pack",
"description": "This JMeter Plugin allows to write load test data on-the-fly to <a href=\"https://clickhouse.yandex\">ClickHouse</a> (as well as InfluxDB, ElasticSearch, with additional feature: aggregation of Samplers)<br />Explanations and usage examples on <a href=\"https://gitlab.com/testload/jmeter-listener/wikis/home\">project wiki.</a><br /> <a href=\"https://grafana.com/orgs/testload/dashboards\">Dashboards for ClickHouse.</a>",
"screenshotUrl": "https://gitlab.com/testload/jmeter-listener/wikis/uploads/498fd6f5a85d7ce62f5cad54f69f6ce7/Screenshot_at_May_08_14-21-40.png",
"helpUrl": "https://gitlab.com/testload/jmeter-listener/wikis/home",
"vendor": "Alexander Babaev",
"markerClass": "cloud.testload.jmeter.ClickHouseBackendListenerClient",
"versions": {
"1.5": {
"downloadUrl": "https://search.maven.org/remotecontent?filepath=cloud/testload/jmeter.pack-listener/1.5/jmeter.pack-listener-1.5.jar"
},
"1.7": {
"changes": "New ClickHouse table scheme jmresults(buffer)->jmresults_data(ops storage with extended data request/response)->jmresults_statistic(mat view as archive storage). New field (hostname) in stats",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=cloud/testload/jmeter.pack-listener/1.7/jmeter.pack-listener-1.7.jar"
}
}
},
{
"id": "jmeter.backendlistener.kafka",
"name": "Kafka backend listener",
"description": "Apache JMeter plugin for sending sample results to a Kafka server. <ul><li>Simply add a \"Backend Listener\" and change the implementation</li><li>Change the listener's configuration</li><li>To use filters, simply separate their name by a semicolon. (f1;f2;f3)</li></ul>",
"helpUrl": "https://github.com/rahulsinghai/jmeter-backend-listener-kafka/issues",
"screenshotUrl": "https://github.com/rahulsinghai/jmeter-backend-listener-kafka/blob/master/docs/configuration.JPG",
"vendor": "rahulsinghai",
"markerClass": "io.github.rahulsinghai.jmeter.backendlistener.kafka.KafkaBackendClient",
"versions": {
"1.0.0": {
"changes": "Initial version.",
"downloadUrl": "https://search.maven.org/remotecontent?filepath=io/github/rahulsinghai/jmeter.backendlistener.kafka/1.0.0/jmeter.backendlistener.kafka-1.0.0.jar",
"depends": []
}
}
},
{
"id": "ulp-jmeter-autocorrelator-plugin",
"name": "UbikLoadPack Auto-correlator plugin",
"description": "Plugin which provides the ability to easily load tests Vaadin, Oracle Siebel, Oracle PeopleSoft, Oracle Hyperion and Oracle JD-Edwards EntrepriseOne (JDE Eone) applications with Apache JMeter",
"screenshotUrl": "https://ubikloadpack.com/plugins/ulp-jmeter-autocorrelator-plugin/ulp_ac_presentationScreenshot.png",
"helpUrl": "https://www.ubik-ingenierie.com/blog/ubikloadpack-autocorrelator-plugin-help/",
"vendor": "UbikLoadPack by Ubik-Ingenierie",
"markerClass": "com.ubikingenierie.jmeter.plugin.autocorrelator.prepro.AutoCorrelatorPreProcessor",
"componentClasses": [
"com.ubikingenierie.jmeter.plugin.autocorrelator.postpro.AutoCorrelatorPostProcessor",
"com.ubikingenierie.jmeter.plugin.autocorrelator.postpro.AutoCorrelatorPostProcessorGui",
"com.ubikingenierie.jmeter.plugin.autocorrelator.prepro.AutoCorrelatorPreProcessor",
"com.ubikingenierie.jmeter.plugin.autocorrelator.prepro.AutoCorrelatorPreProcessorGui"
],
"versions": {
"4.2.0": {
"downloadUrl": "https://ubikloadpack.com/plugins/ulp-jmeter-autocorrelator-plugin/4.2.0/ubik-jmeter-autocorrelator-plugin-4.2.0.jar",
"depends": [
"jmeter-core",
"jmeter-components",
"jmeter-http"
]
}
}
},
{
"id": "ulp-jmeter-videostreaming-plugin",
"name": "UbikLoadPack Video Streaming plugin",
"description": "Plugin which provides the ability to easily load test servers delivering Adaptive Bitrate Streaming (ABR). It supports the following implementations: Low Latency Mpeg-Dash, Mpeg-Dash, Apple HLS / Low-Latency HLS (LL-HLS), HLS SGAI (Interstitials), Microsoft Smooth (HSS) and Adobe HDS. Both Live and VOD streams are automatically handled. The plugin realistically simulates players and outputs video specific metrics allowing you to analyze User Experience. It supports HTTP 1.1 and HTTP/2. It also allows to simulate CDN behaviour with Video Streams.",
"screenshotUrl": "https://ubikloadpack.com/plugins/ulp-jmeter-streaming-plugin/ulp_vs_screenshot_910.png",
"helpUrl": "https://www.ubik-ingenierie.com/blog/ubikloadpack-streaming-plugin-help/",
"vendor": "UbikLoadPack by Ubik-Ingenierie",
"markerClass": "com.ubikingenierie.jmeter.plugin.hls.sampler.HLSSampler",
"componentClasses": [
"com.ubikingenierie.jmeter.plugin.hls.sampler.HLSSampler",
"com.ubikingenierie.jmeter.plugin.hls.gui.HLSSamplerGUI"
],