TemplateErrorLogStats
Statistical summary of template error logs for monitoring and analysis.
Provides aggregated metrics about template processing errors including counts by error type, temporal boundaries, and overall system health indicators for proactive monitoring.
type TemplateErrorLogStats {
totalCount: Float!
renderErrorCount: Float!
customQueryErrorCount: Float!
oldestEntry: DateTime
newestEntry: DateTime
}
Fields
TemplateErrorLogStats.totalCount
● Float!
non-null scalar
Total count of all error log entries.
Complete number of template processing errors recorded in the system, providing an overall indicator of template system health and stability.
TemplateErrorLogStats.renderErrorCount
● Float!
non-null scalar
Count of template rendering errors.
Number of errors that occurred during template compilation or processing, including syntax errors, missing variables, and template engine failures.
TemplateErrorLogStats.customQueryErrorCount
● Float!
non-null scalar
Count of custom query execution errors.
Number of errors that occurred when template-specific data queries failed, including connection issues, invalid query syntax, and data access problems.
TemplateErrorLogStats.oldestEntry
● DateTime
scalar
Timestamp of the oldest recorded error.
Date and time of the earliest error log entry in the system, useful for understanding the historical scope of error data and system stability trends.
TemplateErrorLogStats.newestEntry
● DateTime
scalar
Timestamp of the most recent recorded error.
Date and time of the latest error log entry in the system, indicating the recency of template processing issues and current system status.
Returned By
templateErrorLogStats
query