Home

Search Tokens for Reports

You can use the search tokens available in the Reports tab and refine your search results. Click each token to learn more about it.

Generic

andand

Use a boolean query to express your query using AND logic.

Example

Find reports with certain type and tag

report.type:"SCAN REPORT" AND tags.name: "Internal"

notnot

Use a boolean query to express your query using NOT logic.

Example

Show reports that are not in running status

NOT report.status:COMPLETE

oror

Use a boolean query to express your query using OR logic.

Example

Show findings with one of these id values

report.id:1234 OR report.id:3456

Reports Tokens

Use these search tokens to find reports.

report.idreport.id

Use an integer value to find the report with the specified ID.

Example

Find the report with the given ID

report.id:9725

report.namereport.name

Use values within quotes or backticks to find the report with the specified name.

Examples

Find reports that contain part of the given name.

report.name:"Test Report"

Find reports with the given name.

report.name:`Test Report`

report.typereport.type

Select the type to find reports with the selected type: WEB APPLICATION REPORT, SCAN REPORT, SCORECARD REPORT, CATALOG REPORT, DATALIST REPORT.

Example

Find reports with the type CATALOG REPORT

report.type:"CATALOG REPORT"

report.statusreport.status

Select the status to find reports with the selected status: COMPLETE, ERROR, or RUNNING.

Examples

Find reports in the COMPLETE status

report.status:"COMPLETE"

Find reports in the RUNNING status

report.status:"RUNNING"

report.formatreport.format

Select the format to find reports with the selected format: CSV, CSV2, ENCRYPTED PDF, HTML, HTML ZIPPED, PDF, PPT, or XML.

Examples

Find reports that are in PDF'format

report.format:"PDF"

Find reports that are in CSV format

report.format:"CSV"

report.createdreport.created

Use a date range or specific date to find reports that were created on the given date or date range.

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

Use values in quotes or backticks to find reports with the owner's first name.

Example

Find reports with the owner's first name as Chandler

report.owner.firstName:"Chandler"

report.owner.lastNamereport.owner.lastName

Use values in quotes or backticks to find reports with owner's last name.

Example

Find reports with owner's last name as Bing

report.owner.lastName:"Bing"

report.owner.usernamereport.owner.username

Use values within quotes or backticks to find reports with owner's username.

Example

Find reports with owner's username as quays_pp

report.owner.username:"quays_pp"

tags.nametags.name

Use values within quotes or backticks to find reports that are associated with the specified tag(s).

Examples

Find reports that have part of the tag named "Internal P1" associated with the reports.

tags.name:Internal P1

Find reports that have part of the tag named "Internal P1" or "Production" associated with the reports.

tags.name:["Dev Internal", "Production"]

Find reports that have the tag named `Target1` associated with the reports

tags.name:`Target1`

report.lastDownloadDatereport.lastDownloadDate

Use a date range or specific date to find reports that were downloaded on the given date or date range.

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`