You have an Azure subscription that contains 10 virtual machines on a virtual network.
You need to create a graph visualization to display the traffic flow between the virtual machines.
What should you do from Azure Monitor?
C
Navigate to Azure Monitor and select Logs to begin querying the data
https://azure.microsoft.com/en-us/blog/analysis-of-network-connection-data-with-azure-monitor-for-virtual-machines/To create a graph visualization that displays traffic flow between virtual machines in Azure, you should use Azure Monitor Logs.
Here are the steps to create the visualization:
scsslet startDateTime = datetime(ago(1h)); let endDateTime = datetime(now()); let interval = 1m; let query = NetworkWatchdogCLow | where TimeGenerated >= startDateTime and TimeGenerated <= endDateTime | summarize AggregatedValue = sum(TotalFlows) by Direction, SourceIP, DestinationIP, Protocol, SourcePort, DestinationPort, bin(TimeGenerated, interval) | order by AggregatedValue desc; query
Therefore, the answer to the given question is C. From Logs, create a new query.