The entity selector is a powerful instrument for specifying which entities you want to include to the scope of your Environment v2 API calls. It is used in several APIs, so you only have to learn the syntax once and then reuse it for multiple use cases.
You must specify one of following criteria:
Additionally you can provide the following criteria in any combination:
If you provide several criteria, only results matching all criteria are included in the response.
The total length of the entitySelector string is limited to 2,000 characters.
You can select only one type of entity per query.
The type of the entity you want to query.
You can fetch the list of available entity types with the GET all entity types call.
type("value")
EQUALS
The Dynatrace entity ID of the requested entity.
To specify several IDs, separate them by a comma (,
). All requested entities must be of the same type.
You can fetch the list of available entities with the GET entities list call.
entityId("id-1","id-2")
EQUALS
The name of the requested entity.
You can fetch the list of available entities with the GET entities list call.
entityName("name")
CONTAINS
Changes the value operator of the entity name criterion to BEGINS WITH
.
entityName.startsWith("name")
BEGINS WITH
Changes the value operator of the entity name criterion to EQUALS
.
entityName.equals("name")
EQUALS
Enables you to provide multiple values for the entity name criterion.
entityName.in("name1","name2")
EQUALS
By default entity names evaluation disregards the case. You can make the criterion stricter by using the caseSensitive
modification. It takes any entity name criterion as an argument (including those already modified with .startsWith
or .equals
modifiers) and evaluates values as case-sensitive.
caseSensitive(<entity name criterion>)
The attribute name—attribute value pair that the requested entity should have.
To fetch the list of available attributes, execute the GET entity type call and check the properties field. You can use attributes with values that can be represented by a string.
<attribute name>("attribute value")
EQUALS
Changes the operator of the entity attribute criterion to EXISTS
. In this case, the condition selects the entities that have the attribute, regardless of the attribute's value.
<attribute name>.exists()
EXISTS
The tag of the requested entities. Tags in [context]key:value
, key:value
, and value
formats are detected and parsed automatically. If a value-only tag has a colon (:
) in it, you must escape the colon with a backslash(\
). Otherwise, the tag will be parsed as a key:value
tag.
To specify several tags, separate them by a comma (,
). An entity with any of the specified tags is included to the response.
You can fetch the list of available tags with the GET custom tags and the GET auto-tags calls.
tag("[context]key1:value-1","key2:value-2","value-3")
EQUALS
The ID of the management zone to which the requested entities belong.
To specify several IDs, separate them by a comma (,
).
You can fetch the list of available management zones with the GET all management zones call.
mzId("123456789","987654321")
EQUALS
The name of the management zone to which the requested entities belong.
To specify several names, separate them by a comma (,
).
You can fetch the list of available management zones with the GET all management zones call.
mzName("name-1","name-2")
EQUALS
The health state of the requested entities. Possible values are HEALTHY
and UNHEALTHY
.
healthState("HEALTHY")
EQUALS
The timestamp (UTC milliseconds) when the entity was seen for the first time.
Syntax |
|
Multiple values | |
Value operator |
|
Case-sensitive value | n/a |
Relationships that the requested entity should have.
To fetch the list of available relationships, issue the GET entity type call and check the fromRelationships and toRelationships fields.
Syntax |
|
Multiple arguments | |
Note | Takes an entity selector as an attribute. |
You can use the not
modification to invert any criterion except for type. It takes a criterion as an argument and inverts the condition. For example, the not(tag("Infrastructure:Linux"))
criterion selects entities that do not have the Infrastructure:Linux tag.
You can use the negated criteria as part of complicated selectors, just like any other criteria.