Home United States USA — software Microsoft Ships Azure Event Grid for Unified Event Processing

Microsoft Ships Azure Event Grid for Unified Event Processing

293
0
SHARE

Today, Microsoft released a novel service for ingesting and processing cloud events. The Azure Event Grid takes events generated from Azure services, or custom apps, and routes them to chosen handlers.
Rosanova:
aeg-sas-key:
[
{
“id”: “‘”$RANDOM”‘”,
“eventType”: “recordInserted”,
“subject”: “myapp/vehicles/motorcycles”,
“eventTime”: “‘`date –iso-8601=seconds`'”,
“data”: {
“make”: “Ducati”,
“model”: “Monster”
}
]
In the above sample, the header aeg-sas-key is required, or a SAS token in a header called aeg-sas-token. Within the body the id, event type, subject, event time (in ISO 8601) and any valid JSON in the data object are all required. You don’t need to preregister the event type or subject, but you can use them to enable filtering for your event subscribers, so you should think about using this in your event modeling.

Continue reading...