I'm trying to get a better understanding of how various third party applications reach into a Microsoft SQL Server data warehouse and gather data before allowing report writers to work with it. I'm working with a SQL 2008 R2 instance and ultimately I want to capture all requests going into and out of the warehouse at a SQL level over a short period of time.
So right now I'm using Extended Events to do this, and the events I'm monitoring are:
SQL_STATEMENT_COMPLETED
SQL_STATEMENT_STARTING
SP_STATEMENT_COMPLETED
SP_STATEMENT_STARTING
RPC_STARTING
RPC_COMPLETED
However when I run this, open Tableau 8 and connect to the server and pull in data from a specific table, I don't see any activity in the XE. So am I missing an event that would see the SQL?