All Azure services

Azure · Integration

Azure Event Grid

Pub/Sub for Azure + custom events.

Official docs

Overview

Event Grid routes events from Azure services or custom topics to handlers like Functions, Logic Apps, webhooks.

When to use it

  • React to blob uploads
  • Resource lifecycle automation

Setup

  1. Create system or custom topic.
  2. Add subscriptions with event filters.

How to use

Subscribe Function
az eventgrid event-subscription create --name on-blob \
  --source-resource-id <storage-id> \
  --endpoint-type azurefunction --endpoint <fn-id>

QA use cases

  • Trigger report-parser Function automatically when a new report is uploaded.