@backstage-community/plugin-dynatrace 10.13.1 → 10.15.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +15 -0
  3. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @backstage-community/plugin-dynatrace
2
2
 
3
+ ## 10.15.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 3f842b1: Backstage version bump to v1.47.2
8
+
9
+ ## 10.14.0
10
+
11
+ ### Minor Changes
12
+
13
+ - 6a80272: Updated documentation to reflect support for multiple Dynatrace entity IDs in the annotation
14
+
3
15
  ## 10.13.1
4
16
 
5
17
  ### Patch Changes
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`:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-dynatrace",
3
- "version": "10.13.1",
3
+ "version": "10.15.0",
4
4
  "backstage": {
5
5
  "role": "frontend-plugin",
6
6
  "pluginId": "dynatrace",
@@ -38,17 +38,17 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@backstage/catalog-model": "^1.7.6",
41
- "@backstage/core-components": "^0.18.4",
42
- "@backstage/core-plugin-api": "^1.12.1",
41
+ "@backstage/core-components": "^0.18.6",
42
+ "@backstage/core-plugin-api": "^1.12.2",
43
43
  "@material-ui/core": "^4.12.2",
44
44
  "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
45
45
  "react-use": "^17.2.4"
46
46
  },
47
47
  "devDependencies": {
48
- "@backstage/cli": "^0.35.1",
49
- "@backstage/core-app-api": "^1.19.3",
50
- "@backstage/dev-utils": "^1.1.18",
51
- "@backstage/plugin-catalog-react": "^1.21.4",
48
+ "@backstage/cli": "^0.35.3",
49
+ "@backstage/core-app-api": "^1.19.4",
50
+ "@backstage/dev-utils": "^1.1.19",
51
+ "@backstage/plugin-catalog-react": "^1.21.6",
52
52
  "@backstage/test-utils": "^1.7.14",
53
53
  "@testing-library/jest-dom": "^6.0.0",
54
54
  "@testing-library/react": "^15.0.0",
@@ -58,7 +58,7 @@
58
58
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
59
59
  },
60
60
  "peerDependencies": {
61
- "@backstage/plugin-catalog-react": "^1.21.4",
61
+ "@backstage/plugin-catalog-react": "^1.21.6",
62
62
  "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
63
63
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
64
64
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"