SQL Server Extended Events Packages

A package is a container for SQL Server Extended Events objects. There are three kinds of Extended Events packages, which include the following:

  • package0 - Extended Events system objects. This is the default package.

  • sqlserver - SQL Server related objects.

  • sqlos - SQL Server Operating System (SQLOS) related objects.

[!UWAGA]

The SecAudit package is used by SQL Server Audit. None of the objects in the package are available through the Extended Events data definition language (DDL).

Packages are identified by a name, a GUID, and the binary module that contains the package. For more information, see sys.dm_xe_packages (Transact-SQL).

A package can contain any or all of the following objects, which are discussed in greater detail later in this topic:

  • Events

  • Targets

  • Actions

  • Types

  • Predicates

  • Maps

Objects from different packages can be mixed in an event session. For more information, see SQL Server Extended Events Sessions.

Package Contents

The following illustration shows the objects that can exist in packages, which are contained in a module. A module can be an executable or a dynamic link library.

Relacja między modułem, pakietami a obiektem

Events

Events are monitoring points of interest in the execution path of a program, such as SQL Server. An event firing carries with it the fact that the point of interest was reached, and state information from the time the event was fired.

Events can be used solely for tracing purposes or for triggering actions. These actions can either be synchronous or asynchronous.

[!UWAGA]

An event does not have any knowledge of the actions that may be triggered in response to the event firing.

A set of events in a package cannot change after the package is registered with Extended Events.

All events have a versioned schema which defines their contents. This schema is composed of event columns with well defined types. An event of a specific type must always provide its data in exactly the same order that is specified in the schema. However, an event target does not have to consume all the data that is provided.

Event Categorization

Extended Events uses an event categorization model similar to Event Tracing for Windows (ETW). Two event properties are used for categorization, channel and keyword. Using these properties supports the integration of Extended Events with ETW and its tools.

Channel

A channel identifies the audience for an event. These channels are described in the following table.

Term

Definition

Admin

Admin events are primarily targeted to the end users, administrators, and support. The events that are found in the admin channels indicate a problem with a well-defined solution that an administrator can act on. An example of an admin event is when an application fails to connect to a printer. These events are either well-documented or have a message associated with them that tells the reader what to do to rectify the problem.

Operational

Operational events are used for analyzing and diagnosing a problem or occurrence. They can be used to trigger tools or tasks based on the problem or occurrence. An example of an operational event is when a printer is added or removed from a system.

Analytic

Analytic events are published in high volume. They describe program operation and are typically used in performance investigations.

Debug

Debug events are used solely by developers to diagnose a problem for debugging.

[!UWAGA]

Events in the Debug channel return internal implementation-specific state data. The schemas and data that the events return may change or become invalid in future versions of SQL Server. Therefore, events in the Debug channel may change or be removed in future versions of SQL Server without notice.

Keyword

A keyword is application specific and enables a finer-grained grouping of related events, which makes it easier for you to specify and retrieve an event that you want to use in a session. You can use the following query to obtain keyword information.

select map_value Keyword from sys.dm_xe_map_values
where name = 'keyword_map'

[!UWAGA]

Keywords map closely to the current grouping of SQL Trace events.

Targets

Targets are event consumers. Targets process events, either synchronously on the thread that fires the event or asynchronously on a system provided thread. Extended Events provides several targets that you can use as appropriate for directing event output. For more information, see SQL Server Extended Events Targets.

Actions

An action is a programmatic response or series of responses to an event. Actions are bound to an event, and each event may have a unique set of actions.

[!UWAGA]

Actions that are intended for a specific set of events cannot bind to unknown events.

An action bound to an event is invoked synchronously on the thread that fired the event. There are many types of actions and they have a wide range of capabilities. Actions can:

  • Capture a stack dump and inspect data.

  • Store state information in a local context using variable storage.

  • Aggregate event data.

  • Append data to event data.

Some typical and well known examples of actions are:

  • Stack dumper

  • Execution plan detection (SQL Server only)

  • Transact-SQL stack collection (SQL Server only)

  • Run time statistics calculation

  • Gather user input on exception

Predicates

Predicates are a set of logical rules that are used to evaluate events when they are processed. This enables the Extended Events user to selectively capture event data based on specific criteria.

Predicates can store data in a local context that can be used for creating predicates that return true once every n minutes or every n times that an event fires. This local context storage can also be used to dynamically update the predicate, thereby suppressing future event firing if the events contain similar data.

Predicates have the ability to retrieve context information, such as the thread ID, as well as event specific data. Predicates are evaluated as full Boolean expressions, and support short circuiting at the first point where the entire expression is found to be false.

[!UWAGA]

Predicates with side effects may not be evaluated if an earlier predicate check fails.

Types

Because data is a collection of bytes strung together, the length and characteristics of the byte collection are required in order to interpret the data. This information is encapsulated in the Type object. The following types are provided for package objects:

  • event

  • action

  • target

  • pred_source

  • pred_compare

  • type

For more information, see sys.dm_xe_objects (Transact-SQL).

Maps

A map table maps an internal value to a string, which enables a user to know what the value represents. Instead of only being able to obtain a numeric value, a user can get a meaningful description of the internal value. The following query shows how to obtain map values.

select map_key, map_value from sys.dm_xe_map_values
where name = 'lock_mode'

The preceding query produces the following output.

map_key map_value

---------------------

0 NL

1 SCH_S

2 SCH_M

3 S

4 U

5 X

6 IS

7 IU

8 IX

9 SIU

10 SIX

11 UIX

12 BU

13 RS_S

14 RS_U

15 RI_NL

16 RI_S

17 RI_U

18 RI_X

19 RX_S

20 RX_U

21 RX_X

21 RX_X

Using this table as an example, assume that you have a column named mode, and its value is 5. The table indicates that 5 maps to X, which means the lock type is Exclusive.

Zobacz także

Inne zasoby

SQL Server Extended Events Sessions

SQL Server Extended Events Engine

SQL Server Extended Events Targets