azure-eventgrid

Azure Functions Runtime v1 EventGrid Subscription create fails

六月ゝ 毕业季﹏ 提交于 2019-12-13 02:02:35
问题 What I'm doing wrong or how to make it work? I'm using Azure Runtime v1 (need to use .NET Framework, not core). Function code in Visual Studio as follows: // This is the default URL for triggering event grid function in the local environment. // http://localhost:7071/admin/extensions/EventGridExtensionConfig?functionName={functionname} using Microsoft.Azure.WebJobs; using Microsoft.Azure.WebJobs.Host; using Microsoft.Azure.WebJobs.Extensions.EventGrid; namespace FunctionApp1 { public static

Azure Event Grid failed retries

自闭症网瘾萝莉.ら 提交于 2019-12-11 06:03:59
问题 Documentation on retries states that after pre-defined retries period of 2 hours (24 hours when service GAs) retries are seized. What happens to the events that were not delivered successfully? Is there a way to store those using something like Storage blob? 回答1: I'm a Microsoft Program Manager working on the Azure Event Grid team. The documentation is correct, while in preview the service will drop messages that are not delivered in 2 hours. When we make this service generally available (no

Event grid throughput limit

放肆的年华 提交于 2019-12-08 19:17:31
I'm new to azure event grid concepts and currently doing research on event grid to implement in our project. Can any one tell about the throughput of event grid, how many events I can push per second and what is the egress of event grid per second, means count of output events per second from event grid. I asked Microsoft about this topic and this was their response: Nape: Publish rate limit is about 5000 events per second. This is the events you can publish to Event Grid. You can achieve rates higher than this if the service instance is not as loaded. Keep in mind EG is a multitenant system.

Event grid throughput limit

社会主义新天地 提交于 2019-12-08 07:39:02
问题 I'm new to azure event grid concepts and currently doing research on event grid to implement in our project. Can any one tell about the throughput of event grid, how many events I can push per second and what is the egress of event grid per second, means count of output events per second from event grid. 回答1: I asked Microsoft about this topic and this was their response: Nape: Publish rate limit is about 5000 events per second. This is the events you can publish to Event Grid. You can

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

家住魔仙堡 提交于 2019-12-04 02:03:47
问题 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 webhook to Event Grid. This process has led me down a path of needing to trigger a SubscriptionValidationEvent which in turn requires my webhook to provide a "code" on the URL which I'm assuming is a function key. Also before I get down voted, I'm

Handle blob events from storage accounts in multiple Azure Subscriptions in different AD Tenants?

左心房为你撑大大i 提交于 2019-12-01 13:32:36
Is it possible to get notified about blobCreated events happening in multiple storage accounts who live in multiple Azure Subscriptions? I would like to handle blob created events happening in arbitrary storage accounts in a central Azure Function which lives in my subscription but i would like to give customers the possibility to store the data in their own subscription. I was thinking about using Event Grid Webhook endpoints to route the events to my central Azure Function. Would this be a solid approach to enable multi-subscription scenarios? Edit: To be more precise, i need this to work

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

会有一股神秘感。 提交于 2019-12-01 12:54:37
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 webhook to Event Grid. This process has led me down a path of needing to trigger a SubscriptionValidationEvent which in turn requires my webhook to provide a "code" on the URL which I'm assuming is a function key. Also before I get down voted, I'm very well aware that there are multiple variants of this question asked and answered here already. I've

Is there a option to get the event grid trigger url + key at output value from the deployment of a Azure Function?

纵然是瞬间 提交于 2019-12-01 11:21:09
Is there a option to get the event grid trigger url + key at output value from the deployment of a Azure Function? The scenario we would like to do is as followed: - We deploy a Function Service in a VSTS release via ARM. - With the Function service deployed we deploy the event grid subscription. Thanks, Shraddha Agrawal Yes, there is a way using the REST API to obtain a function access code. The following are the steps: Let assume a name of the function is EventGridTrigger2 and the run.csx: #r "Newtonsoft.Json" using Newtonsoft.Json; using Newtonsoft.Json.Linq; public static void Run(JObject

Handle blob events from storage accounts in multiple Azure Subscriptions in different AD Tenants?

笑着哭i 提交于 2019-12-01 10:56:58
问题 Is it possible to get notified about blobCreated events happening in multiple storage accounts who live in multiple Azure Subscriptions? I would like to handle blob created events happening in arbitrary storage accounts in a central Azure Function which lives in my subscription but i would like to give customers the possibility to store the data in their own subscription. I was thinking about using Event Grid Webhook endpoints to route the events to my central Azure Function. Would this be a

Is there a option to get the event grid trigger url + key at output value from the deployment of a Azure Function?

天大地大妈咪最大 提交于 2019-12-01 07:34:14
问题 Is there a option to get the event grid trigger url + key at output value from the deployment of a Azure Function? The scenario we would like to do is as followed: - We deploy a Function Service in a VSTS release via ARM. - With the Function service deployed we deploy the event grid subscription. Thanks, Shraddha Agrawal 回答1: Yes, there is a way using the REST API to obtain a function access code. The following are the steps: Let assume a name of the function is EventGridTrigger2 and the run