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