Searching for Activity Logs Reports

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.

reportNamereportName

Use a text value to search for activity logs reports that have the specified word as their report name.

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`

statusstatus

Use a text value to search for activity logs reports list with the status that you enter. Supported statuses are NEW, FINISHED, and ERROR.

Example

Show activity logs reports with FINISHED status

status:FINISHED

userNameuserName

Use a text value to search the activity logs report for the user name you provide. Note that you must enter the exact user name. 

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`

 

Supported Boolean Operator

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.

andand

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"