I have just updated my SSMS to v.17.3 and been pleased to see the new feature called XEvent Profiler. I wanted to ask is there any method to access the output of standard event using .xel file? Can we somehow target this session to write into it? Or is there any other smart method to access this in more RDBS style?
I have tried:
SELECT *
FROM sys.dm_xe_sessions xs
JOIN sys.dm_xe_session_targets xst ON xst.[event_session_address] = xs.[address]
WHERE xs.[name] = N'QuickSessionStandard'
to find the location in sys.dm_xe_session_targets.target_data
but without success.
This is just saying:
<LiveStreamTarget truncated="0">
<clients>
<client name="session_id=XX" pendingBuffers="0"></client>
</clients>
</LiveStreamTarget>