Mike R
Mike R

Reputation: 584

Why Are There 2 Events In Some Azure Eventhub Records?

sorry if this is a dumb question, but I cannot seem to find the answer: I am using an external source to read in Audit Log events in Azure Eventhub. I am able to get the data flowing and working, but I see that there are messages with the records field that have 2 messages, but some records only have 1 message. For those records that have 2 json events in them, why is this the case? I see that they might be related.

What I mean is that some logs I will see for some: category:NoninteractiveSignin:

records:[{..},{..}]

Upvotes: 0

Views: 88

Answers (1)

David Browne - Microsoft
David Browne - Microsoft

Reputation: 89419

Event Hub messages are binary, and opaque to Event Hubs. It’s entirely up to the sender what’s in each one.

So you’ll need to ask whatever application creates the messages about that.

Upvotes: 1

Related Questions