Extended Events Capture Step by Step Walkthrough
Published Mar 13 2019 06:57 PM 18.4K Views
Copper Contributor
First published on MSDN on Mar 13, 2018

Extended Events Step By Step


Introduction


I’ve read a few articles about using Extended Events (aka xEvents) to perform troubleshooting, and they do indeed provide a very powerful tool to troubleshoot. This is particularly true in Azure DB where in many cases we don’t have many alternatives, there is no Profiler (or as we’d prefer server side traces) so we don’t get much in the way of choice. There are a number of great articles on how to troubleshoot a specific issue with extended events, but so far I’ve not found an end to end, step by step guide to take a user through from start to finish, so as with many things in life, if you want a job done right, you have to do it yourself. I am going to try and do this using only the management portal, and SQL Server Management Studio, if you are thinking ‘wow we could do that in Power Shell’ chances are you don’t need the help below.

Capturing Extended Events


When working with extended events there are two places you can capture the events, the first is the ‘ring buffers’ this is in-memory, and obviously the amount of space we can use for this is going to be limited, the other drawback is that its not very portable or easy to share. The alternative is a file which is great for on-prem, but in Azure we have to place this file in a storage account which adds a level of complexity for us.
The overall steps for creating and capturing extended events from an Azure DB are going to be as follows

  • Set up a storage account and container

  • On the Azure DB server create a master encryption key

  • Create credentials in Azure DB to access the storage account

  • Configure Extended event session

  • Run the capture


I am going to assume that there is nothing set up for us and we are starting from scratch.

Setting up a storage account


OK so on the Portal we are going to select New Storage
http://portal.azure.com/





This should then spin away deploying for us, it will take a little while but after we should have the storage account pinned to our dashboard.
Once we have an account created we need to make a container to put our file in. On the dashboard select the storage account and the under the Blob Storage, select Containers



You can then press + Container and add your container. I’ve created one called events here.





To ensure that access to our storage is secure we must create a SAS (Shared Access Signature) key. I did this in the Storage Explorer in the Azure Portal.



The Permissions are very important !



This should then provide is wit the key for the events container, which we can copy and use later.


Setting up the Extended Events


OK so that is the first phase of the operation, we now have a storage account and container ready for our extended event capture.

Create the Credentials


Meanwhile in SQL Server Management Studio we first need to create some credentials to access the storage account.
Step 1 is to create a secured master key (if you don’t have one already. Use the following command to do this.

CREATE MASTER KEY ENCRYPTION BY PASSWORD = 'x4565465xxxxx!';

Then go ahead and create the Database Scoped Credential in the database you are going to monitor

CREATE DATABASE SCOPED CREDENTIAL [https://exeventtest.blob.core.windows.net/events]
WITH IDENTITY='SHARED ACCESS SIGNATURE',
SECRET = 'sp=rwl&st=2018-03-09T16%3A45%3A00Z&se=2024-03-10T1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxWM0%3D&sr=c'

NOTE: You must remove the leading ‘?’ from the key


Creating the session


Now we can create a session, to do this via SSMS we expand the database and open Extended Events then right click on Sessions, there is then to option to create a new session via a wizard or manually.



In the Wizard we first select the Session name and if we want to use a template, I’ve skipped those steps and moved to the events to capture.
For this example, I am going to show how to capture errors, so the event I select is the error_reported event



Then some additional data I may need, here I select the database_id , client_hostname, and username



I am not filtering at this point so skip ahead to storage



And we are done we can hit Finish…. And you should end up with the following.



Hit Close and refresh the Object Explorer.



And there it is...

Capturing a session.


The first thing to do is to start the session. You should see the red square turn into a play button



Now to make an error, run the following in your database

select wibble from wobble

In the storage explorer for the blob container you should now see a file(s) (I had a couple of goes at this)



Once you stop the session the lock will be removed from the file and you can then open the file and marvel at its contents.

Inspecting the Capture


I downloaded the file and then opened it in SSMS



The example given here is not the most complex but it does offer an end to end walkthrough, there are many different scenarios where Extended events can be used in SQL and Azure DB.
As well as using SSMS to inspect the contents, it is also possible to dive into them directly.
The internet has many examples of capturing extended events , but hopefully this will give an end to end example which can aid you when working through those examples.
3 Comments
Copper Contributor

@Azure-DB-Support-Team 

 

I have accidentally stopped [system_health] extended event on the Managed instance. now I'm not able to start the event. Just curious if I'm allowed to stop the event but can not start. Any help? 

 

ALTER EVENT SESSION [system_health] ON SERVER
STATE = start;
GO

Error: 

Msg 40538, Level 16, State 3, Line 61
A valid URL beginning with 'https://' is required as value for any filepath specified.  

Copper Contributor

This is resolved by automatically when I scaled up managed instance by adding more CPUs.  I believe when you scale up (CPUs), it starts a new instance in the background and migrate all data.

 

Copper Contributor

@Azure-DB-Support-Team can you please make these images any larger? I can barely see anything in the screenshots.

Version history
Last update:
‎Mar 13 2019 06:57 PM
Updated by: