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
1 answer

How to publish events in azure event grid to a topic in python?

Unable to import the eventgrid modules in my VS Code, I have added all the modules in requirement.txt and pip installed from my cmd. Also, below is the python function which I am looking and trying with: def publish_event(): # authenticate…
Rishika
  • 53
  • 1
  • 4
2
votes
2 answers

How to deal with lacking infinite retention in event driven architecture?

I am reading “Building Event Driven Microservices”. It states a requirement of the event broker is: Infinite retention: Event streams must be able to retain events for an infinite period of time. This property is foundational for maintaining state…
2
votes
0 answers

Azure Event Grid topic publish: A request was made to load the default HttpClient provider but one could not be found on the classpath

I am trying to send azure cloud events from maven project to azure event grid topic, I'm getting below error when trying to send the message Error while sending the message to Event grid topic : A request was made to load the default HttpClient…
2
votes
2 answers

BlobCreated event only when a blob is completely commited

I want to create an EventGrid via Arm deployment to ingest to ADX cluster once a all blobs in the container were added . (it's a bunch of blobs created each certain time interval) I want to make sure that the event is raised only when a blob is…
2
votes
1 answer

What endpoint should I provide when updating advanced filters with "az eventgrid system-topic event-subscription"?

I've tried to update advanced filter of a data factory blobevent trigger via az eventgrid system-topic event-subscription update. It asks for an endpoint (actually this is facultative in the documentation), but if i don't put it i get : Invalid…
OrganicMustard
  • 1,158
  • 1
  • 15
  • 36
2
votes
1 answer

How to view actual Event Grid message in Azure Portal?

I have an Event Grid subscribed to an Azure Storage Account. Its set to trigger whenever a blob of certain file extension is uploaded and also when a certain upload api is used. These filters are defined in Event Grid Advanced Filters. All works…
ericOnline
  • 1,586
  • 1
  • 19
  • 54
2
votes
2 answers

Azure function using built in trigger or event grid

In Azure function, you can create a function listening to a certain change of events such as message bus, blob storage, etc... if you are using azure function, and your objectives are to process something by listening to event such as message bus,…
jay
  • 1,055
  • 3
  • 15
  • 35
2
votes
1 answer

Authenticate event delivery to event handlers (Azure Event Grid)

I want to let third-party organizations subscribe to my event grid events in a secure way. I am trying to do this using Azure AD as mentioned in the articles…
2
votes
1 answer

Microsoft.Azure.WebJobs.Extensions.EventGrid: Object reference not set to an instance of an object

I have an azure function V3 (consumption plan, windows, .net 3.1), also using dependency injection. The function was working fine, published many time before. After the last publish, it was working fine and did too many requests. suddenly I'm…
2
votes
4 answers

ARM template for Event Grid API Connection with managed identity

When creating a new Event Grid connection from a Logic App, one can select from the following 3 authentication methods for the connection: Sign in Service principal Managed identity #1 Sign in requires a user to sign in / authenticate…
10p
  • 5,488
  • 22
  • 30
2
votes
1 answer

Enable/Disable Event Subscriptions

I am using Event Grid Subscriptions in Azure which gets triggered on Blob Created. However we have lot of files coming into this blob say 1000+. What would like to do is disable the Event Subscriptions if I find any errors with any of the files.
amit agarwal
  • 63
  • 2
  • 17
2
votes
1 answer

Azure: How to create an Event subscription programmatically

I have many storage accounts that are created programmatically, and I'd like to create an event subscription in each to listen to BlobCreated events with an existing Azure Function endpoint. Right now, I'm doing this manually by going to the portal,…
user246392
  • 2,661
  • 11
  • 54
  • 96
2
votes
2 answers

How to retry sending events from Azure Event Grid to Logic Apps

I have an event grid which publishes a lot of events, and a logic app which needs to consume some of them. These events aren't guaranteed to be in order, and events which require another event to be processed first, might end up in the logic app…
2
votes
1 answer

Azure Event Grid subscription to Console Application

I want to Subscribe for Azure Event Grid in C# Console Application, actually I'm implementing the example of EventBus from eShopContainer project, and I need to make a subscription for a topic and listen the message, process and print the message…
2
votes
1 answer

Programmatically get function app url from event grid triggered function

In an HTTP triggered azure function we can get the url as follows public static async Task Run([HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req, Microsoft.Azure.WebJobs.ExecutionContext…
dushyantp
  • 4,398
  • 7
  • 37
  • 59