TRIGGER ISSUE EVENTS

Lucas Valenzuela 1 Reputation point
2022-04-12T23:56:55.027+00:00

Hi all

Im trying to build a new trigger and having troubles. The archive its a xlsx

  1. Failed to Activate Event
    Failed to Activate Event_Disp (Trigger)
  2. Failed to get subscription status
    Failed to get subscription status on storage events for event trigger Event_Disp (Trigger)

I already checked the following informations

  1. Resource Provider - Microsoft.Storage (OK)
  2. Account Kind - Storage V2

Let me know if someone else had this problem and how to fix it.

Azure Event Grid
Azure Event Grid
An Azure event routing service designed for high availability, consistent performance, and dynamic scale.
308 questions
{count} votes

1 answer

Sort by: Most helpful
  1. MayankBargali-MSFT 67,691 Reputation points
    2022-04-22T03:41:18.517+00:00

    **For Community: **

    In case someone wants to configure storage events to web hook endpoint then you can refer to this document which will help you how you can create the event grid subscription with the configuration.

    When you configure the webhook endpoint then the first event that will be fired would be validation event. The azure infrastructure automatically handles this validation event only when you have configured the below services as the webhook endpoint.

    • Azure Logic Apps with Event Grid Connector
    • Azure Automation via webhook
    • Azure Functions with Event Grid Trigger

    In other webhook endpoint your endpoint code needs to participate in a validation handshake with Event Grid. In case if your endpoint doesn't respond with the validation response within 5 minutes then the event grid subscription creation will fail. For more details you can refer to this document.

    When you are only looking for specific events to be delivered to the configured webhook endpoint then you can configure the filters so only specific events matching your filter condition should be sent to your configured webhook endpoint.
    As you are only interested in the .xlsx file format events then you can leverage the subjectEndsWith property with the value .xlsx.

    In case someone observe any issue feel free to tag me in or create a new Q&A post to assist you further.

    0 comments No comments