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.
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"
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"
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.
Use an integer value to find the proxy records with the specified ID.
Example
Find proxy record with the given ID
proxy.id:9725
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`
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"
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"
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`