Skip to main content

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:

  1. Open the ZettaQuant app in Snowsight
  2. Click the settings gear icon in the top right corner
  3. Navigate to the "App Events" tab
  4. Click "View Logs"
  5. Optionally adjust logging levels in the event sharing block (requires appropriate permissions)

Via Snowsight Monitoring:

  1. Navigate to MonitoringTraces & Logs in Snowsight
  2. Filter by your application name or database
  3. 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)