-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkload-diagrams.json
More file actions
481 lines (481 loc) · 19.1 KB
/
workload-diagrams.json
File metadata and controls
481 lines (481 loc) · 19.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
{
"basic-echo": {
"sources": [
{ "label": "HTTP Clients", "subLabel": "localhost:8080", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP Listener", "subLabel": "/echo", "status": "active" },
"middlewares": [],
"backend": { "label": "Echo Backend", "subLabel": "Reflect response", "status": "active" }
},
"targets": [
{ "label": "HTTP Response", "subLabel": "Echo output", "status": "active" }
]
},
"http-external": {
"sources": [
{ "label": "HTTP Clients", "subLabel": "Various endpoints", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP", "subLabel": "Listen all paths", "status": "active" },
"middlewares": [
{ "label": "Policy", "subLabel": "Block Admin APIs", "status": "active" },
{ "label": "Rate Limit", "subLabel": "100/minute", "status": "active" },
{ "label": "Method", "subLabel": "Allow HTTP GET, POST", "status": "active" }
],
"backend": { "label": "HTTP", "subLabel": "To backend services", "status": "active" }
},
"targets": [
{ "label": "Backend Services", "subLabel": "Internal services", "status": "active" }
]
},
"http-internal": {
"sources": [
{ "label": "HTTP Clients", "subLabel": "Various endpoints", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP", "subLabel": "Listen all paths", "status": "active" },
"middlewares": [
{ "label": "Policy", "subLabel": "Block external IPs", "status": "active" },
{ "label": "Method", "subLabel": "Allow all HTTP methods", "status": "active" }
],
"backend": { "label": "HTTP", "subLabel": "To backend services", "status": "active" }
},
"targets": [
{ "label": "Backend Services", "subLabel": "Internal services", "status": "active" }
]
},
"fhir": {
"sources": [
{ "label": "FHIR Clients", "subLabel": "REST requests", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP Listener", "subLabel": "localhost:8081", "status": "active" },
"middlewares": [
{ "label": "Authenticate", "subLabel": "Basic auth", "status": "active" },
{ "label": "Extract", "subLabel": "JSON parsing", "status": "active" }
],
"backend": { "label": "FHIR Proxy", "subLabel": "Forward to server", "status": "active" }
},
"targets": [
{ "label": "Firely Server", "subLabel": "FHIR endpoint", "status": "active" }
]
},
"http-to-dicom": {
"sources": [
{ "label": "HTTP Clients", "subLabel": "REST API", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP Listener", "subLabel": "Accept requests", "status": "active" },
"middlewares": [
{ "label": "Parse", "subLabel": "HTTP to DICOM ops", "status": "active" },
{ "label": "Route", "subLabel": "C-FIND/C-MOVE/C-STORE", "status": "active" }
],
"backend": { "label": "DICOM SCU", "subLabel": "PACS client", "status": "active" }
},
"targets": [
{ "label": "PACS System", "subLabel": "DICOM server", "status": "active" }
]
},
"fhir-dicom": {
"sources": [
{ "label": "FHIR Clients", "subLabel": "Clinical data", "status": "active" }
],
"harmony": {
"frontend": { "label": "FHIR service", "subLabel": "", "status": "active" },
"middlewares": [
{ "label": "Filter", "subLabel": "Limit to ImagingStudy", "status": "active" },
{ "label": "Transform", "subLabel": "FHIR query to DICOM", "status": "active" }
],
"backend": { "label": "DICOM", "subLabel": "DIMSE messaging", "status": "active" }
},
"targets": [
{ "label": "PACS/VNA", "subLabel": "Imaging data", "status": "active" }
]
},
"soap-to-json": {
"sources": [
{ "label": "SOAP Clients", "subLabel": "XML/SOAP", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP Listener", "subLabel": "POST /soap", "status": "active" },
"middlewares": [
{ "label": "Parse", "subLabel": "XML detection", "status": "active" },
{ "label": "Transform", "subLabel": "JOLT XML→JSON", "status": "active" },
{ "label": "Authorize", "subLabel": "JWT Bearer token", "status": "active" }
],
"backend": { "label": "Forward", "subLabel": "JSON payload", "status": "active" }
},
"targets": [
{ "label": "JSON Backend", "subLabel": "localhost:9000", "status": "active" }
]
},
"dicomweb-dicom": {
"sources": [
{ "label": "Web Clients", "subLabel": "DICOMweb requests", "status": "active" }
],
"harmony": {
"frontend": { "label": "DICOMweb", "subLabel": "Web protocol", "status": "active" },
"middlewares": [
{ "label": "Policy", "subLabel": "Block External APIs", "status": "active" },
{ "label": "Policy", "subLabel": "Allow DICOMweb", "status": "active" },
{ "label": "Policy", "subLabel": "Rate limit", "status": "active" },
{ "label": "Transform", "subLabel": "Convert DICOMweb to DICOM", "status": "active" }
],
"backend": { "label": "DICOM SCU", "subLabel": "Query DICOM services", "status": "active" }
},
"targets": [
{ "label": "PACS", "subLabel": "DICOM resources", "status": "active" }
]
},
"dicom-scp": {
"sources": [
{ "label": "Modalities", "subLabel": "CT/MRI/US", "status": "active" }
],
"harmony": {
"frontend": { "label": "DICOM SCP", "subLabel": "Listen DICOM port", "status": "active" },
"middlewares": [
{ "label": "Accept", "subLabel": "C-STORE/C-FIND", "status": "active" },
{ "label": "Route", "subLabel": "By study type", "status": "active" }
],
"backend": { "label": "Store", "subLabel": "Locally or forward", "status": "active" }
},
"targets": [
{ "label": "PACS Archive", "subLabel": "Image storage", "status": "active" }
]
},
"jmix": {
"sources": [
{ "label": "Jmix Apps", "subLabel": "REST API", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP Listener", "subLabel": "Jmix endpoint", "status": "active" },
"middlewares": [
{ "label": "Authenticate", "subLabel": "Jmix auth", "status": "active" },
{ "label": "Validate", "subLabel": "Schema check", "status": "active" },
{ "label": "Optimize", "subLabel": "Performance tuning", "status": "active" }
],
"backend": { "label": "Route", "subLabel": "To systems", "status": "active" }
},
"targets": [
{ "label": "External Systems", "subLabel": "APIs/DICOM", "status": "active" }
]
},
"transform": {
"sources": [
{ "label": "JSON Data", "subLabel": "Input records", "status": "active" }
],
"harmony": {
"frontend": { "label": "Input", "subLabel": "Accept JSON", "status": "active" },
"middlewares": [
{ "label": "JOLT", "subLabel": "Transform spec", "status": "active" },
{ "label": "Map", "subLabel": "Patient→FHIR", "status": "active" }
],
"backend": { "label": "Output", "subLabel": "Transformed data", "status": "active" }
},
"targets": [
{ "label": "FHIR Systems", "subLabel": "Normalized format", "status": "active" }
]
},
"http-content-type": {
"sources": [
{ "label": "JSON Clients", "subLabel": "application/json", "status": "active" },
{ "label": "FHIR Clients", "subLabel": "application/fhir+json", "status": "active" },
{ "label": "DICOM Clients", "subLabel": "application/dicom+json", "status": "active" }
],
"harmony": {
"frontend": { "label": "Content Negotiation", "subLabel": "Auto-detect MIME", "status": "active" },
"middlewares": [
{ "label": "Parse", "subLabel": "By content type", "status": "active" },
{ "label": "Validate", "subLabel": "Format check", "status": "active" }
],
"backend": { "label": "Route", "subLabel": "By format", "status": "active" }
},
"targets": [
{ "label": "Appropriate Backend", "subLabel": "Matched format", "status": "active" }
]
},
"http-http": {
"sources": [
{ "label": "HTTP Clients", "subLabel": "REST requests", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP Listener", "subLabel": "Accept requests", "status": "active" },
"middlewares": [],
"backend": { "label": "HTTP Passthrough", "subLabel": "Forward requests", "status": "active" }
},
"targets": [
{ "label": "Backend Service", "subLabel": "HTTP server", "status": "active" }
]
},
"http3-backend": {
"sources": [
{ "label": "HTTP Clients", "subLabel": "HTTP/1.x requests", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP Listener", "subLabel": "TCP port 8080", "status": "active" },
"middlewares": [],
"backend": { "label": "HTTP/3 Backend", "subLabel": "QUIC + TLS 1.3", "status": "active" }
},
"targets": [
{ "label": "HTTP/3 Server", "subLabel": "QUIC-enabled API", "status": "active" }
]
},
"http3-listener": {
"sources": [
{ "label": "HTTP/3 Clients", "subLabel": "QUIC requests", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP/3 Listener", "subLabel": "UDP port 443", "status": "active" },
"middlewares": [],
"backend": { "label": "HTTP Backend", "subLabel": "Standard HTTP", "status": "active" }
},
"targets": [
{ "label": "HTTP Server", "subLabel": "Backend service", "status": "active" }
]
},
"dicom-cstore-to-filesystem": {
"sources": [
{ "label": "Modalities", "subLabel": "DICOM C-STORE", "status": "active" }
],
"harmony": {
"frontend": { "label": "DICOM SCP", "subLabel": "Listen DICOM port", "status": "active" },
"middlewares": [
{ "label": "Accept", "subLabel": "C-STORE operations", "status": "active" }
],
"backend": { "label": "Filesystem", "subLabel": "Store files", "status": "active" }
},
"targets": [
{ "label": "Local Filesystem", "subLabel": "DICOM file storage", "status": "active" }
]
},
"au-erequesting-http-to-fhir": {
"sources": [
{ "label": "HTTP Clients", "subLabel": "Service requests", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP Listener", "subLabel": "Accept requests", "status": "active" },
"middlewares": [
{ "label": "Transform", "subLabel": "HTTP to FHIR", "status": "active" },
{ "label": "Validate", "subLabel": "eRequesting spec", "status": "active" }
],
"backend": { "label": "FHIR Bundle", "subLabel": "Generate bundles", "status": "active" }
},
"targets": [
{ "label": "FHIR System", "subLabel": "AU eRequesting", "status": "active" }
]
},
"au-erequesting-fhir-to-http": {
"sources": [
{ "label": "FHIR Clients", "subLabel": "FHIR bundles", "status": "active" }
],
"harmony": {
"frontend": { "label": "FHIR Listener", "subLabel": "Accept bundles", "status": "active" },
"middlewares": [
{ "label": "Parse", "subLabel": "FHIR extraction", "status": "active" },
{ "label": "Transform", "subLabel": "FHIR to HTTP", "status": "active" }
],
"backend": { "label": "HTTP Client", "subLabel": "REST calls", "status": "active" }
},
"targets": [
{ "label": "Backend Services", "subLabel": "HTTP APIs", "status": "active" }
]
},
"webhook": {
"sources": [
{ "label": "HTTP Clients", "subLabel": "REST requests", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP Listener", "subLabel": "Accept requests", "status": "active" },
"middlewares": [
{ "label": "Webhook", "subLabel": "Emit JSON payloads", "status": "active" }
],
"backend": { "label": "Echo Backend", "subLabel": "Reflect response", "status": "active" }
},
"targets": []
},
"santas-workshop": {
"sources": [
{ "label": "Children's Letters", "subLabel": "Gift requests", "status": "active" },
{ "label": "Nice List", "subLabel": "Eligibility data", "status": "active" }
],
"harmony": {
"frontend": { "label": "Gift API", "subLabel": "localhost:2512", "status": "active" },
"middlewares": [
{ "label": "Cookie Auth", "subLabel": "Milk & cookies", "status": "active" },
{ "label": "Naughty/Nice", "subLabel": "List verification", "status": "active" },
{ "label": "Gift Transform", "subLabel": "EPF to UGS", "status": "active" }
],
"backend": { "label": "Elf Production", "subLabel": "Workshop queue", "status": "active" }
},
"targets": [
{ "label": "Reindeer Fleet", "subLabel": "Delivery logistics", "status": "active" },
{ "label": "Chimneys", "subLabel": "Worldwide", "status": "active" }
]
},
"dicom_to_dicomweb": {
"sources": [
{ "label": "DICOM Modalities", "subLabel": "DIMSE operations", "status": "active" }
],
"harmony": {
"frontend": { "label": "DICOM SCP", "subLabel": "Listen DICOM port 11112", "status": "active" },
"middlewares": [
{ "label": "Convert", "subLabel": "DICOM to DICOMweb", "status": "active" }
],
"backend": { "label": "DICOMweb", "subLabel": "HTTP to DICOMweb API", "status": "active" }
},
"targets": [
{ "label": "DICOMweb Server", "subLabel": "Web-based DICOM access", "status": "active" }
]
},
"ucp-checkout": {
"sources": [
{ "label": "AI Agents & Clients", "subLabel": "UCP shopping flows", "status": "active" }
],
"harmony": {
"frontend": {
"label": "HTTP Listener",
"subLabel": "0.0.0.0:8085 /.well-known/ucp/profile + /v1/checkout/sessions",
"status": "active"
},
"middlewares": [
{
"label": "Profile Transform",
"subLabel": "profile_response (GET /.well-known/ucp/profile)",
"status": "active"
},
{
"label": "UCP → Mock Cart",
"subLabel": "ucp_to_backend (POST/PATCH /v1/checkout/sessions)",
"status": "active"
},
{
"label": "Mock Cart → UCP",
"subLabel": "backend_to_ucp (response mapping)",
"status": "active"
}
],
"backend": {
"label": "Mock Commerce Backend",
"subLabel": "echo service (commerce_backend)",
"status": "active"
}
},
"targets": [
{ "label": "UCP Checkout Sessions", "subLabel": "Profiles, carts, orders", "status": "active" }
]
},
"dicom-to-jmix": {
"sources": [
{ "label": "DICOM Modalities", "subLabel": "C-STORE images", "status": "active" }
],
"harmony": {
"frontend": { "label": "DICOM SCP", "subLabel": "AET: JMIX_RECEIVER", "status": "active" },
"middlewares": [
{ "label": "JMIX Builder", "subLabel": "Package to envelope", "status": "active" }
],
"backend": { "label": "JMIX Backend", "subLabel": "Upstream storage", "status": "active" }
},
"targets": [
{ "label": "Upstream JMIX Server", "subLabel": "Envelope storage", "status": "active" }
]
},
"jmix-backend": {
"sources": [
{ "label": "JMIX Clients", "subLabel": "POST/GET requests", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP Listener", "subLabel": "/jmix endpoint", "status": "active" },
"middlewares": [
{ "label": "Access Control", "subLabel": "Method filtering", "status": "active" }
],
"backend": { "label": "JMIX Backend", "subLabel": "Forward to upstream", "status": "active" }
},
"targets": [
{ "label": "Upstream JMIX Server", "subLabel": "Envelope storage", "status": "active" }
]
},
"data-mesh": {
"sources": [
{ "label": "Internal Clients", "subLabel": "Local services", "status": "active" },
{ "label": "Mesh Partners", "subLabel": "External orgs", "status": "active" }
],
"harmony": {
"frontend": { "label": "FHIR Listener", "subLabel": "Internal + Mesh", "status": "active" },
"middlewares": [
{ "label": "Mesh Policies", "subLabel": "Access control", "status": "active" }
],
"backend": { "label": "Mesh Egress", "subLabel": "Partner routing", "status": "active" }
},
"targets": [
{ "label": "Partner FHIR", "subLabel": "External orgs", "status": "active" },
{ "label": "Imaging Centers", "subLabel": "DICOMweb", "status": "active" }
]
},
"http-file-upload": {
"sources": [
{ "label": "HTTP Clients", "subLabel": "Binary uploads", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP Listener", "subLabel": "POST /upload", "status": "active" },
"middlewares": [],
"backend": { "label": "Storage Backend", "subLabel": "Local filesystem", "status": "active" }
},
"targets": [
{ "label": "Local Filesystem", "subLabel": "UUID-named files", "status": "active" }
]
},
"http-with-middleware": {
"sources": [
{ "label": "HTTP Clients", "subLabel": "JSON requests", "status": "active" }
],
"harmony": {
"frontend": { "label": "HTTP Listener", "subLabel": "/api/* paths", "status": "active" },
"middlewares": [
{ "label": "Basic Auth", "subLabel": "User/password", "status": "active" },
{ "label": "Policies", "subLabel": "IP, rate, method", "status": "active" },
{ "label": "Path Filter", "subLabel": "Allow /api/*", "status": "active" },
{ "label": "Transform", "subLabel": "JOLT req/res", "status": "active" }
],
"backend": { "label": "HTTP Backend", "subLabel": "Forward requests", "status": "active" }
},
"targets": [
{ "label": "Backend Server", "subLabel": "HTTP service", "status": "active" }
]
},
"dicom-ai": {
"sources": [
{ "label": "PACS System", "subLabel": "DICOM C-STORE", "status": "active" },
{ "label": "Medical Modalities", "subLabel": "CT/MRI/Ultrasound", "status": "active" }
],
"harmony": {
"frontend": { "label": "DICOM SCP", "subLabel": "AET: AI_GATEWAY", "status": "active" },
"middlewares": [
{ "label": "DICOM Flatten", "subLabel": "Flatten DICOM structure", "status": "active" },
{ "label": "Transform", "subLabel": "JOLT restructuring", "status": "active" }
],
"backend": { "label": "HTTP Client", "subLabel": "AI Cloud API", "status": "active" }
},
"targets": [
{ "label": "AI Cloud Service", "subLabel": "Image analysis", "status": "active" },
{ "label": "ML Pipeline", "subLabel": "Processing request", "status": "active" }
]
},
"mcp-to-http": {
"sources": [
{ "label": "AI Agents", "subLabel": "MCP/JSON-RPC", "status": "active" }
],
"harmony": {
"frontend": { "label": "MCP Bridge", "subLabel": "localhost:8090/mcp", "status": "active" },
"middlewares": [
{ "label": "Access Control", "subLabel": "IP allow, POST/JSON only", "status": "active" },
{ "label": "JSON Extract", "subLabel": "Parse MCP request", "status": "active" },
{ "label": "Transform", "subLabel": "MCP→HTTP JOLT", "status": "active" }
],
"backend": { "label": "HTTP Forward", "subLabel": "To backend API", "status": "active" }
},
"targets": [
{ "label": "HTTP Backend", "subLabel": "localhost:8081", "status": "active" }
]
}
}