akhil
akhil

Reputation: 1883

What is the difference between Event grid trigger and http trigger?

I am having difficulty in understanding the difference in both triggers

What is the difference between EventGridTrigger and HTTP trigger?

I just saw there is an option to filter events in EventGridTrigger

https://learn.microsoft.com/en-us/azure/event-grid/event-filtering

How we can filter events in the EventGridTrigger? Where should we add those filter options?

Upvotes: 1

Views: 910

Answers (1)

suziki
suziki

Reputation: 14088

Event grid trigger is event-driven, it will be triggered when something you set happens. But Http trigger will be triggered when you send a request to hit it's endpoint.

For the filter of event grid trigger, you can go to this place:

enter image description here

(Click all service on Azure portal, click Event Grid Subscription, then find the Event Grid that you created, click in, you will find the Filters tab.)

Upvotes: 2

Related Questions