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
3
votes
0 answers

Is it possible to grant access only to a specific topic on Azure Event Grid Domain (by providing role-based access or somehow else)

I am trying to manage access to EventGrid Domain, so only specific users can publish to a specified EventGrid Domain Topic. Is it possible to do this somehow? I have tried to create a custom role and specify an assignable scope to the domain topic,…
Peasoon
  • 71
  • 5
3
votes
2 answers

Azure event grid api version undefined

I created an azure event Topic and added an azure function (event trigger type) as a subscription. when trying to send a request through postman I get undefined API version. Error: { "error": { "code": "ApiVersionUnspecified", "message": "An API…
user14996936
3
votes
0 answers

Use Json.Net for input binding of Azure EventGridEvent

I currently use Json.Net throughout my project and it works like a charm. Unfortunately, the input binding for Azure Functions use System.Text.Json to deserialize the EventGrid event json and bind it toEventGridEvent object from the…
vivek86
  • 707
  • 9
  • 18
3
votes
2 answers

How to view actual Azure Event Grid message?

I have an Azure Function triggered by EventGridEvents. function.json set accordingly: { "scriptFile": "__init__.py", "bindings": [{ "name": "event", "type": "eventGridTrigger", "direction": "in" …
ericOnline
  • 1,586
  • 1
  • 19
  • 54
3
votes
1 answer

Authorize Azure Function Event Grid Trigger through Azure AD B2C

I have an Azure Event Grid Trigger Inside my Function's App. The Function is subscribed to Event Grid Topic through an Event Subscription. The Function works perfectly and is triggered when I have no Authentication Configured inside the…
3
votes
1 answer

How to properly return status/error codes from an Azure Function that was triggered by an Event Grid event

I'm trying to wrap my head around how to manage controlled and uncontrolled results/failures in Azure Functions triggered by Event Grid events. I'm sure I'm missing some fundamental aspect but I can't really make sense of the available Microsoft…
Linus Proxy
  • 525
  • 1
  • 5
  • 21
3
votes
2 answers

Create Event Grid Subscription with Event Hub Topic type in ARM

I would like to deploy the same architecture pattern like this one using ARM templates. I have achieved almost the whole model, but I have a challenge connecting Event Hub with Event Grid. In the 4th point you can see how to create a subscription in…
3
votes
1 answer

Cannot see Azure Function name when creating Azure Event Grid Subscription

So using VS 2019, I created a Blob Trigger function (v2) and deployed it to Azure, against a blob storage (v2). If I upload a file the function is executed and the file in the blob storage gets processed successfully. So all good here. I am now…
3
votes
1 answer

How to Write data as Json Response to HttpResponse in .NET Core

My Code looks like : public override void OnActionExecuting(ActionExecutingContext actionContext) { object[] eventGridMessages = (object[])actionContext.ActionArguments.FirstOrDefault().Value; if (eventGridMessages == null ||…
SAREKA AVINASH
  • 437
  • 8
  • 15
3
votes
2 answers

Receive Event Grid from a Service Bus Handler on Azure Services

I am sending the event on the event grid like. i can see they arriving at the azure dashboard NomeEmailChange yay = new NomeEmailChange { Nome = "cesco", Email = "cesco" }; …
CESCO
  • 7,305
  • 8
  • 51
  • 83
3
votes
0 answers

Performance comparison for Service Bus message handlers

I'm looking for advice for best approaches for handling Service Bus messages, at scale, comparing performance to cost. Currently, we're using Service Fabric to handle the Service Bus messages, which works very well, but requires an always-on cluster…
3
votes
1 answer

Is azure compute slow in pushing events to Azure EventGrid? Is there a way to get events quicker?

I have an azure function app with runtime v2 and language C# using EventGridTrigger. The function is subscribed to all events originating from an azure subscription. My main goal is to process events about a virtual machine's start and stop actions,…
Turbo
  • 2,179
  • 18
  • 38
3
votes
2 answers

EventGrid vs EventHub

I am working on a service fabric application and want to publish few events from this application and subscribe or process those publish events in another application. I have tried EventGrid concept and observed that there is a delay while…
3
votes
2 answers

How do we post messages to event grid topics?

I have created event grid topic in azure using event schema = "Event Grid Schema". The next steps for me is trying to send messages to that event grid topic so the subscribers can do something when the message has been successfully received in event…
Arif Liminto
  • 31
  • 1
  • 2
3
votes
2 answers

Send Azure Blob Storage event notifications to Event Hubs on another account

In Azure, I'm trying to send event notifications from a Storage Account in one Active Directory to an Event Hub in another Active Directory. I'm having trouble figuring out how to share/link the resource. In AWS, I was able to accomplish this by…
1 2
3
38 39