All DSP releases prior to DSP 1.4.0 use Gravity, a Kubernetes orchestrator, which has been announced end-of-life. We have replaced Gravity with an alternative component in DSP 1.4.0. Therefore, we will no longer provide support for versions of DSP prior to DSP 1.4.0 after July 1, 2023. We advise all of our customers to upgrade to DSP 1.4.0 in order to continue to receive full product support from Splunk.
Deserialize and preview data from Microsoft Azure Event Hubs in DSP
When you use the Microsoft Azure Event Hubs source function to ingest data from a Microsoft Azure Event Hubs topic, the payloads of the incoming records are stored in a bytes field named body
. During data previews, the Splunk Data Stream Processor displays the contents of bytes fields as base64-encoded values. To view the data as human-readable strings during data preview, you must deserialize the data.
Deserializing the body
field also makes it usable as input in a wider variety of streaming functions, since most streaming functions do not accept bytes data as input. See the Function Reference manual for information about the data type that each function accepts as input.
Prerequisites
To ingest data from Azure Event Hubs into a DSP pipeline, you must have a connection to an event hub. See Create a DSP connection to Microsoft Azure Event Hubs.
Steps
- In DSP, select the Pipelines page.
- On the Pipelines page, click Create Pipeline.
- Select Microsoft Azure Event Hubs.
- Configure the Microsoft Azure Event Hubs function to use your Azure Event Hubs connection and get data from your event hub. See Get data from Microsoft Azure Event Hubs in the Function Reference manual.
- On the pipeline canvas, click the Connect a processing or a sink function icon () and then select Eval from the function picker.
- On the View Configurations tab, enter the following SPL2 expression in the Function field:
body = deserialize_json_object(body)
- Click the Start Preview icon () and click the Eval function on the pipeline canvas to confirm that the data in the
body
field has been deserialized from bytes into strings.
Create a DSP connection to Microsoft Azure Event Hubs | Connecting Microsoft Azure Monitor to your DSP pipeline |
This documentation applies to the following versions of Splunk® Data Stream Processor: 1.3.0, 1.3.1, 1.4.0, 1.4.1, 1.4.2, 1.4.3, 1.4.4, 1.4.5
Feedback submitted, thanks!