You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, so I think that this is more a design question / issue.
I'm trying to think about the correct implementation method on Azure, let's say I have the following policy in place (From the examples):
- name: azure-auto-tag-creator
resource: azure.armresource
mode:
type: azure-event-grid
events: ['VmWrite', 'StorageWrite']
description: |
Tag all new VMs and StorageAccounts with the 'Creator Email' tag.
Note: 'resource-type' filter is not required because policy is not triggered by other resources.
actions:
- type: auto-tag-user
tag: CreatorEmail
So I noticed in the activity log of the storage account, that the operation took almost 10 minutes:
Why is this taking so long? What causes the delay?
Is it the API operation completion?
EventGrid subscription?
Function app warmup?
Function app polling the queue?
Function app operation?
Activity log updates?
Would love to get clarifications as I hoped for a near realtime operation in EvetGrid execution mode
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi, so I think that this is more a design question / issue.
I'm trying to think about the correct implementation method on Azure, let's say I have the following policy in place (From the examples):
So I noticed in the activity log of the storage account, that the operation took almost 10 minutes:
![Screen Shot 2022-07-04 at 12 59 00](https://user-images.githubusercontent.com/827024/177138410-b9817c7a-ecd2-420e-bfee-140a52dcce8a.png)
Why is this taking so long? What causes the delay?
Would love to get clarifications as I hoped for a near realtime operation in EvetGrid execution mode
Beta Was this translation helpful? Give feedback.
All reactions