I have a Stream Analytics job that reads from an Azure EventHub. I am trying to read a property of the message in the job. I am talking specifically about a property that is attached to the EventHub message, like the following:
var Event = new EventData(Encoding.UTF8.GetBytes(serialized)); Event.Properties.Add("tableName", tableName);
I want to read the "tableName" property in my Stream Analytics job. Is this possible from Stream Analytics or do I have to setup a EventHostProcessor to be able to read these properties?
If it is possible how do I test this in the Azure Management Portal? I don't have an easy way of seeing what the EventData object looks like before it is sent to the EventHub via the EventHubClient.