1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{
"comment": "Connect to multiple loggerhead instances and make requests on each. One should be on :8080, one should be on :8081. Multiple threads will place requests on each.",
"parameters": {"base_url": "http://localhost"},
"requests": [
{"thread": "1", "relpath": ":8080/changes"},
{"thread": "2", "relpath": ":8080/files"},
{"thread": "3", "relpath": ":8081/files"},
{"thread": "4", "relpath": ":8081/changes"},
{"thread": "1", "relpath": ":8080/changes"},
{"thread": "2", "relpath": ":8080/files"},
{"thread": "3", "relpath": ":8081/files"},
{"thread": "4", "relpath": ":8081/changes"},
{"thread": "1", "relpath": ":8080/changes"},
{"thread": "2", "relpath": ":8080/files"},
{"thread": "3", "relpath": ":8081/files"},
{"thread": "4", "relpath": ":8081/changes"}
]
}
|