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

Avoid Converting DateTimeOffset to UTC time in Azure EventGrid

I've been testing out Azure's EventGrid and one of the things I'm trying to do is send an event where part of the PayLoad is a DateTimeOffset field. I'm publishing the event using the standard EventGridClient: using (var client = new…
Jeffrey Lott
  • 7,171
  • 6
  • 28
  • 28
3
votes
3 answers

Azure Function triggered by EventGrid on Blob Storage

I have followed the Microsoft tutorial to process event based on blob being created in Azure storage. The event is firing but the event code to process the image is bypassed as the input stream parameter is not being populated by the EventGrid…
Cyborg
  • 1,244
  • 12
  • 12
3
votes
3 answers

Increase EventGrid's event size, to prevent 413 Payload Too Large

Some messages which are posted to an Azure EventGrid instance result in a 413 Payload Too Large error. The docs are quite clear on this: When posting events to an event grid topic, the array can have a total size of up to 1 MB. Each event in the…
Juliën
  • 9,047
  • 7
  • 49
  • 80
3
votes
0 answers

Azure Event Grid Blob Storage - prevent double Blob Created events?

I noticed a bit strange behavior of Blob Storage events during customer testing on Friday, and now I'm wondering if there are known situations which cause double events (blob created) to fire. So basically an external application writes blobs to a…
3
votes
1 answer

The attempt to validate the provided endpoint failed while creating EvenGridSubscription for Azure Function

I'm trying to create EventGridSubscription for Azure Function that uses EventGridTrigger. When running New-AzureRmEventGridSubscription cmdlet i see the following error: Url validation: The attempt to validate the provided endpoint…
3
votes
1 answer

Event Grid "Microsoft.EventHub.CaptureFileCreated" event not published to Azure Function subscription

I am trying to develop an Azure Function to act upon a blob created by the Capture feature of an Event Hub. However, whereas capture blobs are correctly stored on the container, it seems that no Microsoft.EventHub.CaptureFileCreated event is…
3
votes
2 answers

Possible to get an Azure Function systemkey in an ARM template?

I know that I can get the host key and trigger_url of an Azure Function in an ARM template by using the listKeys/listSecrets method. But I need the systemkey, I'm deploying an Event Grid Subscription and it needs the Azure Function endpoint url…
3
votes
2 answers

Azure Functions EventGrid trigger

I have implemented an EventGrid Trigger to respond to Blob Storage Events the logic of which is simplified below : public static async void Run( JObject eventGridEvent, TraceWriter log, ExecutionContext context) { string eventContent…
3
votes
1 answer

How to create a Azure Function, Function Key when your functions are set to Readonly

Summary: I'm authoring a function directly in Visual Studio which by design results in readonly function management in the portal. My question is how does one easily create a function key for said webhook? Context: I'm trying to hook up a generic…
3
votes
1 answer

How to use EventGridClient in Microsoft.Azure.EventGrid, Version=1.1.0.0

I installed Nuget package Microsoft.Azure.EventGrid 1.1.0-preview and found that it contains class EventGridClient. I assumed that I can use it to publish EventGridEvent. The ctor looks like this: public EventGridClient(ServiceClientCredentials…
Yonghe
  • 61
  • 5
3
votes
1 answer

Allow only azure services to call azure logic app?

Is there any way that I can configure an azure Logic App to only allow Azure IP addresses? My Logic App is called by a few different services, Event Grid and Runbooks.
2
votes
1 answer

Azure Function with Event Grid run local without ngrok

I have an app that uses AzureFunction and EventGrid with Nodejs. I want to debug some Event Trigger Functions in localhost, but I don't want to use Ngrok, for particular reasons. There is another way to achieve EventGrid debugging without Ngrok?
2
votes
2 answers

How to ingest data from ADLS into Azure Data Explorer by subscribing to Event Grid

I am trying to ingest data from ADLS gen2 to Azure data explorer through Event Grid. I could find a few of MSFT docs explaining about how to ingest blobs into ADX through event grid but not ADLS. the file path to the ADLS storage account is…
2
votes
0 answers

Why does Event Grid serialize my already serialized data?

I am trying to get into dotnet and Azure and so I build small solution that triggers a azure function by http with a count that then requests the given amount of cat facts from a public api, stores them in a cosmos db and, if the fact is not in my…
xtp
  • 119
  • 1
  • 11
2
votes
1 answer

Resilience between the storage and the Event Grid

Here is my flow for my imports: When a new file is detected on the blob storage and event is triggered into the Event Grid The Event grid retry until he is able to call the Azure Function The Azure Function inject the event into the Service Bus's…