@backstage-community/plugin-dynatrace 10.13.1 → 10.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +15 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -93,6 +93,21 @@ metadata:
|
|
|
93
93
|
|
|
94
94
|
The `DYNATRACE_ENTITY_ID` can be found in Dynatrace by browsing to the entity (a service, synthetic, frontend, workload, etc.). It will be located in the browser address bar in the `id` parameter and has the format `ENTITY_TYPE-ENTITY_ID`, where `ENTITY_TYPE` will be one of `SERVICE`, `SYNTHETIC_TEST`, or other, and `ENTITY_ID` will be a string of characters containing uppercase letters and numbers.
|
|
95
95
|
|
|
96
|
+
###### Multiple Entity IDs
|
|
97
|
+
|
|
98
|
+
To monitor multiple entities, you can specify multiple entity IDs separated by commas:
|
|
99
|
+
|
|
100
|
+
```yaml
|
|
101
|
+
# catalog-info.yaml
|
|
102
|
+
# [...]
|
|
103
|
+
metadata:
|
|
104
|
+
annotations:
|
|
105
|
+
dynatrace.com/dynatrace-entity-id: DYNATRACE_ENTITY_ID_1, DYNATRACE_ENTITY_ID_2
|
|
106
|
+
# [...]
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
This allows you to aggregate problems from multiple Dynatrace entities into a single view. For more information on how entity IDs are handled, see the [Dynatrace Problems API documentation](https://docs.dynatrace.com/docs/discover-dynatrace/references/dynatrace-api/environment-api/problems-v2/problems/get-problems-list#parameters).
|
|
110
|
+
|
|
96
111
|
##### Viewing Recent Synthetics Results
|
|
97
112
|
|
|
98
113
|
To show recent results from a Synthetic Monitor, add the following annotation to `catalog-info.yaml`:
|