funktor 0.7.10 → 0.7.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/funktor-testapp/funktor_config/resources/cloudwatch_dashboard.yml +766 -274
- data/funktor-testapp/funktor_init.yml +6 -0
- data/lib/funktor/cli/init.rb +4 -0
- data/lib/funktor/cli/templates/funktor_config/resources/cloudwatch_dashboard.yml +353 -60
- data/lib/funktor/cli/templates/funktor_init.yml.tt +4 -0
- data/lib/funktor/version.rb +1 -1
- metadata +2 -2
@@ -21,161 +21,652 @@ Resources:
|
|
21
21
|
},
|
22
22
|
|
23
23
|
|
24
|
+
{
|
25
|
+
"height": 4,
|
26
|
+
"width": 12,
|
27
|
+
"y": 3,
|
28
|
+
"x": 0,
|
29
|
+
"type": "metric",
|
30
|
+
"properties": {
|
31
|
+
"metrics": [
|
32
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "HelloWorker" ],
|
33
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "GreetingsWorker" ],
|
34
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "AuditWorker" ],
|
35
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "SingleThreadAuditWorker" ]
|
36
|
+
],
|
37
|
+
"view": "timeSeries",
|
38
|
+
"stacked": false,
|
39
|
+
"region": "us-east-1",
|
40
|
+
"title": "Processed Jobs By Worker",
|
41
|
+
"period": 60,
|
42
|
+
"stat": "Sum"
|
43
|
+
}
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"height": 4,
|
47
|
+
"width": 12,
|
48
|
+
"y": 3,
|
49
|
+
"x": 12,
|
50
|
+
"type": "metric",
|
51
|
+
"properties": {
|
52
|
+
"metrics": [
|
53
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker" ],
|
54
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "GreetingsWorker" ],
|
55
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker" ],
|
56
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "SingleThreadAuditWorker" ]
|
57
|
+
],
|
58
|
+
"view": "timeSeries",
|
59
|
+
"stacked": false,
|
60
|
+
"region": "us-east-1",
|
61
|
+
"stat": "p90",
|
62
|
+
"period": 60,
|
63
|
+
"title": "p90 by Worker"
|
64
|
+
}
|
65
|
+
},
|
66
|
+
|
67
|
+
|
68
|
+
{
|
69
|
+
"height": 4,
|
70
|
+
"width": 12,
|
71
|
+
"y": 6,
|
72
|
+
"x": 0,
|
73
|
+
"type": "metric",
|
74
|
+
"properties": {
|
75
|
+
"metrics": [
|
76
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "HelloWorker" ],
|
77
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "GreetingsWorker" ],
|
78
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "AuditWorker" ],
|
79
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "SingleThreadAuditWorker" ]
|
80
|
+
],
|
81
|
+
"view": "timeSeries",
|
82
|
+
"stacked": false,
|
83
|
+
"region": "us-east-1",
|
84
|
+
"title": "Failed Jobs By Worker",
|
85
|
+
"period": 60,
|
86
|
+
"stat": "Sum"
|
87
|
+
}
|
88
|
+
},
|
89
|
+
{
|
90
|
+
"height": 4,
|
91
|
+
"width": 12,
|
92
|
+
"y": 6,
|
93
|
+
"x": 12,
|
94
|
+
"type": "metric",
|
95
|
+
"properties": {
|
96
|
+
"metrics": [
|
97
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker" ],
|
98
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "GreetingsWorker" ],
|
99
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker" ],
|
100
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "SingleThreadAuditWorker" ]
|
101
|
+
],
|
102
|
+
"view": "timeSeries",
|
103
|
+
"stacked": false,
|
104
|
+
"region": "us-east-1",
|
105
|
+
"stat": "p50",
|
106
|
+
"period": 60,
|
107
|
+
"title": "p50 by Worker"
|
108
|
+
}
|
109
|
+
},
|
110
|
+
|
111
|
+
|
112
|
+
{
|
113
|
+
"height": 4,
|
114
|
+
"width": 12,
|
115
|
+
"y": 9,
|
116
|
+
"x": 0,
|
117
|
+
"type": "metric",
|
118
|
+
"properties": {
|
119
|
+
"metrics": [
|
120
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "Queue", "default" ],
|
121
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "Queue", "low_concurrency" ]
|
122
|
+
],
|
123
|
+
"view": "timeSeries",
|
124
|
+
"stacked": false,
|
125
|
+
"region": "us-east-1",
|
126
|
+
"title": "Processed Jobs By Queue",
|
127
|
+
"period": 60,
|
128
|
+
"stat": "Sum"
|
129
|
+
}
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"height": 4,
|
133
|
+
"width": 12,
|
134
|
+
"y": 9,
|
135
|
+
"x": 12,
|
136
|
+
"type": "metric",
|
137
|
+
"properties": {
|
138
|
+
"metrics": [
|
139
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "Queue", "default" ],
|
140
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "Queue", "low_concurrency" ]
|
141
|
+
],
|
142
|
+
"view": "timeSeries",
|
143
|
+
"stacked": false,
|
144
|
+
"region": "us-east-1",
|
145
|
+
"stat": "p90",
|
146
|
+
"period": 60,
|
147
|
+
"title": "p90 by Queue"
|
148
|
+
}
|
149
|
+
},
|
150
|
+
|
151
|
+
|
152
|
+
{
|
153
|
+
"height": 4,
|
154
|
+
"width": 12,
|
155
|
+
"y": 12,
|
156
|
+
"x": 0,
|
157
|
+
"type": "metric",
|
158
|
+
"properties": {
|
159
|
+
"metrics": [
|
160
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "Queue", "default" ],
|
161
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "Queue", "low_concurrency" ]
|
162
|
+
],
|
163
|
+
"view": "timeSeries",
|
164
|
+
"stacked": false,
|
165
|
+
"region": "us-east-1",
|
166
|
+
"title": "Failed Jobs By Queue",
|
167
|
+
"period": 60,
|
168
|
+
"stat": "Sum"
|
169
|
+
}
|
170
|
+
},
|
171
|
+
{
|
172
|
+
"height": 4,
|
173
|
+
"width": 12,
|
174
|
+
"y": 12,
|
175
|
+
"x": 12,
|
176
|
+
"type": "metric",
|
177
|
+
"properties": {
|
178
|
+
"metrics": [
|
179
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "Queue", "default" ],
|
180
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "Queue", "low_concurrency" ]
|
181
|
+
],
|
182
|
+
"view": "timeSeries",
|
183
|
+
"stacked": false,
|
184
|
+
"region": "us-east-1",
|
185
|
+
"stat": "p50",
|
186
|
+
"period": 60,
|
187
|
+
"title": "p50 by Queue"
|
188
|
+
}
|
189
|
+
},
|
190
|
+
|
24
191
|
|
25
192
|
{
|
26
193
|
"height": 1,
|
27
194
|
"width": 24,
|
28
|
-
"y":
|
195
|
+
"y": 15,
|
29
196
|
"x": 0,
|
30
197
|
"type": "text",
|
31
198
|
"properties": {
|
32
|
-
"markdown": "\n#
|
199
|
+
"markdown": "\n# Jobs Per Minute By Worker\n"
|
33
200
|
}
|
34
201
|
},
|
35
202
|
|
36
203
|
|
204
|
+
|
205
|
+
|
206
|
+
{
|
207
|
+
"height": 3,
|
208
|
+
"width": 4,
|
209
|
+
"y": 16,
|
210
|
+
"x": 0,
|
211
|
+
"type": "metric",
|
212
|
+
"properties": {
|
213
|
+
"metrics": [
|
214
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "HelloWorker" ]
|
215
|
+
],
|
216
|
+
"view": "timeSeries",
|
217
|
+
"stacked": false,
|
218
|
+
"region": "us-east-1",
|
219
|
+
"title": "HelloWorker Jobs/Min",
|
220
|
+
"period": 60,
|
221
|
+
"stat": "Sum",
|
222
|
+
"legend": {
|
223
|
+
"position": "hidden"
|
224
|
+
}
|
225
|
+
}
|
226
|
+
},
|
227
|
+
|
228
|
+
{
|
229
|
+
"height": 3,
|
230
|
+
"width": 4,
|
231
|
+
"y": 16,
|
232
|
+
"x": 4,
|
233
|
+
"type": "metric",
|
234
|
+
"properties": {
|
235
|
+
"metrics": [
|
236
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "GreetingsWorker" ]
|
237
|
+
],
|
238
|
+
"view": "timeSeries",
|
239
|
+
"stacked": false,
|
240
|
+
"region": "us-east-1",
|
241
|
+
"title": "GreetingsWorker Jobs/Min",
|
242
|
+
"period": 60,
|
243
|
+
"stat": "Sum",
|
244
|
+
"legend": {
|
245
|
+
"position": "hidden"
|
246
|
+
}
|
247
|
+
}
|
248
|
+
},
|
249
|
+
|
250
|
+
{
|
251
|
+
"height": 3,
|
252
|
+
"width": 4,
|
253
|
+
"y": 16,
|
254
|
+
"x": 8,
|
255
|
+
"type": "metric",
|
256
|
+
"properties": {
|
257
|
+
"metrics": [
|
258
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "AuditWorker" ]
|
259
|
+
],
|
260
|
+
"view": "timeSeries",
|
261
|
+
"stacked": false,
|
262
|
+
"region": "us-east-1",
|
263
|
+
"title": "AuditWorker Jobs/Min",
|
264
|
+
"period": 60,
|
265
|
+
"stat": "Sum",
|
266
|
+
"legend": {
|
267
|
+
"position": "hidden"
|
268
|
+
}
|
269
|
+
}
|
270
|
+
},
|
271
|
+
|
37
272
|
{
|
38
|
-
"height":
|
273
|
+
"height": 3,
|
274
|
+
"width": 4,
|
275
|
+
"y": 16,
|
276
|
+
"x": 12,
|
277
|
+
"type": "metric",
|
278
|
+
"properties": {
|
279
|
+
"metrics": [
|
280
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "SingleThreadAuditWorker" ]
|
281
|
+
],
|
282
|
+
"view": "timeSeries",
|
283
|
+
"stacked": false,
|
284
|
+
"region": "us-east-1",
|
285
|
+
"title": "SingleThreadAuditWorker Jobs/Min",
|
286
|
+
"period": 60,
|
287
|
+
"stat": "Sum",
|
288
|
+
"legend": {
|
289
|
+
"position": "hidden"
|
290
|
+
}
|
291
|
+
}
|
292
|
+
},
|
293
|
+
|
294
|
+
|
295
|
+
|
296
|
+
{
|
297
|
+
"height": 1,
|
298
|
+
"width": 24,
|
299
|
+
"y": 19,
|
300
|
+
"x": 0,
|
301
|
+
"type": "text",
|
302
|
+
"properties": {
|
303
|
+
"markdown": "\n# Failures Per Minute By Worker\n"
|
304
|
+
}
|
305
|
+
},
|
306
|
+
|
307
|
+
|
308
|
+
|
309
|
+
|
310
|
+
{
|
311
|
+
"height": 3,
|
312
|
+
"width": 4,
|
313
|
+
"y": 20,
|
314
|
+
"x": 0,
|
315
|
+
"type": "metric",
|
316
|
+
"properties": {
|
317
|
+
"metrics": [
|
318
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "HelloWorker", { "color": "#d62728" } ]
|
319
|
+
],
|
320
|
+
"view": "timeSeries",
|
321
|
+
"stacked": false,
|
322
|
+
"region": "us-east-1",
|
323
|
+
"title": "HelloWorker Fails/Min",
|
324
|
+
"period": 60,
|
325
|
+
"stat": "Sum",
|
326
|
+
"legend": {
|
327
|
+
"position": "hidden"
|
328
|
+
}
|
329
|
+
}
|
330
|
+
},
|
331
|
+
|
332
|
+
{
|
333
|
+
"height": 3,
|
334
|
+
"width": 4,
|
335
|
+
"y": 20,
|
336
|
+
"x": 4,
|
337
|
+
"type": "metric",
|
338
|
+
"properties": {
|
339
|
+
"metrics": [
|
340
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "GreetingsWorker", { "color": "#d62728" } ]
|
341
|
+
],
|
342
|
+
"view": "timeSeries",
|
343
|
+
"stacked": false,
|
344
|
+
"region": "us-east-1",
|
345
|
+
"title": "GreetingsWorker Fails/Min",
|
346
|
+
"period": 60,
|
347
|
+
"stat": "Sum",
|
348
|
+
"legend": {
|
349
|
+
"position": "hidden"
|
350
|
+
}
|
351
|
+
}
|
352
|
+
},
|
353
|
+
|
354
|
+
{
|
355
|
+
"height": 3,
|
356
|
+
"width": 4,
|
357
|
+
"y": 20,
|
358
|
+
"x": 8,
|
359
|
+
"type": "metric",
|
360
|
+
"properties": {
|
361
|
+
"metrics": [
|
362
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "AuditWorker", { "color": "#d62728" } ]
|
363
|
+
],
|
364
|
+
"view": "timeSeries",
|
365
|
+
"stacked": false,
|
366
|
+
"region": "us-east-1",
|
367
|
+
"title": "AuditWorker Fails/Min",
|
368
|
+
"period": 60,
|
369
|
+
"stat": "Sum",
|
370
|
+
"legend": {
|
371
|
+
"position": "hidden"
|
372
|
+
}
|
373
|
+
}
|
374
|
+
},
|
375
|
+
|
376
|
+
{
|
377
|
+
"height": 3,
|
378
|
+
"width": 4,
|
379
|
+
"y": 20,
|
380
|
+
"x": 12,
|
381
|
+
"type": "metric",
|
382
|
+
"properties": {
|
383
|
+
"metrics": [
|
384
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "SingleThreadAuditWorker", { "color": "#d62728" } ]
|
385
|
+
],
|
386
|
+
"view": "timeSeries",
|
387
|
+
"stacked": false,
|
388
|
+
"region": "us-east-1",
|
389
|
+
"title": "SingleThreadAuditWorker Fails/Min",
|
390
|
+
"period": 60,
|
391
|
+
"stat": "Sum",
|
392
|
+
"legend": {
|
393
|
+
"position": "hidden"
|
394
|
+
}
|
395
|
+
}
|
396
|
+
},
|
397
|
+
|
398
|
+
|
399
|
+
|
400
|
+
{
|
401
|
+
"height": 1,
|
402
|
+
"width": 24,
|
403
|
+
"y": 23,
|
404
|
+
"x": 0,
|
405
|
+
"type": "text",
|
406
|
+
"properties": {
|
407
|
+
"markdown": "\n# Duration Percentiles By Worker\n"
|
408
|
+
}
|
409
|
+
},
|
410
|
+
|
411
|
+
|
412
|
+
|
413
|
+
|
414
|
+
{
|
415
|
+
"height": 4,
|
416
|
+
"width": 4,
|
417
|
+
"y": 24,
|
418
|
+
"x": 0,
|
419
|
+
"type": "metric",
|
420
|
+
"properties": {
|
421
|
+
"metrics": [
|
422
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker", { "label": "p90", "stat": "p90", "color": "#d62728" } ],
|
423
|
+
[ "...", { "label": "p80", "stat": "p80", "color": "#2ca02c" } ],
|
424
|
+
[ "...", { "label": "p70", "stat": "p70", "color": "#ff7f0e" } ],
|
425
|
+
[ "...", { "label": "p60", "color": "#1f77b4" } ]
|
426
|
+
],
|
427
|
+
"view": "timeSeries",
|
428
|
+
"stacked": false,
|
429
|
+
"region": "us-east-1",
|
430
|
+
"stat": "p60",
|
431
|
+
"period": 60,
|
432
|
+
"title": "HelloWorker Duration Percentiles",
|
433
|
+
"legend": {
|
434
|
+
"position": "bottom"
|
435
|
+
}
|
436
|
+
}
|
437
|
+
},
|
438
|
+
|
439
|
+
{
|
440
|
+
"height": 4,
|
441
|
+
"width": 4,
|
442
|
+
"y": 24,
|
443
|
+
"x": 4,
|
444
|
+
"type": "metric",
|
445
|
+
"properties": {
|
446
|
+
"metrics": [
|
447
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "GreetingsWorker", { "label": "p90", "stat": "p90", "color": "#d62728" } ],
|
448
|
+
[ "...", { "label": "p80", "stat": "p80", "color": "#2ca02c" } ],
|
449
|
+
[ "...", { "label": "p70", "stat": "p70", "color": "#ff7f0e" } ],
|
450
|
+
[ "...", { "label": "p60", "color": "#1f77b4" } ]
|
451
|
+
],
|
452
|
+
"view": "timeSeries",
|
453
|
+
"stacked": false,
|
454
|
+
"region": "us-east-1",
|
455
|
+
"stat": "p60",
|
456
|
+
"period": 60,
|
457
|
+
"title": "GreetingsWorker Duration Percentiles",
|
458
|
+
"legend": {
|
459
|
+
"position": "bottom"
|
460
|
+
}
|
461
|
+
}
|
462
|
+
},
|
463
|
+
|
464
|
+
{
|
465
|
+
"height": 4,
|
466
|
+
"width": 4,
|
467
|
+
"y": 24,
|
468
|
+
"x": 8,
|
469
|
+
"type": "metric",
|
470
|
+
"properties": {
|
471
|
+
"metrics": [
|
472
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker", { "label": "p90", "stat": "p90", "color": "#d62728" } ],
|
473
|
+
[ "...", { "label": "p80", "stat": "p80", "color": "#2ca02c" } ],
|
474
|
+
[ "...", { "label": "p70", "stat": "p70", "color": "#ff7f0e" } ],
|
475
|
+
[ "...", { "label": "p60", "color": "#1f77b4" } ]
|
476
|
+
],
|
477
|
+
"view": "timeSeries",
|
478
|
+
"stacked": false,
|
479
|
+
"region": "us-east-1",
|
480
|
+
"stat": "p60",
|
481
|
+
"period": 60,
|
482
|
+
"title": "AuditWorker Duration Percentiles",
|
483
|
+
"legend": {
|
484
|
+
"position": "bottom"
|
485
|
+
}
|
486
|
+
}
|
487
|
+
},
|
488
|
+
|
489
|
+
{
|
490
|
+
"height": 4,
|
491
|
+
"width": 4,
|
492
|
+
"y": 24,
|
493
|
+
"x": 12,
|
494
|
+
"type": "metric",
|
495
|
+
"properties": {
|
496
|
+
"metrics": [
|
497
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "SingleThreadAuditWorker", { "label": "p90", "stat": "p90", "color": "#d62728" } ],
|
498
|
+
[ "...", { "label": "p80", "stat": "p80", "color": "#2ca02c" } ],
|
499
|
+
[ "...", { "label": "p70", "stat": "p70", "color": "#ff7f0e" } ],
|
500
|
+
[ "...", { "label": "p60", "color": "#1f77b4" } ]
|
501
|
+
],
|
502
|
+
"view": "timeSeries",
|
503
|
+
"stacked": false,
|
504
|
+
"region": "us-east-1",
|
505
|
+
"stat": "p60",
|
506
|
+
"period": 60,
|
507
|
+
"title": "SingleThreadAuditWorker Duration Percentiles",
|
508
|
+
"legend": {
|
509
|
+
"position": "bottom"
|
510
|
+
}
|
511
|
+
}
|
512
|
+
},
|
513
|
+
|
514
|
+
|
515
|
+
|
516
|
+
{
|
517
|
+
"height": 1,
|
518
|
+
"width": 24,
|
519
|
+
"y": 27,
|
520
|
+
"x": 0,
|
521
|
+
"type": "text",
|
522
|
+
"properties": {
|
523
|
+
"markdown": "\n# HelloWorker\n"
|
524
|
+
}
|
525
|
+
},
|
526
|
+
|
527
|
+
|
528
|
+
{
|
529
|
+
"height": 3,
|
39
530
|
"width": 3,
|
40
|
-
"y":
|
531
|
+
"y": 28,
|
41
532
|
"x": 0,
|
42
533
|
"type": "metric",
|
43
534
|
"properties": {
|
44
535
|
"metrics": [
|
45
|
-
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "
|
536
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "HelloWorker" ]
|
46
537
|
],
|
47
538
|
"view": "singleValue",
|
48
539
|
"region": "us-east-1",
|
49
540
|
"stat": "Sum",
|
50
541
|
"period": 60,
|
51
|
-
"sparkline":
|
52
|
-
"title": "
|
542
|
+
"sparkline": true,
|
543
|
+
"title": "HelloWorker Processed/Min"
|
53
544
|
}
|
54
545
|
},
|
55
546
|
{
|
56
|
-
"height":
|
547
|
+
"height": 3,
|
57
548
|
"width": 3,
|
58
|
-
"y":
|
549
|
+
"y": 28,
|
59
550
|
"x": 3,
|
60
551
|
"type": "metric",
|
61
552
|
"properties": {
|
62
553
|
"metrics": [
|
63
|
-
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "
|
554
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "HelloWorker", { "color": "#d62728" } ]
|
64
555
|
],
|
65
556
|
"view": "singleValue",
|
66
557
|
"region": "us-east-1",
|
67
558
|
"stat": "Sum",
|
68
559
|
"period": 60,
|
69
|
-
"sparkline":
|
70
|
-
"title": "
|
560
|
+
"sparkline": true,
|
561
|
+
"title": "HelloWorker Failed/Min"
|
71
562
|
}
|
72
563
|
},
|
73
564
|
{
|
74
|
-
"height":
|
565
|
+
"height": 3,
|
75
566
|
"width": 3,
|
76
|
-
"y":
|
567
|
+
"y": 28,
|
77
568
|
"x": 6,
|
78
569
|
"type": "metric",
|
79
570
|
"properties": {
|
80
571
|
"metrics": [
|
81
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
572
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker", { "label": "p60", "color": "#1f77b4" } ]
|
82
573
|
],
|
83
574
|
"view": "singleValue",
|
84
575
|
"region": "us-east-1",
|
85
576
|
"stat": "p60",
|
86
577
|
"period": 60,
|
87
|
-
"sparkline":
|
88
|
-
"title": "
|
578
|
+
"sparkline": true,
|
579
|
+
"title": "HelloWorker p60"
|
89
580
|
}
|
90
581
|
},
|
91
582
|
{
|
92
|
-
"height":
|
583
|
+
"height": 3,
|
93
584
|
"width": 3,
|
94
|
-
"y":
|
585
|
+
"y": 28,
|
95
586
|
"x": 9,
|
96
587
|
"type": "metric",
|
97
588
|
"properties": {
|
98
589
|
"metrics": [
|
99
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
590
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker", { "label": "p70", "color": "#ff7f0e" } ]
|
100
591
|
],
|
101
592
|
"view": "singleValue",
|
102
593
|
"region": "us-east-1",
|
103
594
|
"stat": "p70",
|
104
595
|
"period": 60,
|
105
|
-
"sparkline":
|
106
|
-
"title": "
|
596
|
+
"sparkline": true,
|
597
|
+
"title": "HelloWorker p70"
|
107
598
|
}
|
108
599
|
},
|
109
600
|
{
|
110
|
-
"height":
|
601
|
+
"height": 3,
|
111
602
|
"width": 3,
|
112
|
-
"y":
|
603
|
+
"y": 28,
|
113
604
|
"x": 12,
|
114
605
|
"type": "metric",
|
115
606
|
"properties": {
|
116
607
|
"metrics": [
|
117
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
608
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker", { "label": "p80", "color": "#2ca02c" } ]
|
118
609
|
],
|
119
610
|
"view": "singleValue",
|
120
611
|
"region": "us-east-1",
|
121
612
|
"stat": "p80",
|
122
613
|
"period": 60,
|
123
|
-
"sparkline":
|
124
|
-
"title": "
|
614
|
+
"sparkline": true,
|
615
|
+
"title": "HelloWorker p80"
|
125
616
|
}
|
126
617
|
},
|
127
618
|
{
|
128
|
-
"height":
|
619
|
+
"height": 3,
|
129
620
|
"width": 3,
|
130
|
-
"y":
|
621
|
+
"y": 28,
|
131
622
|
"x": 15,
|
132
623
|
"type": "metric",
|
133
624
|
"properties": {
|
134
625
|
"metrics": [
|
135
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
626
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker", { "label": "p90", "color": "#d62728" } ]
|
136
627
|
],
|
137
628
|
"view": "singleValue",
|
138
629
|
"region": "us-east-1",
|
139
630
|
"stat": "p90",
|
140
631
|
"period": 60,
|
141
|
-
"sparkline":
|
142
|
-
"title": "
|
632
|
+
"sparkline": true,
|
633
|
+
"title": "HelloWorker p90"
|
143
634
|
}
|
144
635
|
},
|
145
636
|
{
|
146
|
-
"height":
|
637
|
+
"height": 3,
|
147
638
|
"width": 3,
|
148
|
-
"y":
|
639
|
+
"y": 28,
|
149
640
|
"x": 18,
|
150
641
|
"type": "metric",
|
151
642
|
"properties": {
|
152
643
|
"metrics": [
|
153
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
644
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker", { "label": "Min" } ]
|
154
645
|
],
|
155
646
|
"view": "singleValue",
|
156
647
|
"region": "us-east-1",
|
157
648
|
"stat": "Minimum",
|
158
649
|
"period": 60,
|
159
|
-
"sparkline":
|
160
|
-
"title": "
|
650
|
+
"sparkline": true,
|
651
|
+
"title": "HelloWorker Min"
|
161
652
|
}
|
162
653
|
},
|
163
654
|
{
|
164
|
-
"height":
|
655
|
+
"height": 3,
|
165
656
|
"width": 3,
|
166
|
-
"y":
|
657
|
+
"y": 28,
|
167
658
|
"x": 21,
|
168
659
|
"type": "metric",
|
169
660
|
"properties": {
|
170
661
|
"metrics": [
|
171
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
662
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker", { "label": "Max", "color": "#d62728" } ]
|
172
663
|
],
|
173
664
|
"view": "singleValue",
|
174
665
|
"region": "us-east-1",
|
175
666
|
"stat": "Maximum",
|
176
667
|
"period": 60,
|
177
|
-
"sparkline":
|
178
|
-
"title": "
|
668
|
+
"sparkline": true,
|
669
|
+
"title": "HelloWorker Max"
|
179
670
|
}
|
180
671
|
},
|
181
672
|
|
@@ -186,17 +677,17 @@ Resources:
|
|
186
677
|
{
|
187
678
|
"height": 3,
|
188
679
|
"width": 3,
|
189
|
-
"y":
|
680
|
+
"y": 31,
|
190
681
|
"x": 0,
|
191
682
|
"type": "metric",
|
192
683
|
"properties": {
|
193
684
|
"metrics": [
|
194
|
-
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "
|
685
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "HelloWorker" ]
|
195
686
|
],
|
196
687
|
"view": "timeSeries",
|
197
688
|
"stacked": false,
|
198
689
|
"region": "us-east-1",
|
199
|
-
"title": "
|
690
|
+
"title": "HelloWorker Processed Jobs",
|
200
691
|
"period": 60,
|
201
692
|
"stat": "Sum",
|
202
693
|
"legend": {
|
@@ -207,17 +698,17 @@ Resources:
|
|
207
698
|
{
|
208
699
|
"height": 3,
|
209
700
|
"width": 3,
|
210
|
-
"y":
|
701
|
+
"y": 31,
|
211
702
|
"x": 3,
|
212
703
|
"type": "metric",
|
213
704
|
"properties": {
|
214
705
|
"metrics": [
|
215
|
-
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "
|
706
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "HelloWorker", { "color": "#d62728" }]
|
216
707
|
],
|
217
708
|
"view": "timeSeries",
|
218
709
|
"stacked": false,
|
219
710
|
"region": "us-east-1",
|
220
|
-
"title": "
|
711
|
+
"title": "HelloWorker Failed Jobs",
|
221
712
|
"period": 60,
|
222
713
|
"stat": "Sum",
|
223
714
|
"legend": {
|
@@ -228,12 +719,12 @@ Resources:
|
|
228
719
|
{
|
229
720
|
"height": 3,
|
230
721
|
"width": 12,
|
231
|
-
"y":
|
722
|
+
"y": 31,
|
232
723
|
"x": 6,
|
233
724
|
"type": "metric",
|
234
725
|
"properties": {
|
235
726
|
"metrics": [
|
236
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
727
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker", { "stat": "p90", "color": "#d62728" } ],
|
237
728
|
[ "...", { "stat": "p80", "color": "#2ca02c" } ],
|
238
729
|
[ "...", { "stat": "p70", "color": "#ff7f0e" } ],
|
239
730
|
[ "...", { "color": "#1f77b4" } ]
|
@@ -243,7 +734,7 @@ Resources:
|
|
243
734
|
"region": "us-east-1",
|
244
735
|
"stat": "p60",
|
245
736
|
"period": 60,
|
246
|
-
"title": "
|
737
|
+
"title": "HelloWorker Duration Percentiles",
|
247
738
|
"legend": {
|
248
739
|
"position": "right"
|
249
740
|
}
|
@@ -252,19 +743,19 @@ Resources:
|
|
252
743
|
{
|
253
744
|
"height": 3,
|
254
745
|
"width": 3,
|
255
|
-
"y":
|
746
|
+
"y": 31,
|
256
747
|
"x": 18,
|
257
748
|
"type": "metric",
|
258
749
|
"properties": {
|
259
750
|
"metrics": [
|
260
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
751
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker" ]
|
261
752
|
],
|
262
753
|
"view": "timeSeries",
|
263
754
|
"stacked": false,
|
264
755
|
"region": "us-east-1",
|
265
756
|
"stat": "Minimum",
|
266
757
|
"period": 60,
|
267
|
-
"title": "
|
758
|
+
"title": "HelloWorker Min",
|
268
759
|
"legend": {
|
269
760
|
"position": "hidden"
|
270
761
|
}
|
@@ -273,30 +764,29 @@ Resources:
|
|
273
764
|
{
|
274
765
|
"height": 3,
|
275
766
|
"width": 3,
|
276
|
-
"y":
|
767
|
+
"y": 31,
|
277
768
|
"x": 21,
|
278
769
|
"type": "metric",
|
279
770
|
"properties": {
|
280
771
|
"metrics": [
|
281
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
772
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker", { "color": "#d62728" } ]
|
282
773
|
],
|
283
774
|
"view": "timeSeries",
|
284
775
|
"stacked": false,
|
285
776
|
"region": "us-east-1",
|
286
777
|
"stat": "Maximum",
|
287
778
|
"period": 60,
|
288
|
-
"title": "
|
779
|
+
"title": "HelloWorker Max",
|
289
780
|
"legend": {
|
290
781
|
"position": "hidden"
|
291
782
|
}
|
292
783
|
}
|
293
784
|
},
|
294
785
|
|
295
|
-
|
296
786
|
{
|
297
787
|
"height": 1,
|
298
788
|
"width": 24,
|
299
|
-
"y":
|
789
|
+
"y": 37,
|
300
790
|
"x": 0,
|
301
791
|
"type": "text",
|
302
792
|
"properties": {
|
@@ -306,9 +796,9 @@ Resources:
|
|
306
796
|
|
307
797
|
|
308
798
|
{
|
309
|
-
"height":
|
799
|
+
"height": 3,
|
310
800
|
"width": 3,
|
311
|
-
"y":
|
801
|
+
"y": 38,
|
312
802
|
"x": 0,
|
313
803
|
"type": "metric",
|
314
804
|
"properties": {
|
@@ -319,14 +809,14 @@ Resources:
|
|
319
809
|
"region": "us-east-1",
|
320
810
|
"stat": "Sum",
|
321
811
|
"period": 60,
|
322
|
-
"sparkline":
|
812
|
+
"sparkline": true,
|
323
813
|
"title": "GreetingsWorker Processed/Min"
|
324
814
|
}
|
325
815
|
},
|
326
816
|
{
|
327
|
-
"height":
|
817
|
+
"height": 3,
|
328
818
|
"width": 3,
|
329
|
-
"y":
|
819
|
+
"y": 38,
|
330
820
|
"x": 3,
|
331
821
|
"type": "metric",
|
332
822
|
"properties": {
|
@@ -337,14 +827,14 @@ Resources:
|
|
337
827
|
"region": "us-east-1",
|
338
828
|
"stat": "Sum",
|
339
829
|
"period": 60,
|
340
|
-
"sparkline":
|
830
|
+
"sparkline": true,
|
341
831
|
"title": "GreetingsWorker Failed/Min"
|
342
832
|
}
|
343
833
|
},
|
344
834
|
{
|
345
|
-
"height":
|
835
|
+
"height": 3,
|
346
836
|
"width": 3,
|
347
|
-
"y":
|
837
|
+
"y": 38,
|
348
838
|
"x": 6,
|
349
839
|
"type": "metric",
|
350
840
|
"properties": {
|
@@ -355,14 +845,14 @@ Resources:
|
|
355
845
|
"region": "us-east-1",
|
356
846
|
"stat": "p60",
|
357
847
|
"period": 60,
|
358
|
-
"sparkline":
|
848
|
+
"sparkline": true,
|
359
849
|
"title": "GreetingsWorker p60"
|
360
850
|
}
|
361
851
|
},
|
362
852
|
{
|
363
|
-
"height":
|
853
|
+
"height": 3,
|
364
854
|
"width": 3,
|
365
|
-
"y":
|
855
|
+
"y": 38,
|
366
856
|
"x": 9,
|
367
857
|
"type": "metric",
|
368
858
|
"properties": {
|
@@ -373,14 +863,14 @@ Resources:
|
|
373
863
|
"region": "us-east-1",
|
374
864
|
"stat": "p70",
|
375
865
|
"period": 60,
|
376
|
-
"sparkline":
|
866
|
+
"sparkline": true,
|
377
867
|
"title": "GreetingsWorker p70"
|
378
868
|
}
|
379
869
|
},
|
380
870
|
{
|
381
|
-
"height":
|
871
|
+
"height": 3,
|
382
872
|
"width": 3,
|
383
|
-
"y":
|
873
|
+
"y": 38,
|
384
874
|
"x": 12,
|
385
875
|
"type": "metric",
|
386
876
|
"properties": {
|
@@ -391,14 +881,14 @@ Resources:
|
|
391
881
|
"region": "us-east-1",
|
392
882
|
"stat": "p80",
|
393
883
|
"period": 60,
|
394
|
-
"sparkline":
|
884
|
+
"sparkline": true,
|
395
885
|
"title": "GreetingsWorker p80"
|
396
886
|
}
|
397
887
|
},
|
398
888
|
{
|
399
|
-
"height":
|
889
|
+
"height": 3,
|
400
890
|
"width": 3,
|
401
|
-
"y":
|
891
|
+
"y": 38,
|
402
892
|
"x": 15,
|
403
893
|
"type": "metric",
|
404
894
|
"properties": {
|
@@ -409,14 +899,14 @@ Resources:
|
|
409
899
|
"region": "us-east-1",
|
410
900
|
"stat": "p90",
|
411
901
|
"period": 60,
|
412
|
-
"sparkline":
|
902
|
+
"sparkline": true,
|
413
903
|
"title": "GreetingsWorker p90"
|
414
904
|
}
|
415
905
|
},
|
416
906
|
{
|
417
|
-
"height":
|
907
|
+
"height": 3,
|
418
908
|
"width": 3,
|
419
|
-
"y":
|
909
|
+
"y": 38,
|
420
910
|
"x": 18,
|
421
911
|
"type": "metric",
|
422
912
|
"properties": {
|
@@ -427,14 +917,14 @@ Resources:
|
|
427
917
|
"region": "us-east-1",
|
428
918
|
"stat": "Minimum",
|
429
919
|
"period": 60,
|
430
|
-
"sparkline":
|
920
|
+
"sparkline": true,
|
431
921
|
"title": "GreetingsWorker Min"
|
432
922
|
}
|
433
923
|
},
|
434
924
|
{
|
435
|
-
"height":
|
925
|
+
"height": 3,
|
436
926
|
"width": 3,
|
437
|
-
"y":
|
927
|
+
"y": 38,
|
438
928
|
"x": 21,
|
439
929
|
"type": "metric",
|
440
930
|
"properties": {
|
@@ -445,7 +935,7 @@ Resources:
|
|
445
935
|
"region": "us-east-1",
|
446
936
|
"stat": "Maximum",
|
447
937
|
"period": 60,
|
448
|
-
"sparkline":
|
938
|
+
"sparkline": true,
|
449
939
|
"title": "GreetingsWorker Max"
|
450
940
|
}
|
451
941
|
},
|
@@ -457,7 +947,7 @@ Resources:
|
|
457
947
|
{
|
458
948
|
"height": 3,
|
459
949
|
"width": 3,
|
460
|
-
"y":
|
950
|
+
"y": 41,
|
461
951
|
"x": 0,
|
462
952
|
"type": "metric",
|
463
953
|
"properties": {
|
@@ -478,7 +968,7 @@ Resources:
|
|
478
968
|
{
|
479
969
|
"height": 3,
|
480
970
|
"width": 3,
|
481
|
-
"y":
|
971
|
+
"y": 41,
|
482
972
|
"x": 3,
|
483
973
|
"type": "metric",
|
484
974
|
"properties": {
|
@@ -499,7 +989,7 @@ Resources:
|
|
499
989
|
{
|
500
990
|
"height": 3,
|
501
991
|
"width": 12,
|
502
|
-
"y":
|
992
|
+
"y": 41,
|
503
993
|
"x": 6,
|
504
994
|
"type": "metric",
|
505
995
|
"properties": {
|
@@ -523,7 +1013,7 @@ Resources:
|
|
523
1013
|
{
|
524
1014
|
"height": 3,
|
525
1015
|
"width": 3,
|
526
|
-
"y":
|
1016
|
+
"y": 41,
|
527
1017
|
"x": 18,
|
528
1018
|
"type": "metric",
|
529
1019
|
"properties": {
|
@@ -544,7 +1034,7 @@ Resources:
|
|
544
1034
|
{
|
545
1035
|
"height": 3,
|
546
1036
|
"width": 3,
|
547
|
-
"y":
|
1037
|
+
"y": 41,
|
548
1038
|
"x": 21,
|
549
1039
|
"type": "metric",
|
550
1040
|
"properties": {
|
@@ -563,161 +1053,160 @@ Resources:
|
|
563
1053
|
}
|
564
1054
|
},
|
565
1055
|
|
566
|
-
|
567
1056
|
{
|
568
1057
|
"height": 1,
|
569
1058
|
"width": 24,
|
570
|
-
"y":
|
1059
|
+
"y": 47,
|
571
1060
|
"x": 0,
|
572
1061
|
"type": "text",
|
573
1062
|
"properties": {
|
574
|
-
"markdown": "\n#
|
1063
|
+
"markdown": "\n# AuditWorker\n"
|
575
1064
|
}
|
576
1065
|
},
|
577
1066
|
|
578
1067
|
|
579
1068
|
{
|
580
|
-
"height":
|
1069
|
+
"height": 3,
|
581
1070
|
"width": 3,
|
582
|
-
"y":
|
1071
|
+
"y": 48,
|
583
1072
|
"x": 0,
|
584
1073
|
"type": "metric",
|
585
1074
|
"properties": {
|
586
1075
|
"metrics": [
|
587
|
-
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "
|
1076
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "AuditWorker" ]
|
588
1077
|
],
|
589
1078
|
"view": "singleValue",
|
590
1079
|
"region": "us-east-1",
|
591
1080
|
"stat": "Sum",
|
592
1081
|
"period": 60,
|
593
|
-
"sparkline":
|
594
|
-
"title": "
|
1082
|
+
"sparkline": true,
|
1083
|
+
"title": "AuditWorker Processed/Min"
|
595
1084
|
}
|
596
1085
|
},
|
597
1086
|
{
|
598
|
-
"height":
|
1087
|
+
"height": 3,
|
599
1088
|
"width": 3,
|
600
|
-
"y":
|
1089
|
+
"y": 48,
|
601
1090
|
"x": 3,
|
602
1091
|
"type": "metric",
|
603
1092
|
"properties": {
|
604
1093
|
"metrics": [
|
605
|
-
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "
|
1094
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "AuditWorker", { "color": "#d62728" } ]
|
606
1095
|
],
|
607
1096
|
"view": "singleValue",
|
608
1097
|
"region": "us-east-1",
|
609
1098
|
"stat": "Sum",
|
610
1099
|
"period": 60,
|
611
|
-
"sparkline":
|
612
|
-
"title": "
|
1100
|
+
"sparkline": true,
|
1101
|
+
"title": "AuditWorker Failed/Min"
|
613
1102
|
}
|
614
1103
|
},
|
615
1104
|
{
|
616
|
-
"height":
|
1105
|
+
"height": 3,
|
617
1106
|
"width": 3,
|
618
|
-
"y":
|
1107
|
+
"y": 48,
|
619
1108
|
"x": 6,
|
620
1109
|
"type": "metric",
|
621
1110
|
"properties": {
|
622
1111
|
"metrics": [
|
623
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
1112
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker", { "label": "p60", "color": "#1f77b4" } ]
|
624
1113
|
],
|
625
1114
|
"view": "singleValue",
|
626
1115
|
"region": "us-east-1",
|
627
1116
|
"stat": "p60",
|
628
1117
|
"period": 60,
|
629
|
-
"sparkline":
|
630
|
-
"title": "
|
1118
|
+
"sparkline": true,
|
1119
|
+
"title": "AuditWorker p60"
|
631
1120
|
}
|
632
1121
|
},
|
633
1122
|
{
|
634
|
-
"height":
|
1123
|
+
"height": 3,
|
635
1124
|
"width": 3,
|
636
|
-
"y":
|
1125
|
+
"y": 48,
|
637
1126
|
"x": 9,
|
638
1127
|
"type": "metric",
|
639
1128
|
"properties": {
|
640
1129
|
"metrics": [
|
641
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
1130
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker", { "label": "p70", "color": "#ff7f0e" } ]
|
642
1131
|
],
|
643
1132
|
"view": "singleValue",
|
644
1133
|
"region": "us-east-1",
|
645
1134
|
"stat": "p70",
|
646
1135
|
"period": 60,
|
647
|
-
"sparkline":
|
648
|
-
"title": "
|
1136
|
+
"sparkline": true,
|
1137
|
+
"title": "AuditWorker p70"
|
649
1138
|
}
|
650
1139
|
},
|
651
1140
|
{
|
652
|
-
"height":
|
1141
|
+
"height": 3,
|
653
1142
|
"width": 3,
|
654
|
-
"y":
|
1143
|
+
"y": 48,
|
655
1144
|
"x": 12,
|
656
1145
|
"type": "metric",
|
657
1146
|
"properties": {
|
658
1147
|
"metrics": [
|
659
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
1148
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker", { "label": "p80", "color": "#2ca02c" } ]
|
660
1149
|
],
|
661
1150
|
"view": "singleValue",
|
662
1151
|
"region": "us-east-1",
|
663
1152
|
"stat": "p80",
|
664
1153
|
"period": 60,
|
665
|
-
"sparkline":
|
666
|
-
"title": "
|
1154
|
+
"sparkline": true,
|
1155
|
+
"title": "AuditWorker p80"
|
667
1156
|
}
|
668
1157
|
},
|
669
1158
|
{
|
670
|
-
"height":
|
1159
|
+
"height": 3,
|
671
1160
|
"width": 3,
|
672
|
-
"y":
|
1161
|
+
"y": 48,
|
673
1162
|
"x": 15,
|
674
1163
|
"type": "metric",
|
675
1164
|
"properties": {
|
676
1165
|
"metrics": [
|
677
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
1166
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker", { "label": "p90", "color": "#d62728" } ]
|
678
1167
|
],
|
679
1168
|
"view": "singleValue",
|
680
1169
|
"region": "us-east-1",
|
681
1170
|
"stat": "p90",
|
682
1171
|
"period": 60,
|
683
|
-
"sparkline":
|
684
|
-
"title": "
|
1172
|
+
"sparkline": true,
|
1173
|
+
"title": "AuditWorker p90"
|
685
1174
|
}
|
686
1175
|
},
|
687
1176
|
{
|
688
|
-
"height":
|
1177
|
+
"height": 3,
|
689
1178
|
"width": 3,
|
690
|
-
"y":
|
1179
|
+
"y": 48,
|
691
1180
|
"x": 18,
|
692
1181
|
"type": "metric",
|
693
1182
|
"properties": {
|
694
1183
|
"metrics": [
|
695
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
1184
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker", { "label": "Min" } ]
|
696
1185
|
],
|
697
1186
|
"view": "singleValue",
|
698
1187
|
"region": "us-east-1",
|
699
1188
|
"stat": "Minimum",
|
700
1189
|
"period": 60,
|
701
|
-
"sparkline":
|
702
|
-
"title": "
|
1190
|
+
"sparkline": true,
|
1191
|
+
"title": "AuditWorker Min"
|
703
1192
|
}
|
704
1193
|
},
|
705
1194
|
{
|
706
|
-
"height":
|
1195
|
+
"height": 3,
|
707
1196
|
"width": 3,
|
708
|
-
"y":
|
1197
|
+
"y": 48,
|
709
1198
|
"x": 21,
|
710
1199
|
"type": "metric",
|
711
1200
|
"properties": {
|
712
1201
|
"metrics": [
|
713
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
1202
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker", { "label": "Max", "color": "#d62728" } ]
|
714
1203
|
],
|
715
1204
|
"view": "singleValue",
|
716
1205
|
"region": "us-east-1",
|
717
1206
|
"stat": "Maximum",
|
718
1207
|
"period": 60,
|
719
|
-
"sparkline":
|
720
|
-
"title": "
|
1208
|
+
"sparkline": true,
|
1209
|
+
"title": "AuditWorker Max"
|
721
1210
|
}
|
722
1211
|
},
|
723
1212
|
|
@@ -728,17 +1217,17 @@ Resources:
|
|
728
1217
|
{
|
729
1218
|
"height": 3,
|
730
1219
|
"width": 3,
|
731
|
-
"y":
|
1220
|
+
"y": 51,
|
732
1221
|
"x": 0,
|
733
1222
|
"type": "metric",
|
734
1223
|
"properties": {
|
735
1224
|
"metrics": [
|
736
|
-
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "
|
1225
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "AuditWorker" ]
|
737
1226
|
],
|
738
1227
|
"view": "timeSeries",
|
739
1228
|
"stacked": false,
|
740
1229
|
"region": "us-east-1",
|
741
|
-
"title": "
|
1230
|
+
"title": "AuditWorker Processed Jobs",
|
742
1231
|
"period": 60,
|
743
1232
|
"stat": "Sum",
|
744
1233
|
"legend": {
|
@@ -749,17 +1238,17 @@ Resources:
|
|
749
1238
|
{
|
750
1239
|
"height": 3,
|
751
1240
|
"width": 3,
|
752
|
-
"y":
|
1241
|
+
"y": 51,
|
753
1242
|
"x": 3,
|
754
1243
|
"type": "metric",
|
755
1244
|
"properties": {
|
756
1245
|
"metrics": [
|
757
|
-
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "
|
1246
|
+
[ "${self:custom.funktor.DashboardNamespace}", "failed", "WorkerClassName", "AuditWorker", { "color": "#d62728" }]
|
758
1247
|
],
|
759
1248
|
"view": "timeSeries",
|
760
1249
|
"stacked": false,
|
761
1250
|
"region": "us-east-1",
|
762
|
-
"title": "
|
1251
|
+
"title": "AuditWorker Failed Jobs",
|
763
1252
|
"period": 60,
|
764
1253
|
"stat": "Sum",
|
765
1254
|
"legend": {
|
@@ -770,12 +1259,12 @@ Resources:
|
|
770
1259
|
{
|
771
1260
|
"height": 3,
|
772
1261
|
"width": 12,
|
773
|
-
"y":
|
1262
|
+
"y": 51,
|
774
1263
|
"x": 6,
|
775
1264
|
"type": "metric",
|
776
1265
|
"properties": {
|
777
1266
|
"metrics": [
|
778
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
1267
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker", { "stat": "p90", "color": "#d62728" } ],
|
779
1268
|
[ "...", { "stat": "p80", "color": "#2ca02c" } ],
|
780
1269
|
[ "...", { "stat": "p70", "color": "#ff7f0e" } ],
|
781
1270
|
[ "...", { "color": "#1f77b4" } ]
|
@@ -785,7 +1274,7 @@ Resources:
|
|
785
1274
|
"region": "us-east-1",
|
786
1275
|
"stat": "p60",
|
787
1276
|
"period": 60,
|
788
|
-
"title": "
|
1277
|
+
"title": "AuditWorker Duration Percentiles",
|
789
1278
|
"legend": {
|
790
1279
|
"position": "right"
|
791
1280
|
}
|
@@ -794,19 +1283,19 @@ Resources:
|
|
794
1283
|
{
|
795
1284
|
"height": 3,
|
796
1285
|
"width": 3,
|
797
|
-
"y":
|
1286
|
+
"y": 51,
|
798
1287
|
"x": 18,
|
799
1288
|
"type": "metric",
|
800
1289
|
"properties": {
|
801
1290
|
"metrics": [
|
802
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
1291
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker" ]
|
803
1292
|
],
|
804
1293
|
"view": "timeSeries",
|
805
1294
|
"stacked": false,
|
806
1295
|
"region": "us-east-1",
|
807
1296
|
"stat": "Minimum",
|
808
1297
|
"period": 60,
|
809
|
-
"title": "
|
1298
|
+
"title": "AuditWorker Min",
|
810
1299
|
"legend": {
|
811
1300
|
"position": "hidden"
|
812
1301
|
}
|
@@ -815,30 +1304,29 @@ Resources:
|
|
815
1304
|
{
|
816
1305
|
"height": 3,
|
817
1306
|
"width": 3,
|
818
|
-
"y":
|
1307
|
+
"y": 51,
|
819
1308
|
"x": 21,
|
820
1309
|
"type": "metric",
|
821
1310
|
"properties": {
|
822
1311
|
"metrics": [
|
823
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
1312
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker", { "color": "#d62728" } ]
|
824
1313
|
],
|
825
1314
|
"view": "timeSeries",
|
826
1315
|
"stacked": false,
|
827
1316
|
"region": "us-east-1",
|
828
1317
|
"stat": "Maximum",
|
829
1318
|
"period": 60,
|
830
|
-
"title": "
|
1319
|
+
"title": "AuditWorker Max",
|
831
1320
|
"legend": {
|
832
1321
|
"position": "hidden"
|
833
1322
|
}
|
834
1323
|
}
|
835
1324
|
},
|
836
1325
|
|
837
|
-
|
838
1326
|
{
|
839
1327
|
"height": 1,
|
840
1328
|
"width": 24,
|
841
|
-
"y":
|
1329
|
+
"y": 57,
|
842
1330
|
"x": 0,
|
843
1331
|
"type": "text",
|
844
1332
|
"properties": {
|
@@ -848,9 +1336,9 @@ Resources:
|
|
848
1336
|
|
849
1337
|
|
850
1338
|
{
|
851
|
-
"height":
|
1339
|
+
"height": 3,
|
852
1340
|
"width": 3,
|
853
|
-
"y":
|
1341
|
+
"y": 58,
|
854
1342
|
"x": 0,
|
855
1343
|
"type": "metric",
|
856
1344
|
"properties": {
|
@@ -861,14 +1349,14 @@ Resources:
|
|
861
1349
|
"region": "us-east-1",
|
862
1350
|
"stat": "Sum",
|
863
1351
|
"period": 60,
|
864
|
-
"sparkline":
|
1352
|
+
"sparkline": true,
|
865
1353
|
"title": "SingleThreadAuditWorker Processed/Min"
|
866
1354
|
}
|
867
1355
|
},
|
868
1356
|
{
|
869
|
-
"height":
|
1357
|
+
"height": 3,
|
870
1358
|
"width": 3,
|
871
|
-
"y":
|
1359
|
+
"y": 58,
|
872
1360
|
"x": 3,
|
873
1361
|
"type": "metric",
|
874
1362
|
"properties": {
|
@@ -879,14 +1367,14 @@ Resources:
|
|
879
1367
|
"region": "us-east-1",
|
880
1368
|
"stat": "Sum",
|
881
1369
|
"period": 60,
|
882
|
-
"sparkline":
|
1370
|
+
"sparkline": true,
|
883
1371
|
"title": "SingleThreadAuditWorker Failed/Min"
|
884
1372
|
}
|
885
1373
|
},
|
886
1374
|
{
|
887
|
-
"height":
|
1375
|
+
"height": 3,
|
888
1376
|
"width": 3,
|
889
|
-
"y":
|
1377
|
+
"y": 58,
|
890
1378
|
"x": 6,
|
891
1379
|
"type": "metric",
|
892
1380
|
"properties": {
|
@@ -897,14 +1385,14 @@ Resources:
|
|
897
1385
|
"region": "us-east-1",
|
898
1386
|
"stat": "p60",
|
899
1387
|
"period": 60,
|
900
|
-
"sparkline":
|
1388
|
+
"sparkline": true,
|
901
1389
|
"title": "SingleThreadAuditWorker p60"
|
902
1390
|
}
|
903
1391
|
},
|
904
1392
|
{
|
905
|
-
"height":
|
1393
|
+
"height": 3,
|
906
1394
|
"width": 3,
|
907
|
-
"y":
|
1395
|
+
"y": 58,
|
908
1396
|
"x": 9,
|
909
1397
|
"type": "metric",
|
910
1398
|
"properties": {
|
@@ -915,14 +1403,14 @@ Resources:
|
|
915
1403
|
"region": "us-east-1",
|
916
1404
|
"stat": "p70",
|
917
1405
|
"period": 60,
|
918
|
-
"sparkline":
|
1406
|
+
"sparkline": true,
|
919
1407
|
"title": "SingleThreadAuditWorker p70"
|
920
1408
|
}
|
921
1409
|
},
|
922
1410
|
{
|
923
|
-
"height":
|
1411
|
+
"height": 3,
|
924
1412
|
"width": 3,
|
925
|
-
"y":
|
1413
|
+
"y": 58,
|
926
1414
|
"x": 12,
|
927
1415
|
"type": "metric",
|
928
1416
|
"properties": {
|
@@ -933,14 +1421,14 @@ Resources:
|
|
933
1421
|
"region": "us-east-1",
|
934
1422
|
"stat": "p80",
|
935
1423
|
"period": 60,
|
936
|
-
"sparkline":
|
1424
|
+
"sparkline": true,
|
937
1425
|
"title": "SingleThreadAuditWorker p80"
|
938
1426
|
}
|
939
1427
|
},
|
940
1428
|
{
|
941
|
-
"height":
|
1429
|
+
"height": 3,
|
942
1430
|
"width": 3,
|
943
|
-
"y":
|
1431
|
+
"y": 58,
|
944
1432
|
"x": 15,
|
945
1433
|
"type": "metric",
|
946
1434
|
"properties": {
|
@@ -951,14 +1439,14 @@ Resources:
|
|
951
1439
|
"region": "us-east-1",
|
952
1440
|
"stat": "p90",
|
953
1441
|
"period": 60,
|
954
|
-
"sparkline":
|
1442
|
+
"sparkline": true,
|
955
1443
|
"title": "SingleThreadAuditWorker p90"
|
956
1444
|
}
|
957
1445
|
},
|
958
1446
|
{
|
959
|
-
"height":
|
1447
|
+
"height": 3,
|
960
1448
|
"width": 3,
|
961
|
-
"y":
|
1449
|
+
"y": 58,
|
962
1450
|
"x": 18,
|
963
1451
|
"type": "metric",
|
964
1452
|
"properties": {
|
@@ -969,14 +1457,14 @@ Resources:
|
|
969
1457
|
"region": "us-east-1",
|
970
1458
|
"stat": "Minimum",
|
971
1459
|
"period": 60,
|
972
|
-
"sparkline":
|
1460
|
+
"sparkline": true,
|
973
1461
|
"title": "SingleThreadAuditWorker Min"
|
974
1462
|
}
|
975
1463
|
},
|
976
1464
|
{
|
977
|
-
"height":
|
1465
|
+
"height": 3,
|
978
1466
|
"width": 3,
|
979
|
-
"y":
|
1467
|
+
"y": 58,
|
980
1468
|
"x": 21,
|
981
1469
|
"type": "metric",
|
982
1470
|
"properties": {
|
@@ -987,7 +1475,7 @@ Resources:
|
|
987
1475
|
"region": "us-east-1",
|
988
1476
|
"stat": "Maximum",
|
989
1477
|
"period": 60,
|
990
|
-
"sparkline":
|
1478
|
+
"sparkline": true,
|
991
1479
|
"title": "SingleThreadAuditWorker Max"
|
992
1480
|
}
|
993
1481
|
},
|
@@ -999,7 +1487,7 @@ Resources:
|
|
999
1487
|
{
|
1000
1488
|
"height": 3,
|
1001
1489
|
"width": 3,
|
1002
|
-
"y":
|
1490
|
+
"y": 61,
|
1003
1491
|
"x": 0,
|
1004
1492
|
"type": "metric",
|
1005
1493
|
"properties": {
|
@@ -1020,7 +1508,7 @@ Resources:
|
|
1020
1508
|
{
|
1021
1509
|
"height": 3,
|
1022
1510
|
"width": 3,
|
1023
|
-
"y":
|
1511
|
+
"y": 61,
|
1024
1512
|
"x": 3,
|
1025
1513
|
"type": "metric",
|
1026
1514
|
"properties": {
|
@@ -1041,7 +1529,7 @@ Resources:
|
|
1041
1529
|
{
|
1042
1530
|
"height": 3,
|
1043
1531
|
"width": 12,
|
1044
|
-
"y":
|
1532
|
+
"y": 61,
|
1045
1533
|
"x": 6,
|
1046
1534
|
"type": "metric",
|
1047
1535
|
"properties": {
|
@@ -1065,7 +1553,7 @@ Resources:
|
|
1065
1553
|
{
|
1066
1554
|
"height": 3,
|
1067
1555
|
"width": 3,
|
1068
|
-
"y":
|
1556
|
+
"y": 61,
|
1069
1557
|
"x": 18,
|
1070
1558
|
"type": "metric",
|
1071
1559
|
"properties": {
|
@@ -1086,7 +1574,7 @@ Resources:
|
|
1086
1574
|
{
|
1087
1575
|
"height": 3,
|
1088
1576
|
"width": 3,
|
1089
|
-
"y":
|
1577
|
+
"y": 61,
|
1090
1578
|
"x": 21,
|
1091
1579
|
"type": "metric",
|
1092
1580
|
"properties": {
|
@@ -1105,22 +1593,46 @@ Resources:
|
|
1105
1593
|
}
|
1106
1594
|
},
|
1107
1595
|
|
1108
|
-
|
1109
1596
|
|
1597
|
+
{
|
1598
|
+
"height": 6,
|
1599
|
+
"width": 12,
|
1600
|
+
"y": 67,
|
1601
|
+
"x": 0,
|
1602
|
+
"type": "metric",
|
1603
|
+
"properties": {
|
1604
|
+
"metrics": [
|
1605
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "HelloWorker" ],
|
1606
|
+
[ ".", "failed", ".", "." ],
|
1607
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "GreetingsWorker" ],
|
1608
|
+
[ ".", "failed", ".", "." ],
|
1609
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "AuditWorker" ],
|
1610
|
+
[ ".", "failed", ".", "." ],
|
1611
|
+
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "SingleThreadAuditWorker" ],
|
1612
|
+
[ ".", "failed", ".", "." ]
|
1613
|
+
],
|
1614
|
+
"view": "timeSeries",
|
1615
|
+
"stacked": false,
|
1616
|
+
"region": "us-east-1",
|
1617
|
+
"title": "Process/Failed Jobs By Worker",
|
1618
|
+
"period": 60,
|
1619
|
+
"stat": "Sum"
|
1620
|
+
}
|
1621
|
+
},
|
1110
1622
|
|
1111
1623
|
{
|
1112
1624
|
"height": 6,
|
1113
1625
|
"width": 12,
|
1114
|
-
"y":
|
1626
|
+
"y": 67,
|
1115
1627
|
"x": 12,
|
1116
1628
|
"type": "metric",
|
1117
1629
|
"properties": {
|
1118
1630
|
"metrics": [
|
1119
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
1631
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "HelloWorker" ],
|
1120
1632
|
[ "...", { "stat": "p99" } ],
|
1121
1633
|
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "GreetingsWorker" ],
|
1122
1634
|
[ "...", { "stat": "p99" } ],
|
1123
|
-
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "
|
1635
|
+
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "AuditWorker" ],
|
1124
1636
|
[ "...", { "stat": "p99" } ],
|
1125
1637
|
[ "${self:custom.funktor.DashboardNamespace}", "Duration", "WorkerClassName", "SingleThreadAuditWorker" ],
|
1126
1638
|
[ "...", { "stat": "p99" } ]
|
@@ -1134,37 +1646,13 @@ Resources:
|
|
1134
1646
|
}
|
1135
1647
|
},
|
1136
1648
|
|
1137
|
-
|
1138
|
-
"height": 6,
|
1139
|
-
"width": 12,
|
1140
|
-
"y": 43,
|
1141
|
-
"x": 0,
|
1142
|
-
"type": "metric",
|
1143
|
-
"properties": {
|
1144
|
-
"metrics": [
|
1145
|
-
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "AuditWorker" ],
|
1146
|
-
[ ".", "failed", ".", "." ],
|
1147
|
-
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "GreetingsWorker" ],
|
1148
|
-
[ ".", "failed", ".", "." ],
|
1149
|
-
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "HelloWorker" ],
|
1150
|
-
[ ".", "failed", ".", "." ],
|
1151
|
-
[ "${self:custom.funktor.DashboardNamespace}", "processed", "WorkerClassName", "SingleThreadAuditWorker" ],
|
1152
|
-
[ ".", "failed", ".", "." ]
|
1153
|
-
],
|
1154
|
-
"view": "timeSeries",
|
1155
|
-
"stacked": false,
|
1156
|
-
"region": "us-east-1",
|
1157
|
-
"title": "Process/Failed Jobs By Worker",
|
1158
|
-
"period": 60,
|
1159
|
-
"stat": "Sum"
|
1160
|
-
}
|
1161
|
-
},
|
1649
|
+
|
1162
1650
|
|
1163
1651
|
|
1164
1652
|
{
|
1165
1653
|
"height": 6,
|
1166
1654
|
"width": 12,
|
1167
|
-
"y":
|
1655
|
+
"y": 73,
|
1168
1656
|
"x": 12,
|
1169
1657
|
"type": "metric",
|
1170
1658
|
"properties": {
|
@@ -1185,7 +1673,7 @@ Resources:
|
|
1185
1673
|
{
|
1186
1674
|
"height": 6,
|
1187
1675
|
"width": 12,
|
1188
|
-
"y":
|
1676
|
+
"y": 73,
|
1189
1677
|
"x": 0,
|
1190
1678
|
"type": "metric",
|
1191
1679
|
"properties": {
|
@@ -1209,7 +1697,7 @@ Resources:
|
|
1209
1697
|
{
|
1210
1698
|
"height": 3,
|
1211
1699
|
"width": 24,
|
1212
|
-
"y":
|
1700
|
+
"y": 76,
|
1213
1701
|
"x": 0,
|
1214
1702
|
"type": "text",
|
1215
1703
|
"properties": {
|
@@ -1222,7 +1710,7 @@ Resources:
|
|
1222
1710
|
{
|
1223
1711
|
"height": 3,
|
1224
1712
|
"width": 6,
|
1225
|
-
"y":
|
1713
|
+
"y": 82,
|
1226
1714
|
"x": 0,
|
1227
1715
|
"type": "text",
|
1228
1716
|
"properties": {
|
@@ -1232,7 +1720,7 @@ Resources:
|
|
1232
1720
|
{
|
1233
1721
|
"height": 3,
|
1234
1722
|
"width": 3,
|
1235
|
-
"y":
|
1723
|
+
"y": 82,
|
1236
1724
|
"x": 6,
|
1237
1725
|
"type": "metric",
|
1238
1726
|
"properties": {
|
@@ -1250,22 +1738,22 @@ Resources:
|
|
1250
1738
|
{
|
1251
1739
|
"height": 3,
|
1252
1740
|
"width": 15,
|
1253
|
-
"y":
|
1741
|
+
"y": 82,
|
1254
1742
|
"x": 9,
|
1255
1743
|
"type": "metric",
|
1256
1744
|
"properties": {
|
1257
1745
|
"metrics": [
|
1258
|
-
[ "AWS/Lambda", "Duration", "FunctionName", "${self:custom.funktor.IncomingJobHandlerName}", "Resource", "${self:custom.funktor.IncomingJobHandlerName}", { "label": "
|
1259
|
-
[ "...", { "label": "
|
1260
|
-
[ "...", { "label": "
|
1261
|
-
[ "...", { "label": "
|
1746
|
+
[ "AWS/Lambda", "Duration", "FunctionName", "${self:custom.funktor.IncomingJobHandlerName}", "Resource", "${self:custom.funktor.IncomingJobHandlerName}", { "label": "p60" } ],
|
1747
|
+
[ "...", { "label": "p70", "stat": "p70" } ],
|
1748
|
+
[ "...", { "label": "p80", "stat": "p80" } ],
|
1749
|
+
[ "...", { "label": "p90", "stat": "p90" } ]
|
1262
1750
|
],
|
1263
1751
|
"view": "singleValue",
|
1264
1752
|
"region": "us-east-1",
|
1265
|
-
"stat": "
|
1753
|
+
"stat": "p60",
|
1266
1754
|
"period": 60,
|
1267
1755
|
"sparkline": true,
|
1268
|
-
"title": "Handler Duration"
|
1756
|
+
"title": "Handler Duration Percentiles"
|
1269
1757
|
}
|
1270
1758
|
},
|
1271
1759
|
|
@@ -1274,7 +1762,7 @@ Resources:
|
|
1274
1762
|
{
|
1275
1763
|
"height": 6,
|
1276
1764
|
"width": 9,
|
1277
|
-
"y":
|
1765
|
+
"y": 85,
|
1278
1766
|
"x": 0,
|
1279
1767
|
"type": "metric",
|
1280
1768
|
"properties": {
|
@@ -1300,15 +1788,16 @@ Resources:
|
|
1300
1788
|
{
|
1301
1789
|
"height": 6,
|
1302
1790
|
"width": 9,
|
1303
|
-
"y":
|
1791
|
+
"y": 85,
|
1304
1792
|
"x": 9,
|
1305
1793
|
"type": "metric",
|
1306
1794
|
"properties": {
|
1307
1795
|
"period": 60,
|
1308
1796
|
"metrics": [
|
1309
|
-
[ "AWS/Lambda", "Duration", "FunctionName", "${self:custom.funktor.IncomingJobHandlerName}", { "stat": "
|
1310
|
-
[ "...", { "stat": "
|
1311
|
-
[ "...", { "stat": "
|
1797
|
+
[ "AWS/Lambda", "Duration", "FunctionName", "${self:custom.funktor.IncomingJobHandlerName}", { "stat": "p60" } ],
|
1798
|
+
[ "...", { "stat": "p70" } ],
|
1799
|
+
[ "...", { "stat": "p80" } ],
|
1800
|
+
[ "...", { "stat": "p90" } ]
|
1312
1801
|
],
|
1313
1802
|
"region": "us-east-1",
|
1314
1803
|
"title": "Incoming Job Handler Duration in Milliseconds",
|
@@ -1320,7 +1809,7 @@ Resources:
|
|
1320
1809
|
{
|
1321
1810
|
"height": 3,
|
1322
1811
|
"width": 6,
|
1323
|
-
"y":
|
1812
|
+
"y": 85,
|
1324
1813
|
"x": 18,
|
1325
1814
|
"type": "metric",
|
1326
1815
|
"properties": {
|
@@ -1347,7 +1836,7 @@ Resources:
|
|
1347
1836
|
{
|
1348
1837
|
"height": 3,
|
1349
1838
|
"width": 6,
|
1350
|
-
"y":
|
1839
|
+
"y": 88,
|
1351
1840
|
"x": 18,
|
1352
1841
|
"type": "metric",
|
1353
1842
|
"properties": {
|
@@ -1369,7 +1858,7 @@ Resources:
|
|
1369
1858
|
{
|
1370
1859
|
"height": 3,
|
1371
1860
|
"width": 6,
|
1372
|
-
"y":
|
1861
|
+
"y": 91,
|
1373
1862
|
"x": 0,
|
1374
1863
|
"type": "text",
|
1375
1864
|
"properties": {
|
@@ -1379,7 +1868,7 @@ Resources:
|
|
1379
1868
|
{
|
1380
1869
|
"height": 3,
|
1381
1870
|
"width": 3,
|
1382
|
-
"y":
|
1871
|
+
"y": 91,
|
1383
1872
|
"x": 6,
|
1384
1873
|
"type": "metric",
|
1385
1874
|
"properties": {
|
@@ -1398,21 +1887,21 @@ Resources:
|
|
1398
1887
|
{
|
1399
1888
|
"height": 3,
|
1400
1889
|
"width": 15,
|
1401
|
-
"y":
|
1890
|
+
"y": 91,
|
1402
1891
|
"x": 9,
|
1403
1892
|
"type": "metric",
|
1404
1893
|
"properties": {
|
1405
1894
|
"metrics": [
|
1406
1895
|
[ "AWS/Lambda", "Duration", "FunctionName",
|
1407
1896
|
"${self:custom.funktor.DefaultQueueHandlerName}", "Resource",
|
1408
|
-
"${self:custom.funktor.DefaultQueueHandlerName}", { "label": "
|
1409
|
-
[ "...", { "label": "
|
1410
|
-
[ "...", { "label": "
|
1411
|
-
[ "...", { "label": "
|
1897
|
+
"${self:custom.funktor.DefaultQueueHandlerName}", { "label": "p60" } ],
|
1898
|
+
[ "...", { "label": "p70", "stat": "p70" } ],
|
1899
|
+
[ "...", { "label": "p80", "stat": "p80" } ],
|
1900
|
+
[ "...", { "label": "p90", "stat": "p90" } ]
|
1412
1901
|
],
|
1413
1902
|
"view": "singleValue",
|
1414
1903
|
"region": "us-east-1",
|
1415
|
-
"stat": "
|
1904
|
+
"stat": "p60",
|
1416
1905
|
"period": 60,
|
1417
1906
|
"sparkline": true,
|
1418
1907
|
"title": "Handler Duration"
|
@@ -1421,7 +1910,7 @@ Resources:
|
|
1421
1910
|
{
|
1422
1911
|
"height": 6,
|
1423
1912
|
"width": 9,
|
1424
|
-
"y":
|
1913
|
+
"y": 94,
|
1425
1914
|
"x": 0,
|
1426
1915
|
"type": "metric",
|
1427
1916
|
"properties": {
|
@@ -1451,15 +1940,16 @@ Resources:
|
|
1451
1940
|
{
|
1452
1941
|
"height": 6,
|
1453
1942
|
"width": 9,
|
1454
|
-
"y":
|
1943
|
+
"y": 94,
|
1455
1944
|
"x": 9,
|
1456
1945
|
"type": "metric",
|
1457
1946
|
"properties": {
|
1458
1947
|
"period": 60,
|
1459
1948
|
"metrics": [
|
1460
|
-
[ "AWS/Lambda", "Duration", "FunctionName", "${self:custom.funktor.DefaultQueueHandlerName}", { "stat": "
|
1461
|
-
[ "...", { "stat": "
|
1462
|
-
[ "...", { "stat": "
|
1949
|
+
[ "AWS/Lambda", "Duration", "FunctionName", "${self:custom.funktor.DefaultQueueHandlerName}", { "stat": "p60" } ],
|
1950
|
+
[ "...", { "stat": "p70" } ],
|
1951
|
+
[ "...", { "stat": "p80" } ],
|
1952
|
+
[ "...", { "stat": "p90" } ]
|
1463
1953
|
],
|
1464
1954
|
"region": "us-east-1",
|
1465
1955
|
"title": "Default Queue Handler Duration in Milliseconds",
|
@@ -1471,7 +1961,7 @@ Resources:
|
|
1471
1961
|
{
|
1472
1962
|
"height": 3,
|
1473
1963
|
"width": 6,
|
1474
|
-
"y":
|
1964
|
+
"y": 94,
|
1475
1965
|
"x": 18,
|
1476
1966
|
"type": "metric",
|
1477
1967
|
"properties": {
|
@@ -1497,7 +1987,7 @@ Resources:
|
|
1497
1987
|
{
|
1498
1988
|
"height": 3,
|
1499
1989
|
"width": 6,
|
1500
|
-
"y":
|
1990
|
+
"y": 97,
|
1501
1991
|
"x": 18,
|
1502
1992
|
"type": "metric",
|
1503
1993
|
"properties": {
|
@@ -1518,7 +2008,7 @@ Resources:
|
|
1518
2008
|
{
|
1519
2009
|
"height": 3,
|
1520
2010
|
"width": 6,
|
1521
|
-
"y":
|
2011
|
+
"y": 100,
|
1522
2012
|
"x": 0,
|
1523
2013
|
"type": "text",
|
1524
2014
|
"properties": {
|
@@ -1528,7 +2018,7 @@ Resources:
|
|
1528
2018
|
{
|
1529
2019
|
"height": 3,
|
1530
2020
|
"width": 3,
|
1531
|
-
"y":
|
2021
|
+
"y": 100,
|
1532
2022
|
"x": 6,
|
1533
2023
|
"type": "metric",
|
1534
2024
|
"properties": {
|
@@ -1547,21 +2037,21 @@ Resources:
|
|
1547
2037
|
{
|
1548
2038
|
"height": 3,
|
1549
2039
|
"width": 15,
|
1550
|
-
"y":
|
2040
|
+
"y": 100,
|
1551
2041
|
"x": 9,
|
1552
2042
|
"type": "metric",
|
1553
2043
|
"properties": {
|
1554
2044
|
"metrics": [
|
1555
2045
|
[ "AWS/Lambda", "Duration", "FunctionName",
|
1556
2046
|
"${self:custom.funktor.LowConcurrencyQueueHandlerName}", "Resource",
|
1557
|
-
"${self:custom.funktor.LowConcurrencyQueueHandlerName}", { "label": "
|
1558
|
-
[ "...", { "label": "
|
1559
|
-
[ "...", { "label": "
|
1560
|
-
[ "...", { "label": "
|
2047
|
+
"${self:custom.funktor.LowConcurrencyQueueHandlerName}", { "label": "p60" } ],
|
2048
|
+
[ "...", { "label": "p70", "stat": "p70" } ],
|
2049
|
+
[ "...", { "label": "p80", "stat": "p80" } ],
|
2050
|
+
[ "...", { "label": "p90", "stat": "p90" } ]
|
1561
2051
|
],
|
1562
2052
|
"view": "singleValue",
|
1563
2053
|
"region": "us-east-1",
|
1564
|
-
"stat": "
|
2054
|
+
"stat": "p60",
|
1565
2055
|
"period": 60,
|
1566
2056
|
"sparkline": true,
|
1567
2057
|
"title": "Handler Duration"
|
@@ -1570,7 +2060,7 @@ Resources:
|
|
1570
2060
|
{
|
1571
2061
|
"height": 6,
|
1572
2062
|
"width": 9,
|
1573
|
-
"y":
|
2063
|
+
"y": 103,
|
1574
2064
|
"x": 0,
|
1575
2065
|
"type": "metric",
|
1576
2066
|
"properties": {
|
@@ -1600,15 +2090,16 @@ Resources:
|
|
1600
2090
|
{
|
1601
2091
|
"height": 6,
|
1602
2092
|
"width": 9,
|
1603
|
-
"y":
|
2093
|
+
"y": 103,
|
1604
2094
|
"x": 9,
|
1605
2095
|
"type": "metric",
|
1606
2096
|
"properties": {
|
1607
2097
|
"period": 60,
|
1608
2098
|
"metrics": [
|
1609
|
-
[ "AWS/Lambda", "Duration", "FunctionName", "${self:custom.funktor.LowConcurrencyQueueHandlerName}", { "stat": "
|
1610
|
-
[ "...", { "stat": "
|
1611
|
-
[ "...", { "stat": "
|
2099
|
+
[ "AWS/Lambda", "Duration", "FunctionName", "${self:custom.funktor.LowConcurrencyQueueHandlerName}", { "stat": "p60" } ],
|
2100
|
+
[ "...", { "stat": "p70" } ],
|
2101
|
+
[ "...", { "stat": "p80" } ],
|
2102
|
+
[ "...", { "stat": "p90" } ]
|
1612
2103
|
],
|
1613
2104
|
"region": "us-east-1",
|
1614
2105
|
"title": "LowConcurrency Queue Handler Duration in Milliseconds",
|
@@ -1620,7 +2111,7 @@ Resources:
|
|
1620
2111
|
{
|
1621
2112
|
"height": 3,
|
1622
2113
|
"width": 6,
|
1623
|
-
"y":
|
2114
|
+
"y": 103,
|
1624
2115
|
"x": 18,
|
1625
2116
|
"type": "metric",
|
1626
2117
|
"properties": {
|
@@ -1646,7 +2137,7 @@ Resources:
|
|
1646
2137
|
{
|
1647
2138
|
"height": 3,
|
1648
2139
|
"width": 6,
|
1649
|
-
"y":
|
2140
|
+
"y": 106,
|
1650
2141
|
"x": 18,
|
1651
2142
|
"type": "metric",
|
1652
2143
|
"properties": {
|
@@ -1670,7 +2161,7 @@ Resources:
|
|
1670
2161
|
{
|
1671
2162
|
"height": 3,
|
1672
2163
|
"width": 6,
|
1673
|
-
"y":
|
2164
|
+
"y": 109,
|
1674
2165
|
"x": 0,
|
1675
2166
|
"type": "text",
|
1676
2167
|
"properties": {
|
@@ -1680,7 +2171,7 @@ Resources:
|
|
1680
2171
|
{
|
1681
2172
|
"height": 3,
|
1682
2173
|
"width": 3,
|
1683
|
-
"y":
|
2174
|
+
"y": 109,
|
1684
2175
|
"x": 6,
|
1685
2176
|
"type": "metric",
|
1686
2177
|
"properties": {
|
@@ -1698,19 +2189,19 @@ Resources:
|
|
1698
2189
|
{
|
1699
2190
|
"height": 3,
|
1700
2191
|
"width": 15,
|
1701
|
-
"y":
|
2192
|
+
"y": 109,
|
1702
2193
|
"x": 9,
|
1703
2194
|
"type": "metric",
|
1704
2195
|
"properties": {
|
1705
2196
|
"metrics": [
|
1706
|
-
[ "AWS/Lambda", "Duration", "FunctionName", "${self:custom.funktor.JobActivatorName}", "Resource", "${self:custom.funktor.JobActivatorName}", { "label": "
|
1707
|
-
[ "...", { "label": "
|
1708
|
-
[ "...", { "label": "
|
1709
|
-
[ "...", { "label": "
|
2197
|
+
[ "AWS/Lambda", "Duration", "FunctionName", "${self:custom.funktor.JobActivatorName}", "Resource", "${self:custom.funktor.JobActivatorName}", { "label": "p60" } ],
|
2198
|
+
[ "...", { "label": "p70", "stat": "p70" } ],
|
2199
|
+
[ "...", { "label": "p80", "stat": "p80" } ],
|
2200
|
+
[ "...", { "label": "p90", "stat": "p90" } ]
|
1710
2201
|
],
|
1711
2202
|
"view": "singleValue",
|
1712
2203
|
"region": "us-east-1",
|
1713
|
-
"stat": "
|
2204
|
+
"stat": "p60",
|
1714
2205
|
"period": 60,
|
1715
2206
|
"sparkline": true,
|
1716
2207
|
"title": "Handler Duration"
|
@@ -1723,7 +2214,7 @@ Resources:
|
|
1723
2214
|
{
|
1724
2215
|
"height": 3,
|
1725
2216
|
"width": 6,
|
1726
|
-
"y":
|
2217
|
+
"y": 112,
|
1727
2218
|
"x": 18,
|
1728
2219
|
"type": "metric",
|
1729
2220
|
"properties": {
|
@@ -1748,15 +2239,16 @@ Resources:
|
|
1748
2239
|
{
|
1749
2240
|
"height": 3,
|
1750
2241
|
"width": 9,
|
1751
|
-
"y":
|
2242
|
+
"y": 112,
|
1752
2243
|
"x": 9,
|
1753
2244
|
"type": "metric",
|
1754
2245
|
"properties": {
|
1755
2246
|
"period": 60,
|
1756
2247
|
"metrics": [
|
1757
|
-
[ "AWS/Lambda", "Duration", "FunctionName", "${self:custom.funktor.JobActivatorName}", { "stat": "
|
1758
|
-
[ "...", { "stat": "
|
1759
|
-
[ "...", { "stat": "
|
2248
|
+
[ "AWS/Lambda", "Duration", "FunctionName", "${self:custom.funktor.JobActivatorName}", { "stat": "p60" } ],
|
2249
|
+
[ "...", { "stat": "p70" } ],
|
2250
|
+
[ "...", { "stat": "p80" } ],
|
2251
|
+
[ "...", { "stat": "p90" } ]
|
1760
2252
|
],
|
1761
2253
|
"region": "us-east-1",
|
1762
2254
|
"title": "Delayed Job Scheduler Duration",
|
@@ -1768,7 +2260,7 @@ Resources:
|
|
1768
2260
|
{
|
1769
2261
|
"height": 3,
|
1770
2262
|
"width": 9,
|
1771
|
-
"y":
|
2263
|
+
"y": 112,
|
1772
2264
|
"x": 0,
|
1773
2265
|
"type": "metric",
|
1774
2266
|
"properties": {
|
@@ -1790,7 +2282,7 @@ Resources:
|
|
1790
2282
|
{
|
1791
2283
|
"height": 3,
|
1792
2284
|
"width": 9,
|
1793
|
-
"y":
|
2285
|
+
"y": 115,
|
1794
2286
|
"x": 0,
|
1795
2287
|
"type": "metric",
|
1796
2288
|
"properties": {
|
@@ -1812,7 +2304,7 @@ Resources:
|
|
1812
2304
|
{
|
1813
2305
|
"height": 3,
|
1814
2306
|
"width": 6,
|
1815
|
-
"y":
|
2307
|
+
"y": 115,
|
1816
2308
|
"x": 18,
|
1817
2309
|
"type": "metric",
|
1818
2310
|
"properties": {
|
@@ -1830,7 +2322,7 @@ Resources:
|
|
1830
2322
|
{
|
1831
2323
|
"height": 3,
|
1832
2324
|
"width": 9,
|
1833
|
-
"y":
|
2325
|
+
"y": 115,
|
1834
2326
|
"x": 9,
|
1835
2327
|
"type": "metric",
|
1836
2328
|
"properties": {
|
@@ -1856,7 +2348,7 @@ Resources:
|
|
1856
2348
|
{
|
1857
2349
|
"height": 3,
|
1858
2350
|
"width": 18,
|
1859
|
-
"y":
|
2351
|
+
"y": 118,
|
1860
2352
|
"x": 0,
|
1861
2353
|
"type": "metric",
|
1862
2354
|
"properties": {
|
@@ -1880,7 +2372,7 @@ Resources:
|
|
1880
2372
|
{
|
1881
2373
|
"height": 3,
|
1882
2374
|
"width": 6,
|
1883
|
-
"y":
|
2375
|
+
"y": 118,
|
1884
2376
|
"x": 18,
|
1885
2377
|
"type": "metric",
|
1886
2378
|
"properties": {
|