Troubleshooting
This document outlines the steps an Admin User should follow to triage and resolve background issues. Currently this feature is only supported for Jira and Alation integration issues.
Only Admin users can access this feature
Health Check (UI Method)
A quick way to check the current status of the integrations.
Navigate to Telmai UI with Admin user, and specify your tenant.
On the top right menu, click the warnings icon.
This will list any open issues if existing
Deeper Diagnosis (API Method)
For issues that aren't immediately clear from the UI or for checking deeper job details, use the Telmai API.
Method:
GETURL:
{config_endpoint}/{tenant}/errorsAuthentication: Requires a valid Admin user token.
Query Parameters
Parameter
Type
Description
Required
Default
limit
Integer
Maximum number of error records to return. Used for pagination and managing response size.
False
100
Response
Status Code:
200 OKBody: A array of error objects, ordered by
timestampin descending order (most recent first).
Response Body Schema
The response is a list of objects, each representing a single background error event:
JSON
Field Definitions
Field
Description
timestamp
The exact time the error occurred.
error_class
Categorization of the error source. Possible values:
INTEGRATION_JIRA: Error related to ticket creation/updates
INTEGRATION_ALATION: Error related to catalog synchronization.
message
A concise, human-readable summary of the error.
exception_type
The underlying programmatic exception type.
stack_trace
Detailed technical information, including the call sequence.
📝 Example Usage
This example retrieves the 5 most recent errors from the prod_tenant.
Request
HTTP
Response (Abbreviated)
JSON
Last updated