Queries for the AZMSHybridConnectionsEvents table
For information on using these queries in the Azure portal, see Log Analytics tutorial. For the REST API, see Query.
Publish HTTP send data for hybrid connection
Publish details for send events on a hybrid connection.
//Endpoint needs to be replaced with client specific endpoint.
AZMSHybridConnectionsEvents
| extend NamespaceName = tostring(split(_ResourceId, "/")[8])
| where OperationName == "Microsoft.Relay/HybridConnections/SenderSentHttpRequest"
| where Endpoint contains "shamavijay-relay-hybconn"
| project NamespaceName, TaskName, Message, OperationName
| summarize by NamespaceName, TaskName