Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

L4-7 models #263

Draft
wants to merge 34 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
6cbd1fd
L4-7 models
waseembaig Aug 29, 2022
a23befe
updated model
waseembaig Sep 8, 2022
a530881
Updated with model
waseembaig Sep 8, 2022
b5f4a54
Merge branch 'master' into Ixload-models
waseembaig Sep 9, 2022
084b9a4
updated with x-field-uid
waseembaig Sep 9, 2022
4d4f47b
updated with x-field-uid
waseembaig Sep 9, 2022
fea185c
Update auto generated content
actions-user Sep 9, 2022
edd99ca
L4-L7 approach 2
waseembaig Sep 19, 2022
4da8e6b
Update auto generated content
actions-user Sep 19, 2022
d25e0c9
L4-L7 model
waseembaig Sep 20, 2022
7673243
Merge branch 'Ixload-models' of https://github.com/open-traffic-gener…
waseembaig Sep 20, 2022
f4ad745
Revert "Merge branch 'Ixload-models' of https://github.com/open-traff…
waseembaig Sep 20, 2022
21d176d
Update auto generated content
actions-user Sep 20, 2022
098886b
L4-7 model
waseembaig Sep 20, 2022
24a27e9
Update auto generated content
actions-user Sep 20, 2022
8cb7990
L4-7 models
waseembaig Sep 20, 2022
51fab7a
Merge branch 'Ixload-models' of https://github.com/open-traffic-gener…
waseembaig Sep 20, 2022
18c5e63
Revert "Merge branch 'Ixload-models' of https://github.com/open-traff…
waseembaig Sep 20, 2022
d9e832a
updated methods
waseembaig Sep 20, 2022
375dbc2
updated methods
waseembaig Sep 20, 2022
e8994a8
concurrent_conn
waseembaig Sep 20, 2022
daf8f63
Updated with review comments
waseembaig92 Oct 19, 2022
9b43e80
updated
waseembaig Oct 19, 2022
78ed28f
update
waseembaig Oct 20, 2022
62e9162
Merge branch 'master' into Ixload-models
waseembaig Oct 20, 2022
a00158b
updated with review comments
waseembaig Oct 20, 2022
635c867
update_objectives
waseembaig Oct 20, 2022
b897b7f
update
waseembaig Oct 20, 2022
f5c76af
Update auto generated content
actions-user Oct 20, 2022
3ab6257
review comments updates
waseembaig Nov 14, 2022
b4b40d0
Merge branch 'Ixload-models' of https://github.com/open-traffic-gener…
waseembaig Nov 14, 2022
98b7894
updated with defaults
waseembaig Mar 20, 2023
e3b4a7f
Updated with defaults
waseembaig Mar 20, 2023
8c5bc80
updated models
waseembaig Mar 28, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/info.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ info:
Contributions can be made in the following ways:
- [open an issue](https://github.com/open-traffic-generator/models/issues) in the models repository
- [fork the models repository](https://github.com/open-traffic-generator/models) and submit a PR
version: 0.9.2
version: 0.9.6
contact:
url: https://github.com/open-traffic-generator/models
license:
Expand Down
10 changes: 5 additions & 5 deletions app/http/httpclient.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ components:
type: string
x-field-uid: 2
x-enum:
"1.0":
"v10":
x-field-uid: 1
"1.1":
"v11":
x-field-uid: 2
"2.0":
"v20":
x-field-uid: 3
default: "1.0"
default: "v10"
cookie_jar_size:
description: >-
cookie_jar_size the number of cookies that will be saved for each client. The maximum value of this is 300. (only if enable_cookie_support is enabled)
Expand All @@ -33,7 +33,7 @@ components:
x-field-uid: 3
cookie_reject_probability:
description: >-
cookie_reject_probability indicates the probability, from 0 to 1, that a client will reject a request for a cookie’s contents from the server. (only if enable_cookie_support is enabled)
cookie_reject_probability indicates the probability, from 0 to 1, that a client will reject a request for a cookie(s) contents from the server. (only if enable_cookie_support is enabled)
type: integer
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be an integer or some other type?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated with boolean

default: 0
x-field-uid: 4
Expand Down
10 changes: 5 additions & 5 deletions app/http/httpserver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ components:
type: string
x-field-uid: 2
x-enum:
"1.0":
"v10":
x-field-uid: 1
"1.1":
"v11":
x-field-uid: 2
"2.0":
"v20":
x-field-uid: 3
default: "1.0"
default: "v10"
http_port:
description: >-
The port number to which the HTTP server will respond to non-SSL requests.
Expand All @@ -33,7 +33,7 @@ components:
x-field-uid: 3
request_timeout:
description: >-
The amount of seconds that the server will wait for input on an open connection before closing the session with a 408 error.
The amount of seconds that the server will wait for input on an open connection before closing the session with a 408 error.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The amount of seconds --> The number of seconds

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated in PR

type: integer
default: 300
x-field-uid: 4
Expand Down
8 changes: 4 additions & 4 deletions app/statefull_flow/objective.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ components:
x-field-uid: 1
throughput:
x-field-uid: 2
conn_connections:
concurrent_connections:
x-field-uid: 3
simulated_user:
x-field-uid: 2
$ref: '#/components/schemas/Objective.Simulated_user'
throughput:
x-field-uid: 3
$ref: '#/components/schemas/Objective.Throughput'
conn_connections:
concurrent_connections:
x-field-uid: 4
$ref: '#/components/schemas/Objective.Conn_curr'

Expand All @@ -39,7 +39,7 @@ components:
x-field-uid: 1
ramp_up_type:
description: >-
Ramp up type for test.
Ramp up type to either bring up users at a certain rate.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The description is still not fully clear to me.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated in PR

type: string
x-field-uid: 2
x-enum:
Expand All @@ -49,7 +49,7 @@ components:
x-field-uid: 2
"immediate":
x-field-uid: 3
default: "1.0"
default: "users_intervals"
ramp_up_value:
description: >-
Value applied to ramp_up_type to either bring up users at a certain rate.
Expand Down
725 changes: 725 additions & 0 deletions artifacts/openapi.html

Large diffs are not rendered by default.

Loading