forked from project-flogo/contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
descriptor.json
42 lines (42 loc) · 1.02 KB
/
descriptor.json
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
{
"name": "flogo-loader",
"type": "flogo:trigger",
"version": "0.10.0",
"title": "Load Tester",
"description": "Simple Load Tester",
"homepage": "https://github.com/project-flogo/contrib/tree/master/trigger/loadtester",
"settings": [
{
"name": "startDelay",
"type": "int",
"description": "The start delay of the test in seconds, default: 30"
},
{
"name": "concurrency",
"type": "int",
"description": "The level of concurrency, default: 5"
},
{
"name": "duration",
"type": "int",
"description": "The duration of the test in seconds, default: 60"
},
{
"name": "data",
"type": "any",
"description": "Optional data to pass along to the action"
},
{
"name": "handler",
"type": "string",
"description": "The named handler to test, defaults to the first handler"
}
],
"output": [
{
"name": "data",
"type": "any",
"description": "The data from the settings to pass along"
}
]
}