Azure · AZ-400

Operational Excellence — Azure DevOps Engineer (AZ-400)

6%of exam questions (12 of 200)

Monitoring Depth and Operational Overhead Pull in Opposite Directions

AZ-400 distinguishes between Azure Monitor metrics (infrastructure-level telemetry), Application Insights (code-level request tracing), and Activity Logs (control-plane audit events). Scenarios that mention "slow page loads" or "dependency failures" are signaling Application Insights, not Azure Monitor. Scenarios asking "who changed the policy" are signaling Activity Log. When a question asks for the lowest-overhead option that still satisfies incident response SLAs, that phrase is eliminating solutions requiring custom dashboards or manual correlation steps.

What This Pattern Tests

Azure operational excellence questions test whether you automate operations with Azure-native tools. Azure Pipelines with YAML definitions provide version-controlled CI/CD. Azure Policy enforces resource configuration standards (require tags, restrict VM sizes, mandate encryption). Azure Automation runbooks handle routine tasks like VM patching, certificate rotation, and resource cleanup. For AZ-400, the focus is on combining Azure Boards for work tracking, Azure Repos for source control, and Azure Pipelines for build/release into a unified DevOps workflow. Azure Monitor action groups trigger Logic Apps or Azure Functions for automated incident response. The trap is building custom scripts on VMs when Azure Automation, Logic Apps, or Azure Functions provide managed alternatives.

Decision Axis

Manual scripts vs. managed automation services. Azure rewards declarative, policy-driven operations over imperative scripts.

Associated Traps

More Top Traps on This Exam

Decision Rules

Whether to extend the existing Application Insights instrumentation (application-layer telemetry: traces, exceptions, dependencies) or enable Container Insights (cluster/node/pod-layer telemetry: restart counts, pod phase transitions, eviction events) to satisfy a sub-5-minute restart-loop detection constraint.

Container InsightsApplication InsightsAzure Monitor

Whether to enable VM Insights — gaining the pre-built Map feature and performance workbooks at the cost of a new onboarding step — versus extending existing Log Analytics with manually authored Data Collection Rules and custom Kusto workbooks to approximate the same telemetry depth.

VM InsightsAzure Log AnalyticsAzure Monitor

Whether to instrument deployment-to-regression correlation via Application Insights deployment annotations triggered natively from a GitHub Actions workflow step, or via a custom Azure Log Analytics ingest pipeline with cross-workspace Kusto queries joining pipeline metadata to application traces — where the deciding constraint is minimizing alert-actionability latency and ongoing configuration overhead.

Application InsightsAzure MonitorGitHub Actions

Domain Coverage

Implement an Instrumentation Strategy

Difficulty Breakdown

Medium: 4Hard: 4Expert: 4