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

Event Grid with communication with 2 microservices

We are trying to achieve event-based communication between 2 microservices Currently we have created 2 microservices with .Net Core. Email Service http://xxxx.demoemailserviceapi.azurewebsites.net/swagger Product Service…
0
votes
2 answers

how to push blob storage events to event grid topic

I'm getting the following error when I attempt to create an event subscription for blobCreated: When there is a new blob in a container, I'd like that event to be forwarded to a topic. I went to the storage account, and attempted to create an event…
Alex Gordon
  • 57,446
  • 287
  • 670
  • 1,062
0
votes
1 answer

Passing metadata with Azure Event Grid subscription?

I've connected my blob storage account to Event Grid, via an Event Hub subscription, and can see the events from uploaded blobs. But I was hoping to be able to pass some metadata with each received event, so I can relate the event back to a foreign…
Kirk Marple
  • 333
  • 1
  • 9
0
votes
1 answer

How to get a list of existing topics in an Azure EventGrid Domain in C#

What is the best way to retrieve a list of topic names that are encapsulated by an Azure EventGrid Domain in C#? It is easy enough to do this with Azure-CLI, but struggling to find examples of this in C#. I've looked at EventGridManagementClient…
Bobby Koteski
  • 294
  • 4
  • 11
0
votes
1 answer

Is the Azure EventGridClient thread safe?

A lot of the Azure client libraries seem to be thread safe and I'm nearly sure I read somewhere that the EventGridClient is too, but I cannot for the life of me find where that was. The MSDN documentation makes no mention either way but I know that…
Steve Pettifer
  • 1,975
  • 1
  • 19
  • 34
0
votes
1 answer

Event Grid subscription webhook that exists in vpn

We would like to use Event Grid for pub/sub system with webhook where some of the subscriber's endpoints live in Azure's private virtual network. These web endpoints are not exposed to the internet and we have IP restrictions set to our private…
Erica
  • 1
0
votes
1 answer

ARM deployment failed for event grid subscription on endpoint webhook url

Using terraform and Azure ARm template , I am trying to create an azure event grid subscription on a function. This the ARM using for the event grid subscription: { "$schema":…
french_dev
  • 2,117
  • 10
  • 44
  • 85
0
votes
1 answer

Azure Event Grid consume events from Hybrid Connection with Node

Can someone point me in the right direction? I'm working with a client who is looking to have 3rd parties receive event data from them (blob created, etc). The C# example works…
ovation22
  • 711
  • 2
  • 7
  • 19
0
votes
1 answer

how to do event hub event routing at scale based on custom logic

my application have multiple independent components which takes request/data over eventhub, do some processing and publish response data, which will be processed by another component (based on the event type). I need to build a router, which will…
user9297554
  • 347
  • 4
  • 17
0
votes
2 answers

Azure Function with EventGridTrigger prevents FunctionsStartup class's Configure method from running

I'm trying to have a function that has its dependencies injected as outlined in documentation, Use dependency injection in .NET Azure Functions. My Startup class is defined as: using System.Runtime.CompilerServices; using…
0
votes
1 answer

Azure IoT event subscription with ARM template

I am trying to deploy Azure IoT device connected event subscription to Azure storage queue using ARM template and PowerShell. I have used the following template for deploying this. Also, I have read a lot of articles on Microsoft. But could not find…
0
votes
1 answer

event grid validation with AKS

Azure eventgrid subscription verification with AKS/ingress TLS certificates generated by certificate manager Trying to add a subscription to azure eventgrid custom topic with webhook. Webhook is springboot application deployed on AKS. Exposed using…
0
votes
1 answer

How do you create an Event Grid Subscription for successful SQL DacPac imports?

I am not able to create an Event Grid Subscription for the action "Create new database from DacPac". I have tried creating an Event Grid Subscription for the Resource Group that contains my SQL Server. I have enabled all events to send for the…
Colin
  • 624
  • 8
  • 27
0
votes
2 answers

How to trigger C++ code with event grid in Azure?

I am trying to upload a blob in the Azure storage and it uploads successfully. Now the next step is to process the blob with C++ code. Since Azure function does not support C++ how can I process the blob?
Yatin Gaikwad
  • 1,140
  • 1
  • 13
  • 23
0
votes
1 answer

Azure EventGrid on Azure Subscription - determine which tag has changed

I am trying to setup Azure EventGrid for an Azure Subscription to get notified when a certain tag for a ressource has changed. This is how I created the EventGrid Subscription: $includedEventTypes = ,…
Martin Brandl
  • 56,134
  • 13
  • 133
  • 172