home-assistant.io/source/_components/azure_event_hub.markdown
2019-06-27 20:10:56 -07:00

5.5 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release
layout title description date sidebar comments sharing footer logo ha_category ha_release
page Azure Event Hub Setup for Azure Event Hub integration 2019-05-15 08:00 true false true true azure_event_hub.svg
History
0.94

The Azure Event Hub integration allows you to hook into the Home Assistant event bus and send events to Azure Event Hub or to a Azure IoT Hub.

{% linkable_title First time setup %}

This assumes you already have a Azure account. Otherwise create a Free account here.

You need to create a Event Hub namespace and a Event Hub in that namespace, you can follow this guide. Alternatively you can directly deploy an ARM template with the namespace and the Event Hub from here.

You must then create a Shared Access Policy for the Event Hub with 'Send' claims or use the RootManageAccessKey from your namespace (this key has additional claims, including managing the event hub and listening, which are not needed for this purpose), for more details on the security of Event Hubs go here.

Once you have the name of your namespace, instance, Shared Access Policy and the key for that policy, you can setup the integration itself.

{% linkable_title Configuration %}

Add the following lines to your configuration.yaml file:

# Example configuration.yaml entry
azure_event_hub:
  event_hub_namespace: NAMESPACE_NAME
  event_hub_instance_name: EVENT_HUB_INSTANCE_NAME
  event_hub_sas_policy: SAS_POLICY_NAME
  event_hub_sas_key: SAS_KEY
  filter:
    include_domains:
    - homeassistant
    - light
    - media_player

{% configuration %} event_hub_namespace: description: The name of your Event Hub namespace. required: true type: string event_hub_instance_name: description: The name of your Event Hub instance. required: true type: string event_hub_sas_policy: description: The name of your Shared Access Policy. required: true type: string event_hub_sas_key: description: The key for the Shared Access Policy. required: true type: string filter: description: Filter domains and entities for Event Hub. required: false type: map default: Includes all entities from all domains keys: include_domains: description: List of domains to include (e.g., light). required: false type: list exclude_domains: description: List of domains to exclude (e.g., light). required: false type: list include_entities: description: List of entities to include (e.g., light.attic). required: false type: list exclude_entities: description: List of entities to include (e.g., light.attic). required: false type: list {% endconfiguration %}

Not filtering domains or entities will send every event to Azure Event Hub, thus taking up a lot of space.

Event Hubs have a retention time of at most 7 days, if you do not capture or use the events they are deleted automatically from the Event Hub, the default retention is 1 day.

{% linkable_title Using the data in Azure %}

There are a number of ways to stream the data that comes into the Event Hub into storages in Azure, the easiest way is to use the built-in Capture function and this allows you to capture the data in Azure Blob Storage or Azure Data Lake store, details here.

Other storages in Azure (and outside) are possible with a Azure Stream Analytics job, for instance for Cosmos DB, Azure SQL DB, Azure Table Storage, custom writing to Azure Blob Storage and Topic and Queues.

On the analytical side, Event Hub can be directly fed into Azure Databricks Spark, Azure Time Series Insights and Microsoft Power BI.

The final way to use the data in Azure is to connect a Azure Function to the Event Hub using the Event Hub trigger binding.