2024-03-13 02:27:15 +01:00
|
|
|
package templates
|
|
|
|
|
|
|
|
|
|
const (
|
2024-03-29 13:31:30 +05:30
|
|
|
SyntaxWarningStats = "syntax-warnings"
|
|
|
|
|
SyntaxErrorStats = "syntax-errors"
|
|
|
|
|
RuntimeWarningsStats = "runtime-warnings"
|
|
|
|
|
SkippedCodeTmplTamperedStats = "unsigned-warnings"
|
|
|
|
|
ExcludedHeadlessTmplStats = "headless-flag-missing-warnings"
|
|
|
|
|
TemplatesExcludedStats = "templates-executed"
|
|
|
|
|
ExcludedCodeTmplStats = "code-flag-missing-warnings"
|
|
|
|
|
ExludedDastTmplStats = "fuzz-flag-missing-warnings"
|
|
|
|
|
SkippedUnsignedStats = "skipped-unsigned-stats" // tracks loading of unsigned templates
|
2024-11-19 19:30:28 +03:00
|
|
|
ExcludedSelfContainedStats = "excluded-self-contained-stats"
|
|
|
|
|
ExcludedFileStats = "excluded-file-stats"
|
2024-03-29 13:31:30 +05:30
|
|
|
SkippedRequestSignatureStats = "skipped-request-signature-stats"
|
2024-03-13 02:27:15 +01:00
|
|
|
)
|