Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Merge requests
!202
Add option to generate load via HTTP
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Add option to generate load via HTTP
http-load-generator
into
master
Overview
0
Commits
6
Pipelines
7
Changes
9
Merged
Add option to generate load via HTTP
Sören Henning
requested to merge
http-load-generator
into
master
Dec 2, 2021
Overview
0
Commits
6
Pipelines
7
Changes
9
Closes
#279 (closed)
Edited
Jan 18, 2022
by
Sören Henning
0
0
Merge request reports
Compare
master
version 6
406da094
Jan 18, 2022
version 5
f769f8e7
Jan 18, 2022
version 4
0c0ec0c8
Jan 18, 2022
version 3
07e86126
Dec 2, 2021
version 2
07e86126
Dec 2, 2021
version 1
bf02aa55
Dec 2, 2021
master (base)
and
latest version
latest version
60503b73
6 commits,
Jan 18, 2022
version 6
406da094
5 commits,
Jan 18, 2022
version 5
f769f8e7
4 commits,
Jan 18, 2022
version 4
0c0ec0c8
3 commits,
Jan 18, 2022
version 3
07e86126
2 commits,
Dec 2, 2021
version 2
07e86126
3 commits,
Dec 2, 2021
version 1
bf02aa55
1 commit,
Dec 2, 2021
9 files
+
247
−
23
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
theodolite-benchmarks/load-generator-commons/src/main/java/theodolite/commons/workloadgeneration/ConfigurationKeys.java
+
4
−
0
View file @ 60503b73
Edit in single-file editor
Open in Web IDE
Show full file
@@ -23,6 +23,8 @@ public final class ConfigurationKeys {
public
static
final
String
THREADS
=
"THREADS"
;
public
static
final
String
TARGET
=
"TARGET"
;
public
static
final
String
KAFKA_BOOTSTRAP_SERVERS
=
"KAFKA_BOOTSTRAP_SERVERS"
;
public
static
final
String
SCHEMA_REGISTRY_URL
=
"SCHEMA_REGISTRY_URL"
;
@@ -35,6 +37,8 @@ public final class ConfigurationKeys {
public
static
final
String
KAFKA_BUFFER_MEMORY
=
"KAFKA_BUFFER_MEMORY"
;
public
static
final
String
HTTP_URI
=
"HTTP_URI"
;
private
ConfigurationKeys
()
{}
}
Loading