All Apps and Add-ons

Splunk Add-On for Microsoft Cloud Services - How to fix Eventhub input parsing error of JSON?

thilles
Explorer

Hi! 

We've set up an Eventhub input using the Splunk Add-on for MS Cloud Services, and we are getting events successfully into Splunk.

The problem is that the events are not formatted correctly when indexed into Splunk. 
JSON formatted events are indexed into Splunk with all the quotation marks escaped. This messes up the syntax highlighting, and the auto field extractions.

The sourcetype used during eventhub config is mscs:azure:eventhub, as per the docs states.

The following code is used to generate test data, and the rendered result is in the screenshot. 

Anyone seen the same, or resolved it somehow?

 

#Method 1 - You provide a JSON string
body1 = "{'id':'device2','goo':'frodo'}"
event_data_batch.add(EventData(body1))

#Method 2 - You get the JSON Object and convert to string
json_obj = {"id": "device3", "goo": "bilbo"}
body2 = json.dumps(json_obj)
event_data_batch.add(EventData(body2))

#This just sending the string which will not be captured by TSI
event_data_batch.add(EventData('Third event'))

 

 

 

 

Labels (3)
0 Karma
1 Solution

kristenbidbax
Engager
0 Karma

kristenbidbax
Engager

add event_format_flags = 1  to your inputs as per documentation
https://docs.splunk.com/Documentation/AddOns/released/MSCloudServices/Upgrade

0 Karma

thilles
Explorer

As an added input:
I've used the Eventhub integration to collect events with proper json rendering earlier, but then the data source was Microsofts own streaming options to Eventhub, e.g.  Stream Microsoft Defender for Endpoint events to Azure Event Hubs | Microsoft Learn

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...