forked from serverlessworkflow/specification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kpi.json
282 lines (282 loc) · 7.52 KB
/
kpi.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
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
{
"$id": "https://serverlessworkflow.io/schemas/0.7/extensions/kpi.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Serverless Workflow specification - KPIs Extension Schema",
"type": "object",
"definitions": {
"kpi": {
"type": "object",
"description": "Serverless Workflow KPI Extension",
"properties": {
"extensionid": {
"type": "string",
"default": "workflow-kpi-extension",
"description": "Extension unique identifier"
},
"workflowid": {
"type": "string",
"minLength": 1,
"description": "Workflow definition unique identifier (workflow id property)"
},
"currency": {
"type": "string",
"default": "USD",
"description": "Unit for all cost-based KPI parameters. Default 'USD'"
},
"events": {
"type": "array",
"description": "Events KPIs",
"items": {
"type": "object",
"$ref": "#/definitions/eventskpi"
}
},
"functions": {
"type": "array",
"description": "Functions KPIs",
"items": {
"type": "object",
"$ref": "#/definitions/functionskpi"
}
},
"states": {
"type": "array",
"description": "States KPIs",
"items": {
"type": "object",
"$ref": "#/definitions/stateskpi"
}
},
"workflow": {
"description": "Workflow KPIs",
"$ref": "#/definitions/workflowkpi"
}
},
"required": [
"extensionid",
"workflowid"
]
},
"eventskpi": {
"type": "object",
"properties": {
"for": {
"type": "string",
"description": "References an unique event name in the defined workflow events"
},
"per": {
"description": "Define the kpi thresholds in terms of time and/or num of workflow instances",
"$ref": "#/definitions/thresholds"
},
"maxConsumed": {
"type": "string",
"description": "If event kind is 'consumed', the max amount of times this event is consumed"
},
"minConsumed": {
"type": "string",
"description": "If event kind is 'consumed', the min amount of times this event is consumed"
},
"avgConsumed": {
"type": "string",
"description": "If event kind is 'consumed', the avg amount of times this event is consumed"
},
"maxProduced": {
"type": "string",
"description": "If event kind is 'produced', the max amount of times this event is produced"
},
"minProduced": {
"type": "string",
"description": "If event kind is 'produced', the min amount times this event is produced"
},
"avgProduced": {
"type": "string",
"description": "If event kind is 'produced', the avg amount of times this event is produced"
}
},
"required": [
"for",
"per"
]
},
"functionskpi": {
"type": "object",
"allOf": [
{
"properties": {
"for": {
"type": "string",
"description": "References an unique function name in the defined workflow functions"
},
"per": {
"description": "Define the kpi thresholds in terms of time and/or num of workflow instances",
"$ref": "#/definitions/thresholds"
},
"maxErrors": {
"type": "string",
"description": "Max number of errors during function invocation"
},
"maxRetry": {
"type": "string",
"description": "Max number of retries done for this function invocation"
},
"maxTimeout": {
"type": "string",
"description": "Max number of times the function timeout time was reached"
}
}
},
{
"$ref": "#/definitions/invocationkpis"
},
{
"$ref": "#/definitions/costkpis"
}
],
"required": [
"for",
"per"
]
},
"stateskpi": {
"type": "object",
"allOf": [
{
"properties": {
"for": {
"type": "string",
"description": "References an unique state name in the defined workflow events"
},
"per": {
"description": "Define the kpi thresholds in terms of time and/or num of workflow instances",
"$ref": "#/definitions/thresholds"
}
}
},
{
"$ref": "#/definitions/execkpis"
},
{
"$ref": "#/definitions/durationkpis"
},
{
"$ref": "#/definitions/costkpis"
}
],
"required": [
"for",
"per"
]
},
"workflowkpi": {
"type": "object",
"allOf": [
{
"properties": {
"per": {
"description": "Define the kpi thresholds in terms of time and/or num of workflow instances",
"$ref": "#/definitions/thresholds"
}
}
},
{
"$ref": "#/definitions/invocationkpis"
},
{
"$ref": "#/definitions/durationkpis"
},
{
"$ref": "#/definitions/costkpis"
}
],
"required": [
"per"
]
},
"thresholds": {
"type": "object",
"properties": {
"time": {
"type": "string",
"default": "PT1D",
"description": "ISO_8601 time. 1 day default"
},
"instances": {
"type": "integer",
"minimum": 1,
"default": 1,
"description": "Number of workflow instances"
}
},
"required": [
]
},
"costkpis": {
"type": "object",
"properties": {
"maxCost": {
"type": "string",
"description": "Max cost"
},
"minCost": {
"type": "string",
"description": "Min cost"
},
"avgCost": {
"type": "string",
"description": "Avg cost"
}
}
},
"invocationkpis": {
"type": "object",
"properties": {
"maxInvoked": {
"type": "string",
"description": "Max number of invocation times"
},
"minInvoked": {
"type": "string",
"description": "Min number of invocation times"
},
"avgInvoked": {
"type": "string",
"description": "Avg number of invocation times"
}
}
},
"durationkpis": {
"type": "object",
"properties": {
"maxDuration": {
"type": "string",
"description": "ISO 8601. Max duration"
},
"minDuration": {
"type": "string",
"description": "ISO 8601. Min duration"
},
"avgDuration": {
"type": "string",
"description": "ISO 8601. Avg duration"
}
}
},
"execkpis": {
"type": "object",
"properties": {
"maxExec": {
"type": "string",
"description": "Max exec number"
},
"minExec": {
"type": "string",
"description": "Min exec numbe"
},
"avgExec": {
"type": "string",
"description": "Avg exec number"
}
}
}
}
}