Search Schedules

script.schedule.createdBy.usernamescript.schedule.createdBy.username

Use a text value ##### in quotes to search results with certain username who created the script.

Example:

Show results with this username:

script.schedule.createdBy.username:"adminuser"

script.schedule.idscript.schedule.id

Show all results matching the schedule ID of interest.

Example:

To view all results with a schedule ID:

script.schedule.id:`dbd7df07-2547-40a4-aef9-40e7299ea201`

script.schedule.scriptIdscript.schedule.scriptId

Use this token to search schedules with a particular script ID.

Example:

To view all results with a script ID:

script.schedule.scriptId:`255955`

script.schedule.namescript.schedule.name

Use quotes or backticks within values to find all results that have the specified word in their schedule name.

Example:

Show all results that contain parts of this schedule name

script.schedule.name: `PC With Schedule`

script.schedule.statusscript.schedule.status

Use a text value ##### to find all results with status (ACTIVE, INACTIVE).

Example:

Show results with "Active" status

script.schedule.status: ACTIVE

andand

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

Example

Show schedules that are active and created by John

script.schedule.status: ACTIVE and script.schedule.createdBy.username: John

oror

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

Example

Show schedules with one of these categories

script.schedule.createdBy.username: `admin` or script.schedule.status: `ACTIVE`

notnot

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

Example

Show script schedules that are not created by the following user

not script.schedule.createdBy.username: `adminuser`