Be sure to share ALL
events from the native app so that Lang.ai can provide any necessary operational support.
You can examine the logs and events shared with Lang.ai using the event table configured for your account. See Snowflake's documentation for more details about event sharing.
Using Snowsight: If you have an existing Lang.ai app installation, you can easily enable events in Snowsight by going to Data Products
-> Apps
-> Snowflake AI agents
-> Events and Logs
. On the Events and Logs
tab, toggle the All events
button in the Events and logs sharing
section
Using SQL: The above event sharing can also be enabled using the following commands:
-- Set app name if it's different from the default.
SET LANGAI_APP_NAME = 'LANG_AI';
-- Enables event sharing for the Native app.
ALTER APPLICATION IDENTIFIER($LANGAI_APP_NAME) SET AUTHORIZE_TELEMETRY_EVENT_SHARING=true;