nutella_framework 0.4.23 → 0.4.24

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.
Files changed (148) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -1
  3. data/framework_components/monitoring-bot/monitoring-bot.rb +11 -2
  4. data/framework_components/monitoring-interface/.gitignore +2 -0
  5. data/framework_components/monitoring-interface/README.md +1 -0
  6. data/framework_components/monitoring-interface/bower.json +29 -0
  7. data/framework_components/monitoring-interface/bower_components/bower-mqttws/.bower.json +23 -0
  8. data/framework_components/monitoring-interface/bower_components/bower-mqttws/bower.json +14 -0
  9. data/framework_components/monitoring-interface/bower_components/bower-mqttws/mqttws31.js +2081 -0
  10. data/framework_components/monitoring-interface/bower_components/bower-mqttws/readme.md +4 -0
  11. data/framework_components/monitoring-interface/bower_components/nutella_lib/.bower.json +37 -0
  12. data/framework_components/monitoring-interface/bower_components/nutella_lib/LICENSE +21 -0
  13. data/framework_components/monitoring-interface/bower_components/nutella_lib/README.md +15 -0
  14. data/framework_components/monitoring-interface/bower_components/nutella_lib/bower.json +28 -0
  15. data/framework_components/monitoring-interface/bower_components/nutella_lib/examples/browser/mqtt_client_hello_world.html +23 -0
  16. data/framework_components/monitoring-interface/bower_components/nutella_lib/examples/browser/nutella_hello_world.html +52 -0
  17. data/framework_components/monitoring-interface/bower_components/nutella_lib/examples/node/mqtt_client_hello_world.js +14 -0
  18. data/framework_components/monitoring-interface/bower_components/nutella_lib/examples/node/nutella_hello_world.js +38 -0
  19. data/framework_components/monitoring-interface/bower_components/nutella_lib/nutella_lib.js +789 -0
  20. data/framework_components/monitoring-interface/bower_components/nutella_lib/package.json +30 -0
  21. data/framework_components/monitoring-interface/css/Monitoring Interface.html +215 -0
  22. data/framework_components/monitoring-interface/css/Monitoring Interface_files/animations.js +27 -0
  23. data/framework_components/monitoring-interface/css/Monitoring Interface_files/application-view-controller.js +232 -0
  24. data/framework_components/monitoring-interface/css/Monitoring Interface_files/applications-model.js +61 -0
  25. data/framework_components/monitoring-interface/css/Monitoring Interface_files/bootstrap.min.js +7 -0
  26. data/framework_components/monitoring-interface/css/Monitoring Interface_files/cursor.css +7 -0
  27. data/framework_components/monitoring-interface/css/Monitoring Interface_files/d3.v3.min.js +5 -0
  28. data/framework_components/monitoring-interface/css/Monitoring Interface_files/graphics.js +156 -0
  29. data/framework_components/monitoring-interface/css/Monitoring Interface_files/grid-layout.js +103 -0
  30. data/framework_components/monitoring-interface/css/Monitoring Interface_files/highlight.min.js +2 -0
  31. data/framework_components/monitoring-interface/css/Monitoring Interface_files/instance-view-controller.js +104 -0
  32. data/framework_components/monitoring-interface/css/Monitoring Interface_files/jquery-1.10.0.min.js +6 -0
  33. data/framework_components/monitoring-interface/css/Monitoring Interface_files/notification-center.js +63 -0
  34. data/framework_components/monitoring-interface/css/Monitoring Interface_files/notifications.js +14 -0
  35. data/framework_components/monitoring-interface/css/Monitoring Interface_files/page.css +33 -0
  36. data/framework_components/monitoring-interface/css/Monitoring Interface_files/radial-layout.js +175 -0
  37. data/framework_components/monitoring-interface/css/Monitoring Interface_files/tab-table.js +8 -0
  38. data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-application.css +0 -0
  39. data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-application.js +320 -0
  40. data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-connection-view.css +10 -0
  41. data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-connection-view.js +426 -0
  42. data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-element.js +205 -0
  43. data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-notification.js +94 -0
  44. data/framework_components/monitoring-interface/css/Monitoring Interface_files/ui-tab.js +229 -0
  45. data/framework_components/monitoring-interface/css/Monitoring Interface_files/underscore-min.js +5 -0
  46. data/framework_components/monitoring-interface/css/Monitoring Interface_files/view-controller.js +68 -0
  47. data/framework_components/monitoring-interface/css/Monitoring Interface_files/window-view-controller.js +169 -0
  48. data/framework_components/monitoring-interface/css/alerts.css +3 -0
  49. data/framework_components/monitoring-interface/css/bootstrap.min.css +5 -0
  50. data/framework_components/monitoring-interface/css/cursor.css +7 -0
  51. data/framework_components/monitoring-interface/css/highlight.default.min.css +1 -0
  52. data/framework_components/monitoring-interface/css/page.css +41 -0
  53. data/framework_components/monitoring-interface/css/ui-application.css +0 -0
  54. data/framework_components/monitoring-interface/css/ui-connection-view.css +10 -0
  55. data/framework_components/monitoring-interface/css/ui-legend-view.css +7 -0
  56. data/framework_components/monitoring-interface/data/alert.json +8 -0
  57. data/framework_components/monitoring-interface/data/data.json +2118 -0
  58. data/framework_components/monitoring-interface/data/data2.json +814 -0
  59. data/framework_components/monitoring-interface/data/data3.json +823 -0
  60. data/framework_components/monitoring-interface/data/data4.json +848 -0
  61. data/framework_components/monitoring-interface/data/message.json +999 -0
  62. data/framework_components/monitoring-interface/gulpfile.js +29 -0
  63. data/framework_components/monitoring-interface/img/arrow_white.svg +120 -0
  64. data/framework_components/monitoring-interface/img/arrow_white_right.svg +104 -0
  65. data/framework_components/monitoring-interface/img/back.svg +164 -0
  66. data/framework_components/monitoring-interface/img/cross_red_border_white.svg +143 -0
  67. data/framework_components/monitoring-interface/img/cross_red_border_white_mouseover.svg +143 -0
  68. data/framework_components/monitoring-interface/img/email.svg +89 -0
  69. data/framework_components/monitoring-interface/img/email_highlighted.svg +89 -0
  70. data/framework_components/monitoring-interface/index.html +144 -0
  71. data/framework_components/monitoring-interface/js/d3/layout/grid-layout.js +103 -0
  72. data/framework_components/monitoring-interface/js/d3/layout/radial-layout.js +184 -0
  73. data/framework_components/monitoring-interface/js/d3/plugin/graphics.js +156 -0
  74. data/framework_components/monitoring-interface/js/d3/plugin/tab-table.js +8 -0
  75. data/framework_components/monitoring-interface/js/d3/ui/animations.js +27 -0
  76. data/framework_components/monitoring-interface/js/d3/ui/ui-application.js +471 -0
  77. data/framework_components/monitoring-interface/js/d3/ui/ui-connection-view.js +847 -0
  78. data/framework_components/monitoring-interface/js/d3/ui/ui-element.js +245 -0
  79. data/framework_components/monitoring-interface/js/d3/ui/ui-legend.js +174 -0
  80. data/framework_components/monitoring-interface/js/d3/ui/ui-notification.js +90 -0
  81. data/framework_components/monitoring-interface/js/d3/ui/ui-tab.js +309 -0
  82. data/framework_components/monitoring-interface/js/lib/JSXTransformer-0.12.2.js +15199 -0
  83. data/framework_components/monitoring-interface/js/lib/bootstrap.min.js +7 -0
  84. data/framework_components/monitoring-interface/js/lib/d3.v3.min.js +5 -0
  85. data/framework_components/monitoring-interface/js/lib/highlight.min.js +2 -0
  86. data/framework_components/monitoring-interface/js/lib/jquery-1.10.0.min.js +6 -0
  87. data/framework_components/monitoring-interface/js/lib/nutella_lib.js +5121 -0
  88. data/framework_components/monitoring-interface/js/lib/react-with-addons-0.12.2.js +19822 -0
  89. data/framework_components/monitoring-interface/js/lib/underscore-min.js +5 -0
  90. data/framework_components/monitoring-interface/js/model/alerts-model.js +74 -0
  91. data/framework_components/monitoring-interface/js/model/applications-model.js +78 -0
  92. data/framework_components/monitoring-interface/js/model/messages-model.js +112 -0
  93. data/framework_components/monitoring-interface/js/notification/notification-center.js +63 -0
  94. data/framework_components/monitoring-interface/js/notification/notifications.js +21 -0
  95. data/framework_components/monitoring-interface/js/react/dist/ui-alerts.js +178 -0
  96. data/framework_components/monitoring-interface/js/react/dist/ui-message-send.js +389 -0
  97. data/framework_components/monitoring-interface/js/react/dist/ui-messages.js +103 -0
  98. data/framework_components/monitoring-interface/js/react/src/ui-alerts.js +178 -0
  99. data/framework_components/monitoring-interface/js/react/src/ui-message-send.js +389 -0
  100. data/framework_components/monitoring-interface/js/react/src/ui-messages.js +103 -0
  101. data/framework_components/monitoring-interface/js/view-controller/application-view-controller.js +256 -0
  102. data/framework_components/monitoring-interface/js/view-controller/instance-view-controller.js +112 -0
  103. data/framework_components/monitoring-interface/js/view-controller/view-controller.js +74 -0
  104. data/framework_components/monitoring-interface/js/view-controller/window-view-controller.js +169 -0
  105. data/framework_components/monitoring-interface/nutella.json +6 -0
  106. data/framework_components/order.json +1 -0
  107. data/framework_components/roomcast-bot/roomcast_bot.rb +139 -117
  108. data/framework_components/roomcast-channel-creator/dist/app.js +9 -7
  109. data/framework_components/roomcast-channel-creator/index.html +1 -1
  110. data/framework_components/roomcast-channel-creator/src/app/components/main.js +8 -6
  111. data/framework_components/roomcast-package-creator/dist/app.js +4 -4
  112. data/framework_components/roomcast-package-creator/index.html +1 -1
  113. data/framework_components/roomcast-package-creator/package.json +3 -3
  114. data/framework_components/roomcast-package-creator/src/app/components/ConfigurationsPanel.js +2 -2
  115. data/framework_components/roomcast-package-creator/src/app/components/PoolRow.js +1 -1
  116. data/framework_components/roomcast-teacher-controls/.gitignore +2 -0
  117. data/framework_components/roomcast-teacher-controls/README.md +9 -0
  118. data/framework_components/roomcast-teacher-controls/dist/app.js +38327 -0
  119. data/framework_components/roomcast-teacher-controls/dist/main.css +3052 -0
  120. data/framework_components/roomcast-teacher-controls/dist/nutella_lib.js +5121 -0
  121. data/framework_components/roomcast-teacher-controls/gulp/config.js +51 -0
  122. data/framework_components/roomcast-teacher-controls/gulp/tasks/browserify.js +77 -0
  123. data/framework_components/roomcast-teacher-controls/gulp/tasks/build.js +3 -0
  124. data/framework_components/roomcast-teacher-controls/gulp/tasks/css.js +7 -0
  125. data/framework_components/roomcast-teacher-controls/gulp/tasks/default.js +3 -0
  126. data/framework_components/roomcast-teacher-controls/gulp/tasks/fonts.js +7 -0
  127. data/framework_components/roomcast-teacher-controls/gulp/tasks/less.js +16 -0
  128. data/framework_components/roomcast-teacher-controls/gulp/tasks/mui-fonts.js +7 -0
  129. data/framework_components/roomcast-teacher-controls/gulp/tasks/nutella.js +7 -0
  130. data/framework_components/roomcast-teacher-controls/gulp/tasks/setWatch.js +5 -0
  131. data/framework_components/roomcast-teacher-controls/gulp/tasks/svgs.js +7 -0
  132. data/framework_components/roomcast-teacher-controls/gulp/tasks/watch.js +12 -0
  133. data/framework_components/roomcast-teacher-controls/gulp/util/bundleLogger.js +21 -0
  134. data/framework_components/roomcast-teacher-controls/gulp/util/handleErrors.js +15 -0
  135. data/framework_components/roomcast-teacher-controls/gulpfile.js +16 -0
  136. data/framework_components/roomcast-teacher-controls/index.html +51 -0
  137. data/framework_components/roomcast-teacher-controls/nutella.json +6 -0
  138. data/framework_components/roomcast-teacher-controls/package.json +38 -0
  139. data/framework_components/roomcast-teacher-controls/src/app/app.js +22 -0
  140. data/framework_components/roomcast-teacher-controls/src/app/components/ActivitiesGrid.js +87 -0
  141. data/framework_components/roomcast-teacher-controls/src/app/components/ActivityCard.js +141 -0
  142. data/framework_components/roomcast-teacher-controls/src/app/components/Channel.js +70 -0
  143. data/framework_components/roomcast-teacher-controls/src/app/components/Footer.js +34 -0
  144. data/framework_components/roomcast-teacher-controls/src/app/components/main.js +74 -0
  145. data/framework_components/roomcast-teacher-controls/src/less/main.less +186 -0
  146. data/framework_components/roomcast-teacher-controls/src/less/my_overrides.less +14 -0
  147. data/lib/commands/meta/run_command.rb +11 -9
  148. metadata +135 -2
@@ -0,0 +1,814 @@
1
+ {
2
+ "applications": [
3
+ {
4
+ "name": "application1",
5
+ "instances": [
6
+ {
7
+ "name": "instance1",
8
+ "components": [
9
+ {
10
+ "name": "component1",
11
+ "publish": [
12
+ {
13
+ "channel": "channel1"
14
+ },
15
+ {
16
+ "channel": "channel2"
17
+ }
18
+ ],
19
+ "subscribe": [
20
+ {
21
+ "channel": "channel1"
22
+ },
23
+ {
24
+ "channel": "channel5"
25
+ }
26
+ ],
27
+ "request": [
28
+ {
29
+ "channel": "channel6"
30
+ },
31
+ {
32
+ "channel": "channel7"
33
+ }
34
+ ],
35
+ "handle_request": [
36
+ {
37
+ "channel": "channel8"
38
+ },
39
+ {
40
+ "channel": "channel9"
41
+ }
42
+ ]
43
+ }
44
+ ]
45
+ },
46
+ {
47
+ "name": "instance2",
48
+ "components": [
49
+ {
50
+ "name": "component1",
51
+ "publish": [
52
+ {
53
+ "channel": "channel1"
54
+ },
55
+ {
56
+ "channel": "channel2"
57
+ }
58
+ ],
59
+ "subscribe": [
60
+ {
61
+ "channel": "channel1"
62
+ },
63
+ {
64
+ "channel": "channel5"
65
+ }
66
+ ],
67
+ "request": [
68
+ {
69
+ "channel": "channel6"
70
+ },
71
+ {
72
+ "channel": "channel1"
73
+ }
74
+ ],
75
+ "handle_request": [
76
+ {
77
+ "channel": "channel1"
78
+ },
79
+ {
80
+ "channel": "channel9"
81
+ }
82
+ ]
83
+ }
84
+ ]
85
+ },
86
+ {
87
+ "name": "instance3",
88
+ "components": [
89
+ {
90
+ "name": "component1",
91
+ "publish": [
92
+ {
93
+ "channel": "channel1"
94
+ }
95
+ ],
96
+ "subscribe": [
97
+ {
98
+ "channel": "channel5"
99
+ }
100
+ ],
101
+ "request": [
102
+ {
103
+ "channel": "channel5"
104
+ },
105
+ {
106
+ "channel": "channel7"
107
+ }
108
+ ],
109
+ "handle_request": [
110
+ {
111
+ "channel": "channel5"
112
+ },
113
+ {
114
+ "channel": "channel9"
115
+ }
116
+ ]
117
+ }
118
+ ]
119
+ }
120
+ ]
121
+ },
122
+ {
123
+ "name": "application2",
124
+ "problems": 1,
125
+ "instances": [
126
+ {
127
+ "name": "instance1",
128
+ "problems": 1,
129
+ "components": [
130
+ {
131
+ "name": "component1",
132
+ "problem": true,
133
+ "publish": [
134
+ {
135
+ "channel": "channel1"
136
+ },
137
+ {
138
+ "channel": "channel2"
139
+ }
140
+ ],
141
+ "subscribe": [
142
+ {
143
+ "channel": "channel1"
144
+ },
145
+ {
146
+ "channel": "channel5"
147
+ }
148
+ ],
149
+ "request": [
150
+ {
151
+ "channel": "channel6"
152
+ },
153
+ {
154
+ "channel": "channel7"
155
+ }
156
+ ],
157
+ "handle_request": [
158
+ {
159
+ "channel": "channel8"
160
+ },
161
+ {
162
+ "channel": "channel9"
163
+ }
164
+ ]
165
+ }
166
+ ]
167
+ },
168
+ {
169
+ "name": "instance2"
170
+ },
171
+ {
172
+ "name": "instance3"
173
+ }
174
+ ]
175
+ },
176
+ {
177
+ "name": "application3",
178
+ "problems": 1,
179
+ "instances": [
180
+ {
181
+ "name": "instance1",
182
+ "problems": 1,
183
+ "components": [
184
+ {
185
+ "name": "component1",
186
+ "publish": [
187
+ {
188
+ "channel": "channel2"
189
+ },
190
+ {
191
+ "channel": "channel10"
192
+ }
193
+ ],
194
+ "subscribe": [
195
+ {
196
+ "channel": "channel1"
197
+ },
198
+ {
199
+ "channel": "channel5"
200
+ }
201
+ ],
202
+ "request": [
203
+ {
204
+ "channel": "channel6"
205
+ },
206
+ {
207
+ "channel": "channel7"
208
+ }
209
+ ],
210
+ "handle_request": [
211
+ {
212
+ "channel": "channel8"
213
+ },
214
+ {
215
+ "channel": "channel9"
216
+ }
217
+ ]
218
+ },
219
+ {
220
+ "name": "component2",
221
+ "problem": true,
222
+ "publish": [
223
+ {
224
+ "channel": "channel10"
225
+ },
226
+ {
227
+ "channel": "channel26"
228
+ },
229
+ {
230
+ "channel": "channel1"
231
+ }
232
+ ],
233
+ "subscribe": [
234
+ {
235
+ "channel": "channel12"
236
+ },
237
+ {
238
+ "channel": "channel30"
239
+ },
240
+ {
241
+ "channel": "channel13"
242
+ }
243
+ ],
244
+ "request": [
245
+ {
246
+ "channel": "channel14"
247
+ },
248
+ {
249
+ "channel": "channel15"
250
+ },
251
+ {
252
+ "channel": "channel31"
253
+ }
254
+ ],
255
+ "handle_request": [
256
+ {
257
+ "channel": "channel16"
258
+ },
259
+ {
260
+ "channel": "channel17"
261
+ }
262
+ ]
263
+ },
264
+ {
265
+ "name": "component3",
266
+ "publish": [
267
+ {
268
+ "channel": "channel18"
269
+ },
270
+ {
271
+ "channel": "channel1"
272
+ }
273
+ ],
274
+ "subscribe": [
275
+ {
276
+ "channel": "channel19"
277
+ },
278
+ {
279
+ "channel": "channel20"
280
+ }
281
+ ],
282
+ "request": [
283
+ {
284
+ "channel": "channel21"
285
+ },
286
+ {
287
+ "channel": "channel22"
288
+ }
289
+ ],
290
+ "handle_request": [
291
+ {
292
+ "channel": "channel1"
293
+ },
294
+ {
295
+ "channel": "channel24"
296
+ }
297
+ ]
298
+ },
299
+ {
300
+ "name": "component4",
301
+ "publish": [
302
+ {
303
+ "channel": "channel25"
304
+ },
305
+ {
306
+ "channel": "channe26"
307
+ }
308
+ ],
309
+ "subscribe": [
310
+ {
311
+ "channel": "channel27"
312
+ },
313
+ {
314
+ "channel": "channel28"
315
+ }
316
+ ],
317
+ "request": [
318
+ {
319
+ "channel": "channel1"
320
+ },
321
+ {
322
+ "channel": "channel30"
323
+ }
324
+ ],
325
+ "handle_request": [
326
+ {
327
+ "channel": "channel31"
328
+ },
329
+ {
330
+ "channel": "channel32"
331
+ }
332
+ ]
333
+ }
334
+ ]
335
+ },
336
+ {
337
+ "name": "instance2"
338
+ },
339
+ {
340
+ "name": "instance3"
341
+ }
342
+ ]
343
+ },
344
+ {
345
+ "name": "application4",
346
+ "instances": [
347
+ {
348
+ "name": "instance1"
349
+ },
350
+ {
351
+ "name": "instance2"
352
+ },
353
+ {
354
+ "name": "instance3"
355
+ }
356
+ ]
357
+ },
358
+ {
359
+ "name": "application5",
360
+ "instances": [
361
+ {
362
+ "name": "instance1"
363
+ },
364
+ {
365
+ "name": "instance2"
366
+ },
367
+ {
368
+ "name": "instance3"
369
+ }
370
+ ]
371
+ },
372
+ {
373
+ "name": "application6",
374
+ "problems": 3,
375
+ "instances": [
376
+ {
377
+ "name": "instance1",
378
+ "problems": 2,
379
+ "components": [
380
+ {
381
+ "name": "component1",
382
+ "problem": true,
383
+ "publish": [
384
+ {
385
+ "channel": "channel1"
386
+ },
387
+ {
388
+ "channel": "channel2"
389
+ },
390
+ {
391
+ "channel": "channel3"
392
+ }
393
+ ],
394
+ "subscribe": [
395
+ {
396
+ "channel": "channel1"
397
+ },
398
+ {
399
+ "channel": "channel5"
400
+ }
401
+ ],
402
+ "request": [
403
+ {
404
+ "channel": "channel6"
405
+ },
406
+ {
407
+ "channel": "channel7"
408
+ }
409
+ ],
410
+ "handle_request": [
411
+ {
412
+ "channel": "channel8"
413
+ },
414
+ {
415
+ "channel": "channel9"
416
+ }
417
+ ]
418
+ },
419
+ {
420
+ "name": "component2",
421
+ "problem": true,
422
+ "publish": [
423
+ {
424
+ "channel": "channel1"
425
+ },
426
+ {
427
+ "channel": "channel11"
428
+ }
429
+ ],
430
+ "subscribe": [
431
+ {
432
+ "channel": "channel1"
433
+ },
434
+ {
435
+ "channel": "channel13"
436
+ }
437
+ ],
438
+ "request": [
439
+ {
440
+ "channel": "channel14"
441
+ },
442
+ {
443
+ "channel": "channel15"
444
+ }
445
+ ],
446
+ "handle_request": [
447
+ {
448
+ "channel": "channel16"
449
+ },
450
+ {
451
+ "channel": "channel17"
452
+ }
453
+ ]
454
+ },
455
+ {
456
+ "name": "component3",
457
+ "publish": [
458
+ {
459
+ "channel": "channel1"
460
+ },
461
+ {
462
+ "channel": "channel19"
463
+ }
464
+ ],
465
+ "subscribe": [
466
+ {
467
+ "channel": "channel20"
468
+ },
469
+ {
470
+ "channel": "channel21"
471
+ }
472
+ ],
473
+ "request": [
474
+ {
475
+ "channel": "channel22"
476
+ },
477
+ {
478
+ "channel": "channel23"
479
+ }
480
+ ],
481
+ "handle_request": [
482
+ {
483
+ "channel": "channel24"
484
+ },
485
+ {
486
+ "channel": "channel25"
487
+ }
488
+ ]
489
+ }
490
+ ]
491
+ },
492
+ {
493
+ "name": "instance2",
494
+ "problems": 1,
495
+ "components": [
496
+ {
497
+ "name": "component1",
498
+ "problem": false,
499
+ "publish": [
500
+ {
501
+ "channel": "channel100"
502
+ },
503
+ {
504
+ "channel": "channel102"
505
+ },
506
+ {
507
+ "channel": "channel103"
508
+ }
509
+ ],
510
+ "subscribe": [
511
+ {
512
+ "channel": "channel1"
513
+ }
514
+ ],
515
+ "request": [
516
+ {
517
+ "channel": "channel6"
518
+ }
519
+ ],
520
+ "handle_request": [
521
+ {
522
+ "channel": "channel8"
523
+ },
524
+ {
525
+ "channel": "channel9"
526
+ }
527
+ ]
528
+ },
529
+ {
530
+ "name": "component2",
531
+ "problem": true,
532
+ "publish": [
533
+ {
534
+ "channel": "channel1"
535
+ },
536
+ {
537
+ "channel": "channel11"
538
+ }
539
+ ],
540
+ "subscribe": [
541
+ {
542
+ "channel": "channel1"
543
+ },
544
+ {
545
+ "channel": "channel13"
546
+ }
547
+ ],
548
+ "request": [
549
+ {
550
+ "channel": "channel14"
551
+ },
552
+ {
553
+ "channel": "channel15"
554
+ }
555
+ ],
556
+ "handle_request": [
557
+ {
558
+ "channel": "channel16"
559
+ },
560
+ {
561
+ "channel": "channel17"
562
+ }
563
+ ]
564
+ },
565
+ {
566
+ "name": "component3",
567
+ "publish": [
568
+ {
569
+ "channel": "channel1"
570
+ },
571
+ {
572
+ "channel": "channel19"
573
+ }
574
+ ],
575
+ "subscribe": [
576
+ {
577
+ "channel": "channel20"
578
+ },
579
+ {
580
+ "channel": "channel21"
581
+ }
582
+ ],
583
+ "request": [
584
+ {
585
+ "channel": "channel22"
586
+ },
587
+ {
588
+ "channel": "channel23"
589
+ }
590
+ ],
591
+ "handle_request": [
592
+ {
593
+ "channel": "channel24"
594
+ },
595
+ {
596
+ "channel": "channel25"
597
+ }
598
+ ]
599
+ }
600
+ ]
601
+ },
602
+ {
603
+ "name": "instance3",
604
+ "problems": 1,
605
+ "components": [
606
+ {
607
+ "name": "component1",
608
+ "problem": false,
609
+ "publish": [
610
+ {
611
+ "channel": "channel1"
612
+ },
613
+ {
614
+ "channel": "channel2"
615
+ },
616
+ {
617
+ "channel": "channel3"
618
+ }
619
+ ],
620
+ "subscribe": [
621
+ {
622
+ "channel": "channel4"
623
+ }
624
+ ],
625
+ "request": [
626
+ {
627
+ "channel": "channel5"
628
+ }
629
+ ],
630
+ "handle_request": [
631
+ {
632
+ "channel": "channel8"
633
+ },
634
+ {
635
+ "channel": "channel9"
636
+ }
637
+ ]
638
+ },
639
+ {
640
+ "name": "component2",
641
+ "problem": true,
642
+ "publish": [
643
+ {
644
+ "channel": "channel1"
645
+ },
646
+ {
647
+ "channel": "channel11"
648
+ }
649
+ ],
650
+ "subscribe": [
651
+ {
652
+ "channel": "channel67"
653
+ },
654
+ {
655
+ "channel": "channel13"
656
+ }
657
+ ],
658
+ "request": [
659
+ {
660
+ "channel": "channel14"
661
+ },
662
+ {
663
+ "channel": "channel15"
664
+ }
665
+ ],
666
+ "handle_request": [
667
+ {
668
+ "channel": "channel16"
669
+ },
670
+ {
671
+ "channel": "channel17"
672
+ }
673
+ ]
674
+ },
675
+ {
676
+ "name": "component3",
677
+ "publish": [
678
+ {
679
+ "channel": "channel1"
680
+ },
681
+ {
682
+ "channel": "channel19"
683
+ }
684
+ ],
685
+ "subscribe": [
686
+ {
687
+ "channel": "channel20"
688
+ },
689
+ {
690
+ "channel": "channel21"
691
+ }
692
+ ],
693
+ "request": [
694
+ {
695
+ "channel": "channel22"
696
+ },
697
+ {
698
+ "channel": "channel23"
699
+ }
700
+ ],
701
+ "handle_request": [
702
+ {
703
+ "channel": "channel24"
704
+ },
705
+ {
706
+ "channel": "channel25"
707
+ }
708
+ ]
709
+ },
710
+ {
711
+ "name": "component4",
712
+ "problem": false,
713
+ "publish": [
714
+ {
715
+ "channel": "channel26"
716
+ },
717
+ {
718
+ "channel": "channel27"
719
+ },
720
+ {
721
+ "channel": "channel28"
722
+ }
723
+ ],
724
+ "subscribe": [
725
+ {
726
+ "channel": "channel29"
727
+ }
728
+ ],
729
+ "request": [
730
+ {
731
+ "channel": "channel30"
732
+ }
733
+ ],
734
+ "handle_request": [
735
+ {
736
+ "channel": "channel31"
737
+ },
738
+ {
739
+ "channel": "channel32"
740
+ }
741
+ ]
742
+ },
743
+ {
744
+ "name": "component5",
745
+ "problem": false,
746
+ "publish": [
747
+ {
748
+ "channel": "channel33"
749
+ },
750
+ {
751
+ "channel": "channel34"
752
+ },
753
+ {
754
+ "channel": "channel35"
755
+ }
756
+ ],
757
+ "subscribe": [
758
+ {
759
+ "channel": "channel36"
760
+ }
761
+ ],
762
+ "request": [
763
+ {
764
+ "channel": "channel37"
765
+ }
766
+ ],
767
+ "handle_request": [
768
+ {
769
+ "channel": "channel38"
770
+ },
771
+ {
772
+ "channel": "channel39"
773
+ }
774
+ ]
775
+ },
776
+ {
777
+ "name": "component6",
778
+ "problem": false,
779
+ "publish": [
780
+ {
781
+ "channel": "channel40"
782
+ },
783
+ {
784
+ "channel": "channel41"
785
+ },
786
+ {
787
+ "channel": "channel42"
788
+ }
789
+ ],
790
+ "subscribe": [
791
+ {
792
+ "channel": "channel43"
793
+ }
794
+ ],
795
+ "request": [
796
+ {
797
+ "channel": "channel44"
798
+ }
799
+ ],
800
+ "handle_request": [
801
+ {
802
+ "channel": "channel45"
803
+ },
804
+ {
805
+ "channel": "channel46"
806
+ }
807
+ ]
808
+ }
809
+ ]
810
+ }
811
+ ]
812
+ }
813
+ ]
814
+ }