Skip to content

Commit 4a49f42

Browse files
committed
Removed the old portal article
1 parent 6692ec6 commit 4a49f42

14 files changed

+45
-123
lines changed

articles/event-grid/.openpublishing.redirection.event-grid.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@
1414
"source_path": "configure-firewall-namespace-topics.md",
1515
"redirect_url": "/azure/event-grid/configure-firewall-namespaces",
1616
"redirect_document_id": false
17+
},
18+
{
19+
"source_path": "mqtt-routing-to-event-hubs-portal.md",
20+
"redirect_url": "/azure/event-grid/mqtt-routing-to-azure-functions-portal",
21+
"redirect_document_id": false
1722
},
1823
{
1924
"source_path": "network-security-mqtt.md",

articles/event-grid/index.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,10 @@ landingContent:
4545
url: publish-events-using-namespace-topics.md
4646
- linkListType: tutorial
4747
links:
48-
- text: Route MQTT messages to Azure Event Hubs
49-
url: mqtt-routing-to-event-hubs-portal.md
48+
- text: Route MQTT messages to Azure Event Hubs using namespace topics
49+
url: mqtt-routing-to-event-hubs-portal-namespace-topics.md
50+
- text: Route MQTT messages to Azure Functions using custom topics
51+
url: mqtt-routing-to-azure-fucntions-portal.md
5052
- linkListType: sample
5153
links:
5254
- text: Code samples

articles/event-grid/monitor-namespaces.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ To collect sample runtime audit logs in your Event Grid namespace, you can publi
135135
136136
- MQTT
137137
- [Quickstart: Publish and subscribe to MQTT messages on Event Grid Namespace with Azure portal](mqtt-publish-and-subscribe-portal.md)
138-
- [Tutorial: Route MQTT messages to Azure Event Hubs from Azure Event Grid with the Azure portal](mqtt-routing-to-event-hubs-portal.md)
138+
- [Tutorial: Route MQTT messages to Azure Event Hubs using namespace topics](mqtt-routing-to-event-hubs-portal-namespace-topics.md)
139+
- [Tutorial: Route MQTT messages to Azure Functions using custom topics](mqtt-routing-to-azure-fucntions-portal.md)
139140
- Pull model
140141
- [Publish events to namespace topics using Java](publish-events-to-namespace-topics-java.md)
141142
- [Receive events using pull delivery with Java](receive-events-from-namespace-topics-java.md)

articles/event-grid/mqtt-events-fabric.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,18 @@ This article shows you how to use Azure Event Grid to send events from MQTT clie
2525

2626
## Detailed steps
2727

28-
1. In the Azure portal, do these steps:
29-
1. [Create an Event Hubs namespace and an event hub](../event-hubs/event-hubs-create.md).
30-
1. [Create an Event Grid namespace and a topic](create-view-manage-namespace-topics.md#create-a-namespace-topic).
31-
1. [Enable managed identity on the namespace](event-grid-namespace-managed-identity.md).
32-
1. [Add the identity to Azure Event Hubs Data Sender role on the Event Hubs namespace or event hub](/azure/role-based-access-control/role-assignments-portal?tabs=delegate-condition).
33-
1. [Create a subscription to the topic using Azure Event Hubs as the destination type and select your event hub](mqtt-routing-to-event-hubs-portal.md#create-an-event-subscription-with-event-hubs-as-the-endpoint).
34-
1. [Create an Event Grid namespace and enable MQTT broker](mqtt-publish-and-subscribe-portal.md#create-a-namespace).
35-
1. [Enable routing to a namespace topic](mqtt-routing-to-event-hubs-portal.md#configure-routing-in-the-event-grid-namespace).
28+
1. Follow steps from the article: [Tutorial: Use namespace topics to route MQTT messages to Azure Event Hubs (Azure portal)](mqtt-routing-to-event-hubs-portal-namespace-topics.md) to:
29+
1. Create an Event Grid namespace in the Azure portal.
30+
1. Create a namespace topic.
31+
1. Enable managed identity for the namespace.
32+
1. Enable MQTT broker for the Event Grid namespace.
33+
1. Create an Event Hubs namespace.
34+
1. Create an event hub.
35+
1. Grant Event Grid namespace the permission to send events to the event hub.
36+
1. Create an event subscription to namespace topic with the event hub as the endpoint.
37+
1. Configure routing for the Event Grid namespace.
38+
1. Create clients, topic space, and permission bindings.
39+
1. Use MQTTX tool to send a few test events or messages.
3640
1. In Microsoft Fabric, do these steps:
3741
1. [Create a lakehouse](/fabric/onelake/create-lakehouse-onelake#create-a-lakehouse).
3842
2. [Create an event stream](/fabric/real-time-analytics/event-streams/create-manage-an-eventstream#create-an-eventstream).

articles/event-grid/mqtt-overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ Client Life Cycle events allow applications to react to events about the client
104104

105105
Use the following articles to learn more about the MQTT broker and its main concepts.
106106

107-
### Quick Start
108-
109107
- [Publish and subscribe to MQTT messages](mqtt-publish-and-subscribe-portal.md)
110-
- [Route MQTT messages to Event Hubs](mqtt-routing-to-event-hubs-portal.md)
108+
- [Tutorial: Route MQTT messages to Azure Event Hubs using namespace topics](mqtt-routing-to-event-hubs-portal-namespace-topics.md)
109+
- [Tutorial: Route MQTT messages to Azure Functions using custom topics](mqtt-routing-to-azure-fucntions-portal.md)
110+
111111

112112
### Concepts
113113

articles/event-grid/mqtt-publish-and-subscribe-portal.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,5 +193,6 @@ After a successful installation of Step, you should open a command prompt in you
193193
:::image type="content" source="./media/mqtt-publish-and-subscribe-portal/mqttx-app-subscribe-message.png" alt-text="Screenshot showing the message received by the subscribing client on MQTTX app." lightbox="./media/mqtt-publish-and-subscribe-portal/mqttx-app-subscribe-message.png":::
194194
195195
## Next steps
196-
- See [Route MQTT messages to Event Hubs](mqtt-routing-to-event-hubs-portal.md)
196+
- [Tutorial: Route MQTT messages to Azure Event Hubs using namespace topics](mqtt-routing-to-event-hubs-portal-namespace-topics.md)
197+
- [Tutorial: Route MQTT messages to Azure Functions using custom topics](mqtt-routing-to-azure-fucntions-portal.md)
197198
- For code samples, go to [this repository.](https://github.com/Azure-Samples/MqttApplicationSamples/tree/main)

articles/event-grid/mqtt-request-response-messages.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ Create permission bindings that allow cloud application group to publish on requ
8080
> - Request-Response message pattern can also be achieved in MQTT v3.1.1, by including the Response topic in the request message payload. The device client needs to parse the message payload, identifies the Response topic, and publishes the response on that topic.
8181
8282
## Next steps
83-
- See [Route MQTT messages to Event Hubs](mqtt-routing-to-event-hubs-portal.md)
83+
- [Tutorial: Route MQTT messages to Azure Event Hubs using namespace topics](mqtt-routing-to-event-hubs-portal-namespace-topics.md)
84+
- [Tutorial: Route MQTT messages to Azure Functions using custom topics](mqtt-routing-to-azure-fucntions-portal.md)
8485
- Learn more about [client life cycle events](mqtt-client-life-cycle-events.md)
8586
- For code samples, go to [this repository.](https://github.com/Azure-Samples/MqttApplicationSamples/tree/main)

articles/event-grid/mqtt-routing-enrichment.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,8 @@ Use the following articles to learn more about routing:
177177

178178
### QuickStart:
179179

180-
- [Route MQTT messages to Event Hubs](mqtt-routing-to-event-hubs-portal.md)
180+
- [Tutorial: Route MQTT messages to Azure Event Hubs using namespace topics](mqtt-routing-to-event-hubs-portal-namespace-topics.md)
181+
- [Tutorial: Route MQTT messages to Azure Functions using custom topics](mqtt-routing-to-azure-fucntions-portal.md)
181182

182183
### Concepts:
183184

articles/event-grid/mqtt-routing-event-schema.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ Use the following articles to learn more about routing:
7575

7676
### QuickStart:
7777

78-
- [Route MQTT messages to Event Hubs](mqtt-routing-to-event-hubs-portal.md)
78+
- [Tutorial: Route MQTT messages to Azure Event Hubs using namespace topics](mqtt-routing-to-event-hubs-portal-namespace-topics.md)
79+
- [Tutorial: Route MQTT messages to Azure Functions using custom topics](mqtt-routing-to-azure-fucntions-portal.md)
7980

8081
### Concepts:
8182

articles/event-grid/mqtt-routing-filtering.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ You can use the following filter to filter all the messages coming from your cli
9696
Use the following articles to learn more about routing:
9797

9898
### QuickStart:
99-
- [Route MQTT messages to Event Hubs](mqtt-routing-to-event-hubs-portal.md)
99+
- [Tutorial: Route MQTT messages to Azure Event Hubs using namespace topics](mqtt-routing-to-event-hubs-portal-namespace-topics.md)
100+
- [Tutorial: Route MQTT messages to Azure Functions using custom topics](mqtt-routing-to-azure-fucntions-portal.md)
100101

101102
### Concepts:
102103
- [Routing](mqtt-routing.md)

0 commit comments

Comments
 (0)