Reputation: 1
I'm trying to do simple visualization in Azure Monitor of my entities relations.
I created relations manually:
datatable(nodeId: string, SourceId: string, targetId: string)
[
"node1", "", "node1",
"node2", "node1", "node2",
"node3", "node2", "node3",
"node3", "node4", "node3",
"node4", "", "node4",
"node5", "node1", "node5",
"node3", "node5", "node3"
]
I've got undesired result, containing proper nodes with relations and useless nodes.
Seems like nodeID should be unique, but in this case I'm not sure how to construct proper table and display all node relations in the graph.
Upvotes: 0
Views: 34