Searching Jobs
Syntax help displayed in UI for Job tokens. A complete list of tokens for writing search queries is provided below.
Use quotes or backticks within values to help you find jobs with certain job name.
Example
Show jobs with this job name
job.name:Facebook
Show jobs that contains part of job name
job.name:"Facebook"
Show jobs that matches exact job name
job.name:`Facebook`
Use a integer value ##### to find a certain job with job id.
Example
Show findings with this job id
job.id:123
Use a text value ##### to find a certain job with job status (Enabled, In Progress, Completed, and Disabled).
Examples
Find job with this status
job.status: Completed
job.scheduleTypejob.scheduleType
Use a text value ##### to find a certain job with job schedule type (On-demand and Once).
Examples
Find job with this schedule type
job.scheduleType: On-demand
Use a integer value ##### to find a certain job with job QID.
Examples
Find job with this QID
job.qid: 610069
Use a text value ##### to find a certain job with job CVE ID.
Examples
Find job with this CVE ID
job.cveId: CVE-2019-11931
Use a date range or specific date to define when job were created.
Examples
Show jobs created within certain dates
job.created: [2018-01-01 ... 2018-01-10]
Show jobs created starting 2017-06-01, ending 3 months ago
job.created: [2017-06-01 ... now-3M]
Show jobs created starting 2 weeks ago, ending 1 second ago
job.created: [now-2w ... now-1s]
Show jobs created on a specific date
job.created:'2018-01-22'
Use a date range or specific date to define when jobs were sent.
Examples
Show jobs sent within certain dates
job.sent: [2018-01-01 ... 2018-01-10]
Show jobs sent starting 2017-06-01, ending 3 months ago
job.sent: [2017-06-01 ... now-3M]
Show jobs sent starting 2 weeks ago, ending 1 second ago
job.sent: [now-2w ... now-1s]
Show jobs sent on a specific date
job.sent:'2018-01-22'
Use quotes or backticks within values to help you find jobs with asset tag name the job applies to.
Examples
Show any job with this asset tag name
job.tag: sanjose
Show any job that contain components of asset tag name
job.tag: "sanjose Android"
Show any job that matches exact value
job.tag: `Android-sanjose`
job.assetStatusjob.assetStatus
Use a text value ##### to find a certain job with asset status (Pending, Success, and Skipped).
Examples
Find job with this asset status
job.assetStatus:`Success`
Supported Boolean Operators
The Qualys Query Language (QQL) supports the following logical or Boolean query operators. Use these operators in your queries to narrow down or broaden your search.
Use a boolean query to express your query using AND logic..
Example
job.name: "job1" and job.status: completed
Find job with this job name and job status.
Use a boolean query to express your query using NOT logic.
Example
not job.id: 123
Show jobs which are not with job ID 123.
Use a boolean query to express your query using OR logic.
Example
job.name: "job1" or job.id: 123
Show findings with one of these criteria.