Commit 59405b85 authored by Lucas Charles's avatar Lucas Charles Committed by Russell Dickenson

docs: Add SAST analyzer section on post analyzers

parent 3c7bbb8f
...@@ -116,6 +116,19 @@ variables: ...@@ -116,6 +116,19 @@ variables:
SAST_EXCLUDED_ANALYZERS: "eslint" SAST_EXCLUDED_ANALYZERS: "eslint"
``` ```
## Post Analyzers **(ULTIMATE)**
While analyzers are thin wrappers for executing scanners, post analyzers work to
enrich the data generated within our reports.
GitLab SAST post analyzers never modify report contents directly but work by
augmenting results with additional properties (such as CWEs), location tracking fields,
and a means of identifying false positives or insignificant findings.
The implementation of post analyzers is determined by feature availability tiers, where
simple data enrichment may occur within our free tier and most advanced processing is split
into separate binaries or pipeline jobs.
## Custom Analyzers ## Custom Analyzers
You can provide your own analyzers by You can provide your own analyzers by
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment