An Azure managed PostgreSQL database service for app development and deployment.
There is a very close precedent for this failure pattern. A recent thread titled "PostgreSQL Flexible Server metrics stopped collecting after January 1, 2026 (https://learn.microsoft.com/en-us/answers/questions/5706476/postgresql-flexible-server-metrics-stopped-collect )" described almost the same symptoms: telemetry stopped reaching Azure Monitor, the server itself stayed healthy, and diagnostic settings had already been recreated multiple times with no effect. The root cause in that case was a backend fluentd container responsible for forwarding telemetry off the server becoming unhealthy. Nothing was wrong on the customer side, and nothing the customer could do would fix it. A Microsoft engineer restarted the container from the backend, and forwarding was expected to resume within about an hour.
Your symptoms match that pattern closely. The engine is healthy, hourly log files are still being produced locally, diagnostic settings have not changed, restart and recreation did not help, and another server in a different region is unaffected. That is consistent with a forwarding sidecar problem on Microsoft’s side rather than anything wrong with the engine, the diagnostic setting, or the workspace.
Here are direct answers to your questions:
- I cannot confirm a specific West Europe incident tied to your August 24 date or the August 2026 maintenance rollout. I do not have visibility into that. The precedent above shows that this exact failure mode has occurred before for Flexible Server, so it is reasonable to assume you are seeing the same class of issue even if it is a separate occurrence.
- Based on that precedent, there does not appear to be a customer‑side fix beyond what you have already tried. The broken component sits on Microsoft’s side of the pipeline, and the resolution required backend action.
- Your 404 is almost certainly caused by the endpoint you used. The documented operation to list maintenance or update history for a specific resource is:
GET https://management.azure.com/{resourceId}/providers/Microsoft.Maintenance/updates?api-version=2023-09-01-preview
There is no “maintenances” operation in the published Microsoft.Maintenance API, and 2025‑08‑01 is not a published api‑version for this provider. That combination would return 404 even if maintenance history exists. It is worth trying the corrected call. One note: this endpoint reports host, OS, and VM‑level maintenance items. It does not report internal telemetry‑forwarding components like the fluentd sidecar from the precedent case, so it may return an empty list even when forwarding is broken. It is still the correct thing to rule out.
Since your Basic support plan does not give you access to a technical support ticket, the precedent case is useful here in a practical way too. It was resolved through a Microsoft engineer responding directly on Microsoft Q&A, not through a paid support case. I recommend posting your subscription ID and server names, along with the exact UTC timestamps you have already isolated, and linking to the January thread. That information will allow investigation to move quickly and pointing to a known failure mode may help a moderator route this to the right team faster.
Help make this community better for everyone: if this answer resolved your issue, please accept it or leave an upvote. If not, share more details in a comment so we can continue the discussion and find the right solution.