├── .github └── ISSUE_TEMPLATE │ └── event-request.md └── README.md /.github/ISSUE_TEMPLATE/event-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Event request 3 | about: Request a new Azure event 4 | title: New event request 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | ## Usecase scenario 11 | 12 | Provide a short description and apply service label 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Azure Events Wishlist 2 | 3 | Azure services emit a variety of events to Azure Event Grid, enabling you to extend and react to what's going on in your applications and infrastructure, although not all the events are there yet. 4 | 5 | **Azure Event Wishlist** is a dashboard that gathers all events that would be great to have in Azure! 6 | 7 | ## How can you help? 8 | 9 | - **Propose new event suggestions** by opening a [new issue](https://github.com/SeanFeldman/azure-events-wishlist/issues/new?assignees=&labels=&template=event-request.md&title=New+event+request) 10 | - **Vote for the events** you'd like to see supported by giving a :+1: on the issues 11 | - **Discuss events** to provide valuable information to the Microsoft service teams 12 | 13 | ## Examples 14 | 15 | Here are some examples of how powerful Azure events can be: 16 | 17 | - [Monitoring Key Vault with Azure Event Grid](https://docs.microsoft.com/en-us/azure/key-vault/event-grid-overview) and automatically renew certificates that are about to expire. 18 | - [Automate resizing uploaded images using Event Grid](https://docs.microsoft.com/en-ca/azure/event-grid/resize-images-on-storage-blob-upload-event?tabs=dotnet) 19 | --------------------------------------------------------------------------------