nikifir
nikifir

Reputation: 1

Azure Monitor - Graph - In which format should I pass table to visualize nodes relations as Graph

I'm trying to do simple visualization in Azure Monitor of my entities relations.

what i need

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.

what i got

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

Answers (0)

Related Questions