SHOW TELEMETRY EVENT DEFINITIONS¶

Lists the event definitions for the specified application object.

Syntax¶

SHOW TELEMETRY EVENT DEFINITIONS IN APPLICATION <name>
Copy

Parameters¶

name

Specifies the identifier for the application. If the identifier contains spaces, special characters, or mixed-case characters, the entire string must be enclosed in double quotes. Identifiers enclosed in double quotes are also case-sensitive.

Output¶

Shows information about the event definitions for an application object.

Column

Description

name

The name of the event definition. Event definition names begin with the SNOWFLAKE$ prefix.

type

The type of event definition. See Configure event tracing for an app

sharing

Specifies if the event definition is MANDATORY or OPTIONAL.

status

Specifies if the event definition is enabled in the consumer account.

Example¶

SHOW TELEMETRY EVENT DEFINITIONS IN APPLICATION hello_snowflake;
Copy
+--------------------------+----------------+---------------+--------------+
|   name                   |   type         |   sharing     |   status     |
+--------------------------+----------------+---------------+--------------+
|   SNOWFLAKE$DEBUG_LOGS   |   DEBUG_LOGS   |   OPTIONAL    |   ENABLED    |
|   SNOWFLAKE$TRACES       |   TRACES       |   MANDATORY   |   ENABLED    |
+--------------------------+----------------+---------------+--------------+