An administrator is configuring a monitoring solution for a set of Azure Virtual Machines that send diagnostics to a central Log Analytics workspace. The administrator must meet the following requirements:
1. Ensure that developers can only view diagnostic logs for the specific virtual machines they own (resource-context access), without granting them access to view logs of other resources in the workspace.
2. Write a query to retrieve the most recent CPU utilization percentage (using the `% Processor Time` counter from the `Processor` object) for each virtual machine, returning only the records where this latest CPU utilization value exceeds 80%.
Which of the following configurations and Kusto Query Language (KQL) queries should the administrator implement? (Select TWO.)
- Configure the Log Analytics workspace access control mode to 'Use resource or workspace permissions' and assign the Reader role to the developers on their respective virtual machines.Cevap
- BConfigure the Log Analytics workspace access control mode to 'Require workspace permissions' and assign the Log Analytics Reader role to the developers on the workspace.
- Run the query: Perf | where CounterName == "% Processor Time" and ObjectName == "Processor" | summarize arg_max(TimeGenerated, CounterValue) by Computer | where CounterValue > 80Cevap
- DRun the query: Perf | summarize arg_max(TimeGenerated, CounterValue) by Computer | where CounterName == "% Processor Time" and CounterValue > 80