Home

Search Tokens for Proxy

You can use the search tokens available in the Proxies 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 proxy records that are being used and with a certain tag

proxy.quickFilters:"IN_USE" AND tags.name:"Internal"

notnot

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

Example

Find proxy records that are not created by a user with the first name as Chandler

NOT proxy.createdBy.firstName:"Chandler"

oror

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

Example

Find proxy records with one of these id values

proxy.id:9725 OR proxy.id:9999

Proxies Tokens

Use these search tokens to find proxies.

proxy.idproxy.id

Use an integer value to find the proxy records with the specified ID.

Example

Find proxy record with the given ID

proxy.id:9725

proxy.nameproxy.name

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

Example

Find proxy records that contain part of the given name

proxy.name:"Test Proxy"

Find the proxy record with the given name

proxy.name:`Test Proxy`

proxy.createdproxy.created

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

Example

Find proxy records that were created in the past 6 months

proxy.created:[now-6M .. now]

Find proxy records that were created on a specified date

proxy.created:"2020-03-20"

Find proxy records that were created after a specified date

proxy.created >"2020-03-20"

Find proxy records created between March 2020 to Dec 2020

proxy.created:[2020-03-01 .. 2020-12-31]

proxy.createdBy.firstNameproxy.createdBy.firstName

Use values within quotes or backticks to find the proxy records created by the specified user’s first name.

Example

Find proxy records that are created by a user whose first name is Chandler

proxy.createdBy.firstName:"Chandler"

proxy.createdBy.lastNameproxy.createdBy.lastName

Use values within quotes or backticks to find the proxy records created by the specified user’s last name.

Example

Find proxy records that are created by a user whose last name is Bing

proxy.createdBy.lastName:"Bing"

proxy.createdBy.usernameproxy.createdBy.username

Use values within quotes or backticks to find the proxy records created by the specified user name.

Example

Find proxy records that are created by a user whose user name is quays_pp

proxy.createdBy.username:"quays_pp"

proxy.updatedproxy.updated

Use a date range or specific date to find proxy records that were updated on a specific date or date range.

Example

Find proxy records that were updated in the past 6 months

proxy.updated:[now-6M .. now]

Find proxy records that were updated on the specified date

proxy.updated:"2020-03-20"

Find proxy records that were updated after a specified date

proxy.updated >"2020-03-20"

Find records updated between March 2020 to Dec 2020

proxy.updated:[2020-03-01 .. 2020-12-31]

proxy.updatedBy.firstNameproxy.updatedBy.firstName

Use values within quotes or backticks to find the proxy records updated by the specified user’s first name.

Example

Find proxy records that are updated by a user whose first name is Chandler

proxy.updatedBy.firstName:"Chandler"

proxy.updatedBy.lastNameproxy.updatedBy.lastName

Use values within quotes or backticks to find the proxy records updated by the specified user’s last name.

Example

Find proxy records that are updated by a user whose last name is Bing

proxy.updatedBy.lastName: "Bing"

proxy.updatedBy.usernameproxy.updatedBy.username

Use values within quotes or backticks to find the proxy records updated by the specified user name.

Example

Find proxy records that are updated by a user whose user name is quays_pp

proxy.updatedBy.username:"quays_pp"

proxy.owner.firstNameproxy.owner.firstName

Use values within quotes or backticks to find the proxy records with the owner's first name.

Example

Find proxy records with the owner's first name as Chandler

proxy.owner.firstName:"Chandler"

proxy.owner.lastNameproxy.owner.lastName

Use values within quotes or backticks to find the proxy records with the owner's last name.

Example

Find proxy records with the owner's last name as Bing

proxy.owner.lastName:"Bing"

proxy.owner.usernameproxy.owner.username

Use values within quotes or backticks to find the proxy records with the owner's username.

Example

Find proxy records with the owner's last name as quays_pp

proxy.owner.username:"quays_pp"

tags.nametags.name

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

Example

Find a proxy record that has part of the tag named "Internal P1" associated with it.

tags.name:"Internal P1"

Find proxy records containing part of the tag named "Dev Internal" or "Production" associated with it

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

Find the proxy records which has the tag named Target1 associated with it

tags.name:`Target1`

proxy.quickFilterproxy.quickFilter

Select a  quick filter to find proxy records with the given quick filter value— MY_PROXIES, IN_USE, NOT_IN_USE

Example

Find proxy records that are used in an existing or scheduled scan

proxy.quickFilters:`IN_USE`