exam questions

Exam DP-420 All Questions

View all questions & answers for the DP-420 exam

Exam DP-420 topic 5 question 11 discussion

Actual exam question from Microsoft's DP-420
Question #: 11
Topic #: 5
[All DP-420 Questions]

You have an Azure Cosmos DB Core (SQL) API account.
You configure the diagnostic settings to send all log information to a Log Analytics workspace.
You need to identify when the provisioned request units per second (RU/s) for resources within the account were modified.
You write the following query.

AzureDiagnostics -
| where Category == "ControlPlaneRequests"
What should you include in the query?

  • A. | where OperationName startswith "AccountUpdateStart"
  • B. | where OperationName startswith "SqlContainersDelete"
  • C. | where OperationName startswith "MongoCollectionsThroughputUpdate"
  • D. | where OperationName startswith "SqlContainersThroughputUpdate"
Show Suggested Answer Hide Answer
Suggested Answer: D 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Internal_Koala
Highly Voted 2 years, 7 months ago
Selected Answer: D
Vote for D as per the linked website's example: AzureDiagnostics | where Category == "ControlPlaneRequests" | where OperationName startswith "SqlContainersThroughputUpdate"
upvoted 16 times
...
Examdumps2023
Most Recent 11 months, 3 weeks ago
Selected Answer: D
D. | where OperationName startswith "SqlContainersThroughputUpdate" Explanation: A. | where OperationName startswith "AccountUpdateStart": This operation is more general and pertains to updates at the account level, not specifically throughput settings for containers. B. | where OperationName startswith "SqlContainersDelete": This operation pertains to the deletion of SQL containers and not to throughput updates. C. | where OperationName startswith "MongoCollectionsThroughputUpdate": This operation is specific to MongoDB collections, not SQL containers. D. | where OperationName startswith "SqlContainersThroughputUpdate": This operation is specific to updating the throughput (RU/s) for SQL containers, which is exactly what you need to track.
upvoted 2 times
...
orionduo
1 year, 10 months ago
AzureDiagnostics | where Category == "ControlPlaneRequests" | where OperationName startswith "SqlContainersThroughputUpdate" refer. https://learn.microsoft.com/en-us/azure/cosmos-db/audit-control-plane-logs
upvoted 4 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...