Telemetry
Monitor your ZettaQuant application performance and troubleshoot issues using comprehensive telemetry features.
Viewing Logs and Traces
Execute this SQL query to view application logs, traces, and events:
SELECT
TIMESTAMP as time,
RESOURCE_ATTRIBUTES['snow.executable.name'] as executable,
RECORD['severity_text'] as severity,
VALUE as message
FROM
"OBSERVABILITY"."PUBLIC"."SERVICE_EVENTS"
WHERE
RESOURCE_ATTRIBUTES['snow.application.name'] = '{YOUR_APP_NAME}' OR
RESOURCE_ATTRIBUTES['snow.database.name'] = '{YOUR_APP_NAME}'
ORDER BY time DESC;
Alternative Access Methods
Via Snowsight Application Interface:
- Open the ZettaQuant app in Snowsight
- Click the settings gear icon in the top right corner
- Navigate to the "App Events" tab
- Click "View Logs"
- Optionally adjust logging levels in the event sharing block (requires appropriate permissions)
Via Snowsight Monitoring:
- Navigate to Monitoring → Traces & Logs in Snowsight
- Filter by your application name or database
- Analyze performance metrics and error patterns
Log Level Configuration
Adjust logging verbosity based on your monitoring needs:
- ERROR: Only critical failures and errors
- WARN: Warnings and errors
- INFO: General application information, warnings, and errors
- DEBUG: Detailed debugging information (use for troubleshooting)