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
| "data": { "getGlobalTopologyByLabel": { "nodes": [{ --拓扑图的服务节点集合 "id": "32",--服务节点ID "name": "sc-nacos-demo-8789",--节点服务名称 "type": "SpringMVC",--节点服务类型 "isReal": "true",--是否是真实的 "nodeType": 0 }, { "id": "1", "name": "User", "type": "USER", "isReal": "false", "nodeType": 0 }, { "id": "18", "name": "bufx-sc-nacos-demo-8789", "type": "SpringMVC", "isReal": "true", "nodeType": 0 } ], "calls": [{ --拓扑图的链路结合 "id": "18_18",--链路ID "source": "18",--链路起始节点ID "target": "18",--链路结束阶段ID "callType": "SpringRestTemplate",--链路类型 "detectPoint": null, "detectPoints": [--链路侦查端类型 "CLIENT", "SERVER" ] }, { "id": "32_32", "source": "32", "target": "32", "callType": "SpringRestTemplate", "detectPoint": null, "detectPoints": [ "CLIENT", "SERVER" ] }, { "id": "1_18", "source": "1", "target": "18", "callType": "", "detectPoint": null, "detectPoints": [ "SERVER" ] } ] } } }
|