Share via

Http Azure Function misses "Server Requests" metric occasionally

Zheng Miao 0 Reputation points Microsoft Employee
2026-05-21T04:24:11.36+00:00

User's image

Azure Functions
Azure Functions

An Azure service that provides an event-driven serverless compute platform.

0 comments No comments

1 answer

Sort by: Most helpful
  1. AI answer

    2026-05-21T04:24:23.5933333+00:00

    Azure Functions emit platform metrics such as Requests, Response Time, Data In/Out, and HTTP status–based counters (Http2xx, Http4xx, Http5xx, etc.) through Azure Monitor. These metrics are collected at fixed time grains (typically 1 minute) and are aggregated per instance.

    Because metrics are sampled and aggregated, short gaps or apparent “missing” points in a chart of Server requests (or similar metrics) can occur when:

    • No executions or HTTP requests are processed on a given instance during a specific time grain.
    • The function host is unloaded or scaled down, so there is no active process emitting metrics for that interval.

    In such cases, the chart can show intermittent drops to zero or missing points even though the function is generally healthy. This behavior is expected for auto‑scaled, event‑driven workloads.

    To understand utilization and health more completely, combine the Server requests metric with other Azure Functions metrics such as Function Execution Count, Data In/Out, and Response Time, and correlate with Application Insights telemetry.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.