@backstage-community/plugin-newrelic-dashboard 0.16.0 → 0.16.1
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 +26 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -77,3 +77,29 @@ spec:
|
|
|
77
77
|
```
|
|
78
78
|
|
|
79
79
|
All set , you will be able to see the plugin in action!
|
|
80
|
+
|
|
81
|
+
## New Frontend System
|
|
82
|
+
|
|
83
|
+
### Setup
|
|
84
|
+
|
|
85
|
+
If you're using [feature discovery](https://backstage.io/docs/frontend-system/architecture/app/#feature-discovery), the plugin should be automatically discovered and enabled. Otherwise, you can manually enable the plugin by adding it to your app:
|
|
86
|
+
|
|
87
|
+
```tsx
|
|
88
|
+
// packages/app/src/App.tsx
|
|
89
|
+
import newrelicDashboardPlugin from '@backstage-community/plugin-newrelic-dashboard/alpha';
|
|
90
|
+
|
|
91
|
+
const app = createApp({
|
|
92
|
+
features: [
|
|
93
|
+
// ...
|
|
94
|
+
newrelicDashboardPlugin,
|
|
95
|
+
],
|
|
96
|
+
});
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
### Extensions
|
|
100
|
+
|
|
101
|
+
The following extensions are available in the plugin:
|
|
102
|
+
|
|
103
|
+
- `api:newrelic-dashboard`
|
|
104
|
+
- `entity-content:newrelic-dashboard/EntityNewRelicDashboardContent`
|
|
105
|
+
- `entity-card:newrelic-dashboard/EntityNewRelicDashboardCard`
|