Questions tagged [azure-eventgrid]

Reactive, event-driven apps with a fully managed event routing service on Microsoft Azure

Azure Event Grid is a fully-managed intelligent event routing service that allows for uniform event consumption using a publish-subscribe model. Use Azure Event Grid to react to relevant events across both Azure and non-Azure services in near-real time fashion.

586 questions
2
votes
2 answers

"CustomInputSchema" cannot be used in combination with the topic's input schema of EventGridSchema

Within my storage account, I'm creating an event subscription to blobcreated/blobdeleted: I've select Custom Input Schema: However, I'm getting this error: "CustomInputSchema" cannot be used in combination with the topic's input schema of…
Alex Gordon
  • 57,446
  • 287
  • 670
  • 1,062
2
votes
1 answer

Can Azure trigger an on-premises script to run on a schedule?

We have a lot of jobs that have to run on our local computers, but we want to be able to run and manage those jobs from the cloud. These are not computer-admin type jobs. They are more about business-related tasks. We have thought seriously about…
2
votes
1 answer

Handle blob events from storage accounts in multiple Azure Subscriptions in different AD Tenants?

Is it possible to get notified about blobCreated events happening in multiple storage accounts who live in multiple Azure Subscriptions? I would like to handle blob created events happening in arbitrary storage accounts in a central Azure Function…
Markus S.
  • 2,602
  • 13
  • 44
2
votes
2 answers

How do I create Logic App with Event Grid subscription from ARM-template

I have made a Logic app that listens to an Event Grid Topic and it works fine, but if I delete it and try to create from the template it doesn't work. It never runs. The problem is that while it does create the API connection to the event grid, it…
SamiR
  • 77
  • 10
2
votes
2 answers

Does Azure EventGrid have defined outbound IP address

My company supports a product that leverages Azure EventGrid to send notifications through a webhook. One of our customers (sensibly) is wanting to limit the range of IP addresses that they can receive notifications through. Does EventGrid have a…
Sam_TSL
  • 21
  • 4
2
votes
2 answers

Event Grid doesn't trigger using Logic Apps

I have to create a Logic App using the Event Grid, so whenever a new file is created/uploaded in our General Purpose V2 Storage Account it should post a message in slack. This is how it currently looks like. However, once one file is…
Spectrum
  • 41
  • 6
2
votes
1 answer

Diagnosing failures in azure event grid?

I did not find much in the way of troubleshooting events lost scenario in the azure event grid. Hence I am asking question in relation to following scenario: Our code publishes the events to the domain. The events are delivered to the configured…
Raghu
  • 2,859
  • 4
  • 33
  • 65
2
votes
1 answer

Can I create monitoring alerts for azure event grid domain topics?

I would like to setup following alerts for domain topics when Delivery Failed Events (at domain) exceed x in y amount of time Delivery Failed Events (at domain topic 1) exceed x in y amount of time Delivery Failed Events (at domain topic 2) exceed…
Raghu
  • 2,859
  • 4
  • 33
  • 65
2
votes
1 answer

How to Probe Azure Event Grid

I am using Azure Event Grid to send custom events. All works fine, but now I want to create a health check service which would probe all of my services to see if they are working. For this I am using AspNetCore.Diagnostics.HealthChecks. But it…
Ramūnas
  • 1,494
  • 18
  • 37
2
votes
2 answers

Can I attach/configure client certificate with azure event grid push to https endpoint?

The azure event grid allows an https endpoint (my web hook event handler) to be registered with a subscriber for a topic. So when an event is received by the topic that matches the subscription filter criteria, the event is pushed by the event grid…
Raghu
  • 2,859
  • 4
  • 33
  • 65
2
votes
3 answers

Azure Logic Apps - Get Blob content from Blob Event

My logic app receives a blob event when a blob is created via http: I use an Event Grid Subscription, which triggers the Logic App via webhook, when a Blob Created event occurs. A typical blob event received by the http trigger looks like: [ { …
Robert Kokuti
  • 239
  • 3
  • 10
2
votes
1 answer

AAD authentication for Event Grid Subscribers

I have an Event Grid which is used for publishing events. I have a Web-Hook based subscriber which will be listening to the event. The webhook is hosted on Azure App Service and is protected by an AAD App. In this scenario will Event Grid be able to…
2
votes
0 answers

How to control the concurrency of Azure Event Grid trigger

I found the host.json which tells how to control behavior of my Function app. But it doesn't show entries about event grid trigger. I was wondering as publisher(in my case, events related to blob storage) sends http requests to my function, does it…
2
votes
1 answer

Email notification when Event grid fails in event delivery against its subscriber

I am using Azure function to subscribe events from event grid topic. Due to some failure If my Azure function stopped to work then Azure event delivery fails. How to get emails notification when this delivery fails.
Nitin Jain
  • 129
  • 1
  • 14
2
votes
1 answer

Can Azure Event Grid give me FIFO behavior like this?

Suppose I have events that propagate information like C / A -- B \ D and suppose I need to guarantee a stagger like C0 -------- / / A0 -- B0 -------- …