TemplateErrorLog
Template processing error log entry for debugging and monitoring.
Records detailed information about template processing failures including error context, stack traces, and diagnostic data for systematic debugging and system monitoring.
type TemplateErrorLog {
id: String!
stackTrace: String!
createdAt: DateTime!
eventInstance: String
topicName: String
errorType: TemplateErrorType!
templateId: String
errorMessage: String!
fieldName: String
}
Fields
TemplateErrorLog.id
● String!
non-null scalar
Unique identifier for the error log entry.
Unique UUID that can be used to reference this specific error occurrence for debugging, tracking, and correlation with other system events.
TemplateErrorLog.stackTrace
● String!
non-null scalar
Complete error stack trace for debugging.
Detailed stack trace showing the exact location and sequence of calls that led to the error, essential for developers to identify and fix template processing issues.
TemplateErrorLog.createdAt
● DateTime!
non-null scalar
Timestamp when the error occurred.
Precise date and time of the error occurrence, useful for chronological analysis, error pattern identification, and correlation with system events.
TemplateErrorLog.eventInstance
● String
scalar
Event data that triggered the error.
Serialized event instance data that was being processed when the error occurred, providing context for reproducing and debugging the issue.
TemplateErrorLog.topicName
● String
scalar
Message queue topic name for the event.
Name of the message queue topic that delivered the event, useful for identifying error patterns across different event sources and message flows.
TemplateErrorLog.errorType
● TemplateErrorType!
non-null enum
Classification of the error type.
Categorizes the error into specific types (render errors, custom query errors) for systematic debugging and enables focused analysis of particular error categories.
TemplateErrorLog.templateId
● String
scalar
Template identifier that caused the error.
Unique ID of the template that was being processed when the error occurred, enabling template-specific debugging and identification of problematic templates.
TemplateErrorLog.errorMessage
● String!
non-null scalar
Human-readable error message.
Clear description of what went wrong during template processing, providing immediate insight into the nature of the error for quick diagnosis.
TemplateErrorLog.fieldName
● String
scalar
Specific template field that caused the render error.
Name of the particular template field or variable that triggered the rendering failure, enabling precise identification of problematic template elements.
Returned By
templateErrorLog
query
Member Of
TemplateErrorLogResponse
object