πŸ”’ Guided

Pre-launch preview. Authorised access only.

Incorrect code

Guided by A Guide to Cloud
Explore AB-900 AI-901
Guided AZ-120 Domain 4
Domain 4 β€” Module 1 of 7 14%
22 of 28 overall

AZ-120 Study Guide

Domain 1: Migrate SAP Workloads to Azure

  • SAP on Azure: The Big Picture Free
  • Assessing SAP Workloads for Migration Free
  • Migration Strategies: The Decision Framework Free
  • RISE with SAP on Azure Free
  • Migration Execution: DMO, Classical, and Beyond Free
  • HANA System Replication for Migration Free
  • Post-Migration: Validation, Health, and HLI Migration Free

Domain 2: Design and Implement an Infrastructure to Support SAP Workloads

  • SAP-Certified Virtual Machines on Azure
  • Storage Architecture for SAP on Azure
  • Networking for SAP on Azure
  • HANA Architecture on Azure
  • SAP Application Tier on Azure
  • Proximity Placement and Availability Options
  • Azure Center for SAP Solutions (ACSS)
  • SAP Deployment Automation Framework (SDAF)

Domain 3: Design and Implement High Availability and Disaster Recovery

  • High Availability Concepts for SAP
  • High Availability for ASCS/SCS
  • HANA System Replication for HA
  • Shared Storage and Load Balancer Deep Dive
  • Disaster Recovery Strategy for SAP
  • Disaster Recovery Implementation

Domain 4: Maintain SAP Workloads on Azure

  • Azure Monitor for SAP Solutions
  • Backup for SAP HANA
  • Backup for SAP Application Servers
  • Security and Encryption for SAP
  • Microsoft Sentinel for SAP
  • Cost Optimization for SAP on Azure
  • SAP Operations and Lifecycle Management

AZ-120 Study Guide

Domain 1: Migrate SAP Workloads to Azure

  • SAP on Azure: The Big Picture Free
  • Assessing SAP Workloads for Migration Free
  • Migration Strategies: The Decision Framework Free
  • RISE with SAP on Azure Free
  • Migration Execution: DMO, Classical, and Beyond Free
  • HANA System Replication for Migration Free
  • Post-Migration: Validation, Health, and HLI Migration Free

Domain 2: Design and Implement an Infrastructure to Support SAP Workloads

  • SAP-Certified Virtual Machines on Azure
  • Storage Architecture for SAP on Azure
  • Networking for SAP on Azure
  • HANA Architecture on Azure
  • SAP Application Tier on Azure
  • Proximity Placement and Availability Options
  • Azure Center for SAP Solutions (ACSS)
  • SAP Deployment Automation Framework (SDAF)

Domain 3: Design and Implement High Availability and Disaster Recovery

  • High Availability Concepts for SAP
  • High Availability for ASCS/SCS
  • HANA System Replication for HA
  • Shared Storage and Load Balancer Deep Dive
  • Disaster Recovery Strategy for SAP
  • Disaster Recovery Implementation

Domain 4: Maintain SAP Workloads on Azure

  • Azure Monitor for SAP Solutions
  • Backup for SAP HANA
  • Backup for SAP Application Servers
  • Security and Encryption for SAP
  • Microsoft Sentinel for SAP
  • Cost Optimization for SAP on Azure
  • SAP Operations and Lifecycle Management
Domain 4: Maintain SAP Workloads on Azure Premium ⏱ ~12 min read

Azure Monitor for SAP Solutions

Configure Azure Monitor for SAP solutions with providers for HANA, NetWeaver, OS, SQL Server, and HA clusters. Set up alerts, dashboards, and use Azure Advisor and Network Watcher for SAP performance optimization.

Monitoring SAP in production

πŸ”§ Aisha Okonkwo opens her monitoring dashboard. β€œThe migration is done, HA and DR are configured. Now begins the real work β€” keeping SAP running day after day. At TradeCorp, I monitor 15 SAP systems. Without proper monitoring, issues sneak up and become outages before anyone notices.”

Carlos, her manager, leans in. β€œAisha, the executive team expects a weekly health report. Can Azure tell us if SAP is healthy without logging into every system individually?”

πŸ”§ Aisha grins. β€œThat is exactly what Azure Monitor for SAP solutions does.”

β˜• Simple explanation

Think of it like a fitness tracker for your SAP system.

A fitness tracker monitors your heart rate, steps, sleep, and blood oxygen β€” all in one app. Azure Monitor for SAP (AMS) monitors your HANA database health, application server performance, operating system metrics, and cluster status β€” all in one dashboard. If your heart rate spikes (CPU usage), the tracker alerts you. If your sleep quality drops (HANA memory pressure), you get a notification before it becomes a problem.

Azure Monitor for SAP solutions (AMS) is a purpose-built monitoring service that collects telemetry from SAP components through providers. Each provider connects to a specific data source (HANA SQL port, NetWeaver RFC, OS metrics, HA cluster status) and feeds data into Azure Monitor Logs. From there, you can build dashboards in Azure Workbooks, set up alerts in Azure Monitor, and correlate SAP-level events with infrastructure metrics. AMS is the primary monitoring tool for the AZ-120 exam.

AMS providers

AMS uses a provider model β€” each provider connects to a specific SAP or infrastructure component:

Azure Monitor for SAP providers
ProviderWhat it monitorsData collectedConnection method
SAP HANAHANA database health and performanceMemory usage, CPU, disk I/O, replication status, backup status, alertsHANA SQL port (3xx15)
SAP NetWeaverApplication server healthWork process utilization, queue lengths, batch job status, response timesRFC/HTTP to SAP system
OS (Linux)Operating system metricsCPU, memory, disk, network, swap usage per VMNode Exporter (Prometheus)
Microsoft SQL ServerSQL Server for non-HANA SAP systemsDatabase size, log space, backup status, wait statisticsSQL connection string
IBM Db2Db2 for SAP systems using Db2 as the databaseDatabase health, log utilization, backup statusDb2 connection
HA (Pacemaker) clusterCluster health and failover eventsNode status, resource status, fence events, constraint violationsPacemaker API

Setting up AMS

To configure AMS:

  1. Create an AMS resource in the Azure portal
  2. Add providers for each SAP component you want to monitor
  3. Provide connection details (HANA SQL credentials, SAP RFC user, etc.)
  4. AMS begins collecting data into a Log Analytics workspace
  5. Use built-in workbooks for dashboards or create custom ones
πŸ’‘ Exam tip: Know the provider types

The exam tests whether you know which provider monitors which component. Remember: HANA provider for database metrics, NetWeaver provider for application server health, OS provider for infrastructure metrics, SQL Server provider for non-HANA SQL databases, IBM Db2 provider for Db2-based SAP systems, HA cluster provider for Pacemaker status. AMS supports six provider types in total. If the question asks about monitoring enqueue lock contention, the answer is the NetWeaver provider. If it asks about HSR replication lag, the answer is the HANA provider.

Alerts and dashboards

AMS integrates with Azure Monitor for alerting:

  • Metric alerts β€” trigger when a metric exceeds a threshold (e.g., HANA memory usage above 90 percent)
  • Log alerts β€” trigger based on log query results (e.g., SAP work process dumps in the last hour)
  • Action groups β€” define who gets notified and how (email, SMS, Teams, Azure Function, Logic App)

Built-in workbooks provide pre-configured dashboards:

  • HANA overview (memory, CPU, disk, replication)
  • NetWeaver overview (work processes, queues, response times)
  • OS performance (all VMs at a glance)
  • Cluster health (node status, recent fence events)

πŸ”§ Aisha configures an alert. β€œI set up an alert for HANA memory usage above 85 percent. If it fires, Carlos and I both get a Teams notification. We can investigate before it hits 100 percent and causes an out-of-memory kill.”

Azure Advisor for SAP

Azure Advisor provides proactive recommendations for SAP workloads:

  • Reliability β€” missing VM extensions, non-HA deployments
  • Performance β€” undersized VMs, storage bottlenecks
  • Cost β€” oversized VMs, unused disks, reservation opportunities
  • Operational excellence β€” missing tags, non-compliant configurations

Combined with ACSS quality checks, Advisor gives a comprehensive view of SAP infrastructure health.

Network Watcher

Azure Network Watcher helps troubleshoot SAP network issues:

  • Connection monitor β€” tracks connectivity between SAP tiers (app to DB latency)
  • NSG flow logs β€” see which traffic is allowed or denied
  • Packet capture β€” capture network traffic for deep analysis
  • IP flow verify β€” test whether specific traffic is allowed by NSG rules
  • Next hop β€” verify routing is correct for SAP traffic
Troubleshooting checklist

When SAP performance degrades, check in this order: (1) AMS dashboards for SAP-level issues (work processes, memory, replication), (2) OS provider for infrastructure bottlenecks (CPU, disk, network), (3) Azure Advisor for configuration issues, (4) Network Watcher for connectivity problems. This top-down approach finds the root cause faster than random troubleshooting.

Question

What is Azure Monitor for SAP solutions (AMS) and how does it work?

Click or press Enter to reveal answer

Answer

AMS is a purpose-built monitoring service for SAP on Azure. It uses providers to collect telemetry from HANA, NetWeaver, OS, SQL Server, IBM Db2, and HA clusters (six provider types). Data flows into Azure Monitor Logs where it powers dashboards (Azure Workbooks) and alerts. Each provider connects to a specific data source using SAP-native protocols.

Click to flip back

Question

Which AMS provider monitors SAP HANA database health?

Click or press Enter to reveal answer

Answer

The SAP HANA provider. It connects via the HANA SQL port (3xx15) and collects memory usage, CPU, disk I/O, replication status, backup status, and HANA alerts. Use this provider to monitor HSR replication lag and HANA memory pressure.

Click to flip back

Question

Which AMS provider monitors SAP application server work processes?

Click or press Enter to reveal answer

Answer

The SAP NetWeaver provider. It connects via RFC or HTTP to the SAP system and collects work process utilization, queue lengths, batch job status, and response times. Use this to detect application-layer issues like enqueue lock contention or dialog process exhaustion.

Click to flip back

Question

Which AMS provider monitors Pacemaker cluster health?

Click or press Enter to reveal answer

Answer

The HA (Pacemaker) cluster provider. It collects node status, resource status, fence events, and constraint violations. Use this to detect cluster issues like a failed STONITH operation or a node in standby mode.

Click to flip back

Question

How does Azure Advisor help with SAP workloads?

Click or press Enter to reveal answer

Answer

Azure Advisor provides proactive recommendations across reliability (missing HA components), performance (undersized VMs, storage bottlenecks), cost (oversized resources, reservation opportunities), and operational excellence (missing configurations). Combined with ACSS quality checks, it gives comprehensive SAP infrastructure health insights.

Click to flip back

Knowledge check

Knowledge Check

Aisha notices slow response times in SAP transaction SE16. Which AMS provider should she check first?

Knowledge Check

Carlos asks Aisha to set up an alert when HANA memory usage exceeds 90 percent. What Azure Monitor feature should she use?

Knowledge Check

Which AMS provider should Aisha configure to monitor HSR replication lag between the primary and secondary HANA nodes?

Summary

You now know how to monitor SAP on Azure: AMS with providers for HANA, NetWeaver, OS, SQL Server, IBM Db2, and HA clusters (six providers total); alerts and dashboards with Azure Monitor; proactive recommendations with Azure Advisor; and network troubleshooting with Network Watcher. Monitoring is the foundation of all Day-2 operations.

Next, we dive into backup β€” protecting SAP data with Azure Backup for HANA and VM-level backup strategies.

🎬 Video coming soon

← Previous

Disaster Recovery Implementation

Next β†’

Backup for SAP HANA

Guided

I learn, I simplify, I share.

A Guide to Cloud YouTube Feedback

© 2026 Sutheesh. All rights reserved.

Guided is an independent study resource and is not affiliated with, endorsed by, or officially connected to Microsoft. Microsoft, Azure, and related trademarks are property of Microsoft Corporation. Always verify information against Microsoft Learn.