Skip to content

Latest commit

 

History

History
323 lines (203 loc) · 20 KB

iot-hub-distributed-tracing.md

File metadata and controls

323 lines (203 loc) · 20 KB
title description author manager ms.service services ms.topic ms.date ms.author ms.custom
Add correlation IDs to IoT messages w/distributed tracing (pre)
Learn how to use the distributed tracing ability to trace IoT messages throughout the Azure services used by your solution.
jlian
briz
iot-hub
iot-hub
conceptual
02/06/2019
jlian
amqp
mqtt
fasttrack-edit
iot

Trace Azure IoT device-to-cloud messages with distributed tracing (preview)

Microsoft Azure IoT Hub currently supports distributed tracing as a preview feature.

IoT Hub is one of the first Azure services to support distributed tracing. As more Azure services support distributed tracing, you'll be able trace IoT messages throughout the Azure services involved in your solution. For a background on distributed tracing, see Distributed Tracing.

Enabling distributed tracing for IoT Hub gives you the ability to:

  • Precisely monitor the flow of each message through IoT Hub using trace context. This trace context includes correlation IDs that allow you to correlate events from one component with events from another component. It can be applied for a subset or all IoT device messages using device twin.
  • Automatically log the trace context to Azure Monitor diagnostic logs.
  • Measure and understand message flow and latency from devices to IoT Hub and routing endpoints.
  • Start considering how you want to implement distributed tracing for the non-Azure services in your IoT solution.

In this article, you use the Azure IoT device SDK for C with distributed tracing. Distributed tracing support is still in progress for the other SDKs.

Prerequisites

  • The preview of distributed tracing is currently only supported for IoT Hubs created in the following regions:

    • North Europe
    • Southeast Asia
    • West US 2
  • This article assumes that you're familiar with sending telemetry messages to your IoT hub. Make sure you've completed the Send telemetry C Quickstart.

  • Register a device with your IoT hub (steps available in each Quickstart) and note down the connection string.

  • Install the latest version of Git.

Configure IoT Hub

In this section, you configure an IoT Hub to log distributed tracing attributes (correlation IDs and timestamps).

  1. Navigate to your IoT hub in the Azure portal.

  2. In the left pane for your IoT hub, scroll down to the Monitoring section and click Diagnostics settings.

  3. If diagnostic settings aren't already turned on, click Turn on diagnostics. If you have already enabled diagnostic settings, click Add diagnostic setting.

  4. In the Name field, enter a name for a new diagnostic setting. For example, DistributedTracingSettings.

  5. Choose one or more of the following options that determine where the logging will be sent:

    • Archive to a storage account: Configure a storage account to contain the logging information.
    • Stream to an event hub: Configure an event hub to contain the logging information.
    • Send to Log Analytics: Configure a log analytics workspace to contain the logging information.
  6. In the Log section, select the operations that you want logging information for.

    Make sure to include DistributedTracing, and configure a Retention for how many days you want the logging retained. Log retention does affect storage costs.

    Screenshot showing where the DistributedTracing category is for IoT diagnostic settings

  7. Click Save for the new setting.

  8. (Optional) To see the messages flow to different places, set up routing rules to at least two different endpoints.

Once the logging is turned on, IoT Hub records a log when a message containing valid trace properties is encountered in any of the following situations:

  • The messages arrives at IoT Hub's gateway.
  • The message is processed by the IoT Hub.
  • The message is routed to custom endpoints. Routing must be enabled.

To learn more about these logs and their schemas, see Distributed tracing in IoT Hub diagnostic logs.

Set up device

In this section, you prepare a development environment for use with the Azure IoT C SDK. Then, you modify one of samples to enable distributed tracing on your device's telemetry messages.

These instructions are for building the sample on Windows. For other environments, see Compile the C SDK or Prepackaged C SDK for Platform Specific Development.

Clone the source code and initialize

  1. Install "Desktop development with C++" workload for Visual Studio 2019. Visual Studio 2017 and 2015 are also supported.

  2. Install CMake. Make sure it is in your PATH by typing cmake -version from a command prompt.

  3. Open a command prompt or Git Bash shell. Run the following commands to clone the latest release of the Azure IoT C SDK GitHub repository:

    git clone -b public-preview https://github.com/Azure/azure-iot-sdk-c.git
    cd azure-iot-sdk-c
    git submodule update --init

    You should expect this operation to take several minutes to complete.

  4. Create a cmake subdirectory in the root directory of the git repository, and navigate to that folder. Run the following commands from the azure-iot-sdk-c directory:

    mkdir cmake
    cd cmake
    cmake ..

    If cmake can't find your C++ compiler, you might get build errors while running the above command. If that happens, try running this command in the Visual Studio command prompt.

    Once the build succeeds, the last few output lines will look similar to the following output:

    $ cmake ..
    -- Building for: Visual Studio 15 2017
    -- Selecting Windows SDK version 10.0.16299.0 to target Windows 10.0.17134.
    -- The C compiler identification is MSVC 19.12.25835.0
    -- The CXX compiler identification is MSVC 19.12.25835.0
    
    ...
    
    -- Configuring done
    -- Generating done
    -- Build files have been written to: E:/IoT Testing/azure-iot-sdk-c/cmake

Edit the send telemetry sample to enable distributed tracing

[!div class="button"] Get the sample on GitHub

  1. Use an editor to open the azure-iot-sdk-c/iothub_client/samples/iothub_ll_telemetry_sample/iothub_ll_telemetry_sample.c source file.

  2. Find the declaration of the connectionString constant:

    [!code-c]

    Replace the value of the connectionString constant with the device connection string you made a note of in the register a device section of the Send telemetry C Quickstart.

  3. Change the MESSAGE_COUNT define to 5000:

    [!code-c]

  4. Find the line of code that calls IoTHubDeviceClient_LL_SetConnectionStatusCallback to register a connection status callback function before the send message loop. Add code under that line as shown below to call IoTHubDeviceClient_LL_EnablePolicyConfiguration enabling distributed tracing for the device:

    [!code-c]

    The IoTHubDeviceClient_LL_EnablePolicyConfiguration function enables policies for specific IoTHub features that are configured via device twins. Once POLICY_CONFIGURATION_DISTRIBUTED_TRACING is enabled with the line of code above, the tracing behavior of the device will reflect distributed tracing changes made on the device twin.

  5. To keep the sample app running without using up all your quota, add a one-second delay at the end of the send message loop:

    [!code-c]

Compile and run

  1. Navigate to the iothub_ll_telemetry_sample project directory from the CMake directory (azure-iot-sdk-c/cmake) you created earlier, and compile the sample:

    cd iothub_client/samples/iothub_ll_telemetry_sample
    cmake --build . --target iothub_ll_telemetry_sample --config Debug
  2. Run the application. The device sends telemetry supporting distributed tracing.

    Debug/iothub_ll_telemetry_sample.exe
  3. Keep the app running. Optionally observe the message being sent to IoT Hub by looking at the console window.

Workaround for third-party clients

It's not trivial to preview the distributed tracing feature without using the C SDK. Thus, this approach is not recommended.

First, you must implement all the IoT Hub protocol primitives in your messages by following the dev guide Create and read IoT Hub messages. Then, edit the protocol properties in the MQTT/AMQP messages to add tracestate as system property. Specifically,

  • For MQTT, add %24.tracestate=timestamp%3d1539243209 to the message topic, where 1539243209 should be replaced with the creation time of the message in the unix timestamp format. As an example, refer to the implementation in the C SDK
  • For AMQP, add key("tracestate") and value("timestamp=1539243209") as message annotation. For a reference implementation, see here.

To control the percentage of messages containing this property, implement logic to listen to cloud-initiated events such as twin updates.

Update sampling options

To change the percentage of messages to be traced from the cloud, you must update the device twin. You can accomplish this multiple ways including the JSON editor in portal and the IoT Hub service SDK. The following subsections provide examples.

Update using the portal

  1. Navigate to your IoT hub in Azure portal, then click IoT devices.

  2. Click your device.

  3. Look for Enable distributed tracing (preview), then select Enable.

    Enable distributed tracing in Azure portal

  4. Choose a Sampling rate between 0% and 100%.

  5. Click Save.

  6. Wait a few seconds, and hit Refresh, then if successfully acknowledged by device, a sync icon with a checkmark appears.

  7. Go back to the console window for the telemetry message app. You will see messages being sent with tracestate in the application properties.

    Trace state

  8. (Optional) Change the sampling rate to a different value, and observe the change in frequency that messages include tracestate in the application properties.

Update using Azure IoT Hub for VS Code

  1. Install VS Code, then install the latest version of Azure IoT Hub for VS Code from here.

  2. Open VS Code and set up IoT Hub connection string.

  3. Expand the device and look for Distributed Tracing Setting (Preview). Under it, click Update Distributed Tracing Setting (Preview) of sub node.

    Enable distributed tracing in Azure IoT Hub extension

  4. In the popup window, select Enable, then press Enter to confirm 100 as sampling rate.

    Update sampling mode

    Update sampling rate

Bulk update for multiple devices

To update the distributed tracing sampling configuration for multiple devices, use automatic device configuration. Make sure you follow this twin schema:

{
    "properties": {
        "desired": {
            "azureiot*com^dtracing^1": {
                "sampling_mode": 1,
                "sampling_rate": 100
            }
        }
    }
}
Element name Required Type Description
sampling_mode Yes Integer Two mode values are currently supported to turn sampling on and off. 1 is On and, 2 is Off.
sampling_rate Yes Integer This value is a percentage. Only values from 0 to 100 (inclusive) are permitted.

Query and visualize

To see all the traces logged by an IoT Hub, query the log store that you selected in diagnostic settings. This section walks through a couple different options.

Query using Log Analytics

If you've set up Log Analytics with diagnostic logs, query by looking for logs in the DistributedTracing category. For example, this query shows all the traces logged:

// All distributed traces 
AzureDiagnostics 
| where Category == "DistributedTracing" 
| project TimeGenerated, Category, OperationName, Level, CorrelationId, DurationMs, properties_s 
| order by TimeGenerated asc  

Example logs as shown by Log Analytics:

TimeGenerated OperationName Category Level CorrelationId DurationMs Properties
2018-02-22T03:28:28.633Z DiagnosticIoTHubD2C DistributedTracing Informational 00-8cd869a412459a25f5b4f31311223344-0144d2590aacd909-01 {"deviceId":"AZ3166","messageSize":"96","callerLocalTimeUtc":"2018-02-22T03:27:28.633Z","calleeLocalTimeUtc":"2018-02-22T03:27:28.687Z"}
2018-02-22T03:28:38.633Z DiagnosticIoTHubIngress DistributedTracing Informational 00-8cd869a412459a25f5b4f31311223344-349810a9bbd28730-01 20 {"isRoutingEnabled":"false","parentSpanId":"0144d2590aacd909"}
2018-02-22T03:28:48.633Z DiagnosticIoTHubEgress DistributedTracing Informational 00-8cd869a412459a25f5b4f31311223344-349810a9bbd28730-01 23 {"endpointType":"EventHub","endpointName":"myEventHub", "parentSpanId":"0144d2590aacd909"}

To understand the different types of logs, see Azure IoT Hub diagnostic logs.

Application Map

To visualize the flow of IoT messages, set up the Application Map sample app. The sample app sends the distributed tracing logs to Application Map using an Azure Function and an Event Hub.

[!div class="button"] Get the sample on GitHub

This image below shows distributed tracing in App Map with three routing endpoints:

IoT distributed tracing in App Map

Understand Azure IoT distributed tracing

Context

Many IoT solutions, including our own reference architecture (English only), generally follow a variant of the microservice architecture. As an IoT solution grows more complex, you end up using a dozen or more microservices. These microservices may or may not be from Azure. Pinpointing where IoT messages are dropping or slowing down can become challenging. For example, you have an IoT solution that uses 5 different Azure services and 1500 active devices. Each device sends 10 device-to-cloud messages/second (for a total of 15,000 messages/second), but you notice that your web app sees only 10,000 messages/second. Where is the issue? How do you find the culprit?

Distributed tracing pattern in microservice architecture

To reconstruct the flow of an IoT message across different services, each service should propagate a correlation ID that uniquely identifies the message. Once collected in a centralized system, correlation IDs enable you to see message flow. This method is called the distributed tracing pattern.

To support wider adoption for distributed tracing, Microsoft is contributing to W3C standard proposal for distributed tracing.

IoT Hub support

Once enabled, distributed tracing support for IoT Hub will follow this flow:

  1. A message is generated on the IoT device.
  2. The IoT device decides (with help from cloud) that this message should be assigned with a trace context.
  3. The SDK adds a tracestate to the message property, containing the message creation timestamp.
  4. The IoT device sends the message to IoT Hub.
  5. The message arrives at IoT hub gateway.
  6. IoT Hub looks for the tracestate in the message properties, and checks to see if it's in the correct format.
  7. If so, IoT Hub generates a globally unique trace-id for the message, a span-id for the "hop", and logs them to Azure Monitor diagnostic logs under the operation DiagnosticIoTHubD2C.
  8. Once the message processing is finished, IoT Hub generates another span-id and logs it along with the existing trace-id under the operation DiagnosticIoTHubIngress.
  9. If routing is enabled for the message, IoT Hub writes it to the custom endpoint, and logs another span-id with the same trace-id under the category DiagnosticIoTHubEgress.
  10. The steps above are repeated for each message generated.

Public preview limits and considerations

  • Proposal for W3C Trace Context standard is currently a working draft.
  • Currently, the only development language supported by client SDK is C.
  • Cloud-to-device twin capability isn't available for IoT Hub basic tier. However, IoT Hub will still log to Azure Monitor if it sees a properly composed trace context header.
  • To ensure efficient operation, IoT Hub will impose a throttle on the rate of logging that can occur as part of distributed tracing.

Next steps