Syntax help is displayed in the UI for the QQL tokens that you enter from the Activity Logs > Reports tab. The following is a complete list of tokens for writing the QQL search queries. Click each token to learn more about it.
Examples
Show any results with this report name
reportName:Automation
Show any results that contain parts of this report name
reportName:"Automation"
Show any results that match exact value of report name "Automation"
reportName:`Automation`
Example
Show activity logs reports with FINISHED status
status:FINISHED
Examples
Show any results with this user name
userName:org_admin
Show any results that contain parts of this user name
userName:"org_admin"
Show any results that match exact value of the user name "org_admin"
userName:`org_admin`
The Qualys Query Language (QQL) supports the "and" operator. This is a logical or Boolean query operator. Use this operator in your queries to narrow down or broaden your search.
Use a boolean query to express your query using AND logic.
Find the report with this report name and status.
Example
reportName:"Automation" and status:"FINISHED"