We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using alert template macro (ex: {{QUERY_RESULT_ROWS}}, cf) in alert body, the result is HTML escaped and its JSON format is broken like this:
{{QUERY_RESULT_ROWS}}
[{'column': 1}]
When rendering alert template, mustache_render should be used, not mustache_render_escape.
mustache_render
mustache_render_escape
I guess this problem caused by #5996 (Version: 23.09.0)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue Summary
When using alert template macro (ex:
{{QUERY_RESULT_ROWS}}
, cf) in alert body, the result is HTML escaped and its JSON format is broken like this:Steps to Reproduce
When rendering alert template,
mustache_render
should be used, notmustache_render_escape
.Technical details:
I guess this problem caused by #5996 (Version: 23.09.0)
The text was updated successfully, but these errors were encountered: