-
Notifications
You must be signed in to change notification settings - Fork 1
/
openapi.yaml
322 lines (322 loc) · 8.17 KB
/
openapi.yaml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
openapi: '3.0.1'
info:
title: Locust swarm API
version: '1.0'
servers:
- url: http://localhost:8081/api
paths:
/config:
get:
summary: Get the basic configuration of the swarm
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
/ping:
get:
summary: "Very basic check if Server is running"
responses:
'200':
description: OK
content:
'text/plain':
schema:
type: string
/status:
get:
summary: "Get a list of all managed instances"
responses:
'200':
description: OK
/reload:
get:
summary: "Reload the current Kubernetes resources to app state"
responses:
'200':
description: OK
/metrics:
get:
summary: "Prometheus Loadtest result metrics"
responses:
'200':
description: OK
/locustfile:
get:
tags:
- Locustfile
summary: "Get a list of all configured locustfiles"
responses:
'200':
description: OK
parameters:
- name: "namespace"
in: "query"
description: "The namespace where the config is located"
required: false
schema:
type: string
/locustfile/{locustfile}:
parameters:
- name: "namespace"
in: "query"
description: "The namespace where the config is located"
required: false
schema:
type: string
- name: "locustfile"
in: "path"
description: "The Name of the configile"
required: true
schema:
type: string
post:
tags:
- Locustfile
summary: "Create a new locustfile"
requestBody:
content:
text/plain:
schema:
type: string
responses:
'200':
description: OK
parameters:
- name: "content"
in: "query"
description: "Locustfile content"
required: true
schema:
type: string
delete:
tags:
- Locustfile
summary: "Delete a locustfile"
responses:
'200':
description: OK
/lib:
get:
tags:
- Library
summary: "Get a list of all configured libs"
responses:
'200':
description: OK
parameters:
- name: "namespace"
in: "query"
description: "The namespace where the library is located"
required: false
schema:
type: string
/lib/{library}:
parameters:
- name: "namespace"
in: "query"
description: "The namespace where the library is located"
required: false
schema:
type: string
- name: "library"
in: "path"
description: "Name of the library to create"
required: true
schema:
type: string
post:
tags:
- Library
summary: "Create a new library file"
responses:
'200':
description: OK
parameters:
- name: "content"
in: "query"
description: "Library content"
required: true
schema:
type: string
delete:
tags:
- Library
summary: "Delete a library file"
responses:
'200':
description: OK
/instance:
get:
tags:
- Instance
summary: "Get list of locust instances in a namespace"
responses:
'200':
description: OK
parameters:
- name: "namespace"
in: "query"
description: "The namespace to query"
required: false
schema:
type: string
/instance/{instance}/{locustfile}:
post:
tags:
- Instance
summary: "Create a new Locust instance"
responses:
'200':
description: OK
parameters:
- name: "namespace"
in: "query"
description: "The namespace where to create the instance"
required: false
schema:
type: string
- name: "instance"
in: "path"
description: "Name of the instance to create"
required: true
schema:
type: string
- name: "locustfile"
in: "path"
description: "The locustfile to use in the instance"
required: true
schema:
type: string
- name: "hostname"
in: "query"
description: "The hostname where the instance will be available"
required: false
schema:
type: string
- name: "workers"
in: "query"
description: "The number of workers to provision"
required: false
schema:
type: string
- name: "testHost"
in: "query"
description: "The Host where test should be applied"
required: false
schema:
type: string
- name: "numUsers"
in: "query"
description: "Peak number of concurrent Locust users. Primarily used together with –headless or –autostart. Can be changed during a test by keyboard inputs w, W (spawn 1, 10 users) and s, S (stop 1, 10 users)"
required: false
schema:
type: string
- name: "spawnRate"
in: "query"
description: "Rate to spawn users at (users per second)"
required: false
schema:
type: string
- name: "run_time"
in: "query"
description: "Stop after the specified amount of time, e.g. (300s, 20m, 3h, 1h30m, etc.). Only used together with –headless or –autostart. Defaults to run forever."
required: false
schema:
type: string
- name: "autostart"
in: "query"
description: "Starts the test immediately."
required: false
schema:
type: string
- name: "autodelete"
in: "query"
description: "Delete the locust kubernetes instance when it has stopped"
required: false
schema:
type: string
/instance/{instance}:
delete:
tags:
- Instance
summary: "Delete a Locust instance"
responses:
'200':
description: OK
parameters:
- name: "namespace"
in: "query"
description: "The namespace to create the instance"
required: false
schema:
type: string
- name: "instance"
in: "path"
description: "Name of the instance to create"
required: true
schema:
type: string
/loadtest/{instance}:
get:
tags:
- Loadtest
summary: "Start a loadtest"
responses:
'200':
description: OK
delete:
tags:
- Loadtest
summary: "Stop/abort a loadtest"
responses:
'200':
description: OK
parameters:
- name: "namespace"
in: "query"
description: "The namespace to create the instance"
required: false
schema:
type: string
- name: "instance"
in: "path"
description: "Name of the instance to create"
required: true
schema:
type: string
- name: "userCount"
in: "query"
description: "Peak number of concurrent Locust users. Primarily used together with –headless or –autostart. Can be changed during a test by keyboard inputs w, W (spawn 1, 10 users) and s, S (stop 1, 10 users)"
required: false
schema:
type: string
- name: "spawnRate"
in: "query"
description: "Rate to spawn users at (users per second)."
required: false
schema:
type: string
- name: "testHost"
in: "query"
description: "Host to load test in the following format: http://10.21.32.33"
required: false
schema:
type: string
/namespace/{namespace}/init:
post:
tags:
- Namespace
summary: "Create and prepare a namespace"
responses:
'200':
description: OK
parameters:
- name: "namespace"
in: "path"
description: "The namespace to prepare"
required: true
schema:
type: string