使用Azure IoT设备配置服务在属性更改和事件订阅时触发事件

时间:2019-08-10 20:39:05

标签: azure azure-iot-hub

只要更改以下属性,是否有可能发送事件或通知,并且理想情况下可以将事件路由到Azure Service Bus或类似对象?

{
  "tags": {
    "A": "Test",
    "B": true
  },
  "properties": {
    "desired": {
      "C": 1,
      "D": 2,
      "E": 3
    }
  }
}

1 个答案:

答案 0 :(得分:2)

您的问题属于Azure IoT中心设备双胞胎服务。 正如@Roman Kiss指出的那样,您需要在 IoTHub->消息路由->自定义端点中创建一个自定义端点,您可以在其中选择服务总线队列:

image -> Custom endpoints Service Bus Queues

enter image description here

此后,通过选择“设备双胞胎更改事件”作为数据源和新的服务总线端点,在 IoTHub->消息路由处创建新路由:

image -> Message Routing to Service Bus endpoint

enter image description here

供参考: