diff options
author | Tomasz Wrobel <tomasz.wrobel@nokia.com> | 2020-05-29 08:02:39 +0200 |
---|---|---|
committer | Kornel Janiak <kornel.janiak@nokia.com> | 2020-06-04 13:22:31 +0000 |
commit | b44416a72f3ce23a3254229c9f469c21df86c82f (patch) | |
tree | 503be194f34b60c3be5cc41433a8121ca336522d /tools/performance/cloud/producers-config | |
parent | b6f19c8aad44a300eb84a8979abaa02a267b0162 (diff) |
Refactor performance scripts
-change scripts to use deployment instead of pod
-add function for instant,inverval mode
-add config files
-remove unused variable from test.properties
Issue-ID: DCAEGEN2-1576
Change-Id: Ice889f7e8e1dd2d787c7b59a9701669a93a7cfb1
Signed-off-by: Tomasz Wrobel <tomasz.wrobel@nokia.com>
Diffstat (limited to 'tools/performance/cloud/producers-config')
3 files changed, 19 insertions, 0 deletions
diff --git a/tools/performance/cloud/producers-config/instant-config.json b/tools/performance/cloud/producers-config/instant-config.json new file mode 100644 index 00000000..486bb077 --- /dev/null +++ b/tools/performance/cloud/producers-config/instant-config.json @@ -0,0 +1,3 @@ +{ + "connections": 500 +} diff --git a/tools/performance/cloud/producers-config/interval-config.json b/tools/performance/cloud/producers-config/interval-config.json new file mode 100644 index 00000000..62deb8c4 --- /dev/null +++ b/tools/performance/cloud/producers-config/interval-config.json @@ -0,0 +1,12 @@ +{ + "intervalConfigs": [ + { + "duration": 1, + "interval": 100 + }, + { + "duration": 2, + "interval": 100 + } + ] +} diff --git a/tools/performance/cloud/producers-config/producer-config.json b/tools/performance/cloud/producers-config/producer-config.json new file mode 100644 index 00000000..74972e61 --- /dev/null +++ b/tools/performance/cloud/producers-config/producer-config.json @@ -0,0 +1,4 @@ +{ + "payloadSize": 8192, + "messageIntervalMs": 500 +} |