You can use the search tokens available in the Reports tab and refine your search results. Click each token to learn more about it.
Example
Find reports with certain type and tag
report.type:"SCAN REPORT" AND tags.name: "Internal"
Example
Show reports that are not in running status
NOT report.status:COMPLETE
Example
Show findings with one of these id values
report.id:1234
OR report.id:3456
Use these search tokens to find reports.
Example
Find the report with the given ID
report.id:9725
Examples
Find reports that contain part of the given name.
report.name:"Test Report"
Find reports with the given name.
report.name:`Test Report`
Example
Find reports with the type CATALOG REPORT
report.type:"CATALOG REPORT"
Examples
Find reports in the COMPLETE status
report.status:"COMPLETE"
Find reports in the RUNNING status
report.status:"RUNNING"
Examples
Find reports that are in PDF'format
report.format:"PDF"
Find reports that are in CSV format
report.format:"CSV"
Examples
Find reports that were created in the past 6 months
report.created:[now-6M .. now]
Find reports that were created on a specified date
report.created:"2020-03-20"
Find reports that were created after a specified date
report.created >"2020-03-20"
Find reports created between March 2020 to Dec 2020
report.created:[2020-03-01 .. 2020-12-31]
report.owner.firstNamereport.owner.firstName
Example
Find reports with the owner's first name as Chandler
report.owner.firstName:"Chandler"
report.owner.lastNamereport.owner.lastName
Example
Find reports with owner's last name as Bing
report.owner.lastName:"Bing"
report.owner.usernamereport.owner.username
Example
Find reports with owner's username as quays_pp
report.owner.username:"quays_pp"
report.lastDownloadDatereport.lastDownloadDate
Examples
Find reports that were downloaded in the past 6 months
report.lastDownloadDate:[now-6M .. now]
Find reports that were downloaded on a specified date
report.lastDownloadDate:"2020-03-20"
Find reports that were downloaded after a specified date
report.lastDownloadDate >"2020-03-20"
Find reports downloaded between March 2020 to Dec 2020
report.lastDownloadDate:[2020-03-01 .. 2020-12-31]
reportTemplate.namereportTemplate.name
Use values within quotes or backticks to find reports that are generated using the given template name.
Examples
Find reports that are generated using the template containing part of the given name.
reportTemplate.name:"Test"
Find reports that are generated using the template with given name.
reportTemplate.name:`Test Template`
scheduleReport.namescheduleReport.name
Use values within quotes or backticks to find reports that are generated using the given report schedule name.
Examples
Find reports that are generated using the report schedule containing part of the given name.
reportReport.name:"Schedule WebApp"
Find reports that are generated using the report schedule with given name.
reportReport.name:`Schedule WebApp`