Forum Discussion

PraveenVeli's avatar
PraveenVeli
Advocate I
1 year ago
Solved

Fabric Service Status

Hi, Can we programtically access the Fabric service status page? https://support.fabric.microsoft.com/support/.   We would like to programmatically (maybe via REST API calls or similar) access the...
  • burakkaragoz's avatar
    1 year ago

    Hi PraveenVeli ,

     

    andrewsommer is correct that there's no direct API for the Fabric status page, but there are a couple of workarounds you can use for monitoring.

    Alternative approaches:

    Microsoft 365 Service Communications API: Fabric incidents often show up in the broader Microsoft 365 service health data:

    GET https://graph.microsoft.com/v1.0/admin/serviceAnnouncement/healthOverviews

    You'll need appropriate admin permissions, but this covers many Fabric service issues.

    Web scraping the status page: Since there's no official API, you could scrape the status page periodically:

    • Use PowerShell with Invoke-WebRequest
    • Parse the HTML for status indicators
    • Set up alerts based on changes

    Power Automate monitoring:

    • Create a flow that checks the status page URL
    • Look for specific text changes that indicate issues
    • Send notifications when status changes

    RSS/Atom feeds: Check if Microsoft has any service status feeds you can subscribe to - sometimes they're not well-documented but exist.

    Azure Service Health: Some Fabric issues also appear in Azure Service Health if you're using Azure resources alongside Fabric.

    Practical tip: Combine multiple approaches since Fabric service issues sometimes show up in Microsoft 365 health before the dedicated Fabric status page gets updated.

    The web scraping approach is probably your most reliable option for real-time monitoring of that specific status page.


    If my response resolved your query, kindly mark it as the Accepted Solution to assist others. Additionally, I would be grateful for a 'Kudos' if you found my response helpful.
    This response was assisted by AI for translation and formatting purposes.