@backstage-community/plugin-newrelic-dashboard 0.20.0 → 0.21.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 +12 -0
- package/dist/alpha.d.ts +15 -9
- package/dist/components/NewRelicDashboard/DashboardSnapshotList/DashboardSnapshot.esm.js +1 -4
- package/dist/components/NewRelicDashboard/DashboardSnapshotList/DashboardSnapshot.esm.js.map +1 -1
- package/dist/queries/getDashboardSnapshotQuery.esm.js +1 -1
- package/dist/queries/getDashboardSnapshotQuery.esm.js.map +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage-community/plugin-newrelic-dashboard
|
|
2
2
|
|
|
3
|
+
## 0.21.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 637b38a: Fixed an issue causing dashboards not to display
|
|
8
|
+
|
|
9
|
+
## 0.21.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- 806a57f: Backstage version bump to v1.48.2
|
|
14
|
+
|
|
3
15
|
## 0.20.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import * as _backstage_plugin_catalog_react_alpha from '@backstage/plugin-catalog-react/alpha';
|
|
2
3
|
import * as _backstage_catalog_model from '@backstage/catalog-model';
|
|
3
4
|
import * as react from 'react';
|
|
4
|
-
import * as
|
|
5
|
+
import * as _backstage_filter_predicates from '@backstage/filter-predicates';
|
|
5
6
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
6
7
|
|
|
7
8
|
/** @alpha */
|
|
@@ -21,12 +22,12 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
21
22
|
kind: "entity-card";
|
|
22
23
|
name: "EntityNewRelicDashboardCard";
|
|
23
24
|
config: {
|
|
24
|
-
filter:
|
|
25
|
-
type: "content" | "
|
|
25
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
26
|
+
type: "content" | "info" | undefined;
|
|
26
27
|
};
|
|
27
28
|
configInput: {
|
|
28
|
-
filter?:
|
|
29
|
-
type?: "content" | "
|
|
29
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
30
|
+
type?: "content" | "info" | undefined;
|
|
30
31
|
};
|
|
31
32
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<(entity: _backstage_catalog_model.Entity) => boolean, "catalog.entity-filter-function", {
|
|
32
33
|
optional: true;
|
|
@@ -38,7 +39,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
38
39
|
inputs: {};
|
|
39
40
|
params: {
|
|
40
41
|
loader: () => Promise<JSX.Element>;
|
|
41
|
-
filter?:
|
|
42
|
+
filter?: _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean) | undefined;
|
|
42
43
|
type?: _backstage_plugin_catalog_react_alpha.EntityCardType | undefined;
|
|
43
44
|
};
|
|
44
45
|
}>;
|
|
@@ -48,14 +49,16 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
48
49
|
config: {
|
|
49
50
|
path: string | undefined;
|
|
50
51
|
title: string | undefined;
|
|
51
|
-
filter:
|
|
52
|
+
filter: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
52
53
|
group: string | false | undefined;
|
|
54
|
+
icon: string | undefined;
|
|
53
55
|
};
|
|
54
56
|
configInput: {
|
|
55
|
-
filter?:
|
|
57
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
56
58
|
title?: string | undefined;
|
|
57
59
|
path?: string | undefined;
|
|
58
60
|
group?: string | false | undefined;
|
|
61
|
+
icon?: string | undefined;
|
|
59
62
|
};
|
|
60
63
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
61
64
|
optional: true;
|
|
@@ -65,6 +68,8 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
65
68
|
optional: true;
|
|
66
69
|
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
|
|
67
70
|
optional: true;
|
|
71
|
+
}> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
|
|
72
|
+
optional: true;
|
|
68
73
|
}>;
|
|
69
74
|
inputs: {};
|
|
70
75
|
params: {
|
|
@@ -74,9 +79,10 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
74
79
|
title: string;
|
|
75
80
|
defaultGroup?: [Error: "Use the 'group' param instead"] | undefined;
|
|
76
81
|
group?: (string & {}) | "operation" | "development" | "deployment" | "overview" | "documentation" | "observability" | undefined;
|
|
82
|
+
icon?: string | react.ReactElement<any, string | react.JSXElementConstructor<any>> | undefined;
|
|
77
83
|
loader: () => Promise<JSX.Element>;
|
|
78
84
|
routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
|
|
79
|
-
filter?:
|
|
85
|
+
filter?: _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean) | undefined;
|
|
80
86
|
};
|
|
81
87
|
}>;
|
|
82
88
|
}>;
|
|
@@ -48,10 +48,7 @@ const DashboardSnapshot = (props) => {
|
|
|
48
48
|
if (error) {
|
|
49
49
|
return /* @__PURE__ */ jsx(ErrorPanel, { title: error.name, defaultExpanded: true, error });
|
|
50
50
|
}
|
|
51
|
-
const url = value?.getDashboardSnapshot?.data?.dashboardCreateSnapshotUrl
|
|
52
|
-
/\pdf$/i,
|
|
53
|
-
"png"
|
|
54
|
-
);
|
|
51
|
+
const url = value?.getDashboardSnapshot?.data?.dashboardCreateSnapshotUrl;
|
|
55
52
|
return /* @__PURE__ */ jsx(
|
|
56
53
|
InfoCard,
|
|
57
54
|
{
|
package/dist/components/NewRelicDashboard/DashboardSnapshotList/DashboardSnapshot.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DashboardSnapshot.esm.js","sources":["../../../../src/components/NewRelicDashboard/DashboardSnapshotList/DashboardSnapshot.tsx"],"sourcesContent":["/*\n * Copyright 2021 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport Box from '@material-ui/core/Box';\nimport makeStyles from '@material-ui/core/styles/makeStyles';\nimport MenuItem from '@material-ui/core/MenuItem';\nimport Select from '@material-ui/core/Select';\nimport { useApi, storageApiRef } from '@backstage/core-plugin-api';\nimport useAsync from 'react-use/esm/useAsync';\nimport {\n InfoCard,\n Progress,\n ErrorPanel,\n Link,\n} from '@backstage/core-components';\nimport { newRelicDashboardApiRef } from '../../../api';\nimport { DashboardSnapshotSummary } from '../../../api/NewRelicDashboardApi';\nimport useObservable from 'react-use/esm/useObservable';\n\nconst useStyles = makeStyles(\n theme => ({\n cardSelect: {\n margin: theme.spacing(2, 1, 0, 0),\n },\n img: {\n width: '100%',\n height: 'auto',\n border: `solid 1px ${theme.palette.common.black}`,\n },\n }),\n { name: 'BackstageNewRelicDashboardSnapshot' },\n);\n\n/**\n * @public\n */\nexport const DashboardSnapshot = (props: {\n guid: string;\n name: string;\n permalink: string;\n}) => {\n const classes = useStyles();\n const { guid, name, permalink } = props;\n const newRelicDashboardAPI = useApi(newRelicDashboardApiRef);\n const storageApi = useApi(storageApiRef).forBucket('newrelic-dashboard');\n const setStorageValue = (value: number) => {\n storageApi.set(guid, value);\n };\n const storageSnapshot = useObservable(\n storageApi.observe$<number>(guid),\n storageApi.snapshot(guid),\n );\n\n const { value, loading, error } = useAsync(async (): Promise<\n DashboardSnapshotSummary | undefined\n > => {\n const dashboardObject: Promise<DashboardSnapshotSummary | undefined> =\n newRelicDashboardAPI.getDashboardSnapshot(\n guid,\n storageSnapshot.value || 2592000000,\n );\n return dashboardObject;\n }, [guid, storageSnapshot.value]);\n\n if (loading) {\n return <Progress />;\n }\n if (error) {\n return <ErrorPanel title={error.name} defaultExpanded error={error} />;\n }\n\n const url
|
|
1
|
+
{"version":3,"file":"DashboardSnapshot.esm.js","sources":["../../../../src/components/NewRelicDashboard/DashboardSnapshotList/DashboardSnapshot.tsx"],"sourcesContent":["/*\n * Copyright 2021 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport Box from '@material-ui/core/Box';\nimport makeStyles from '@material-ui/core/styles/makeStyles';\nimport MenuItem from '@material-ui/core/MenuItem';\nimport Select from '@material-ui/core/Select';\nimport { useApi, storageApiRef } from '@backstage/core-plugin-api';\nimport useAsync from 'react-use/esm/useAsync';\nimport {\n InfoCard,\n Progress,\n ErrorPanel,\n Link,\n} from '@backstage/core-components';\nimport { newRelicDashboardApiRef } from '../../../api';\nimport { DashboardSnapshotSummary } from '../../../api/NewRelicDashboardApi';\nimport useObservable from 'react-use/esm/useObservable';\n\nconst useStyles = makeStyles(\n theme => ({\n cardSelect: {\n margin: theme.spacing(2, 1, 0, 0),\n },\n img: {\n width: '100%',\n height: 'auto',\n border: `solid 1px ${theme.palette.common.black}`,\n },\n }),\n { name: 'BackstageNewRelicDashboardSnapshot' },\n);\n\n/**\n * @public\n */\nexport const DashboardSnapshot = (props: {\n guid: string;\n name: string;\n permalink: string;\n}) => {\n const classes = useStyles();\n const { guid, name, permalink } = props;\n const newRelicDashboardAPI = useApi(newRelicDashboardApiRef);\n const storageApi = useApi(storageApiRef).forBucket('newrelic-dashboard');\n const setStorageValue = (value: number) => {\n storageApi.set(guid, value);\n };\n const storageSnapshot = useObservable(\n storageApi.observe$<number>(guid),\n storageApi.snapshot(guid),\n );\n\n const { value, loading, error } = useAsync(async (): Promise<\n DashboardSnapshotSummary | undefined\n > => {\n const dashboardObject: Promise<DashboardSnapshotSummary | undefined> =\n newRelicDashboardAPI.getDashboardSnapshot(\n guid,\n storageSnapshot.value || 2592000000,\n );\n return dashboardObject;\n }, [guid, storageSnapshot.value]);\n\n if (loading) {\n return <Progress />;\n }\n if (error) {\n return <ErrorPanel title={error.name} defaultExpanded error={error} />;\n }\n\n const url = value?.getDashboardSnapshot?.data?.dashboardCreateSnapshotUrl;\n\n return (\n <InfoCard\n variant=\"gridItem\"\n title={name}\n action={\n <div>\n <Select\n className={classes.cardSelect}\n defaultValue={2592000000}\n value={storageSnapshot.value}\n onChange={event => {\n setStorageValue(Number(event.target.value));\n }}\n >\n <MenuItem value={3600000}>1 Hour</MenuItem>\n <MenuItem value={43200000}>12 Hours</MenuItem>\n <MenuItem value={86400000}>1 Day</MenuItem>\n <MenuItem value={259200000}>3 Days</MenuItem>\n <MenuItem value={604800000}>1 Week</MenuItem>\n <MenuItem value={2592000000}>1 Month</MenuItem>\n </Select>\n </div>\n }\n >\n <Box display=\"flex\">\n <Box flexGrow=\"1\">\n <Link to={permalink}>\n {url ? (\n <img\n alt={`${name} Dashboard`}\n className={classes.img}\n src={url}\n />\n ) : (\n 'Dashboard loading... , click here to open if it did not render correctly'\n )}\n </Link>\n </Box>\n </Box>\n </InfoCard>\n );\n};\n"],"names":["value"],"mappings":"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"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const getDashboardSnapshotQuery = "mutation($guid: EntityGuid! , ,$duration: Milliseconds) {\n dashboardCreateSnapshotUrl(guid: $guid , params: {timeWindow: {duration: $duration}})\n}";
|
|
1
|
+
const getDashboardSnapshotQuery = "mutation($guid: EntityGuid! , ,$duration: Milliseconds) {\n dashboardCreateSnapshotUrl(guid: $guid , params: {timeWindow: {duration: $duration}, format: PNG })\n}";
|
|
2
2
|
|
|
3
3
|
export { getDashboardSnapshotQuery };
|
|
4
4
|
//# sourceMappingURL=getDashboardSnapshotQuery.esm.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDashboardSnapshotQuery.esm.js","sources":["../../src/queries/getDashboardSnapshotQuery.ts"],"sourcesContent":["/*\n * Copyright 2021 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport const getDashboardSnapshotQuery =\n 'mutation($guid: EntityGuid! , ,$duration: Milliseconds) {\\n dashboardCreateSnapshotUrl(guid: $guid , params: {timeWindow: {duration: $duration}})\\n}';\n"],"names":[],"mappings":"AAeO,MAAM,yBACX,GAAA;;;;"}
|
|
1
|
+
{"version":3,"file":"getDashboardSnapshotQuery.esm.js","sources":["../../src/queries/getDashboardSnapshotQuery.ts"],"sourcesContent":["/*\n * Copyright 2021 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport const getDashboardSnapshotQuery =\n 'mutation($guid: EntityGuid! , ,$duration: Milliseconds) {\\n dashboardCreateSnapshotUrl(guid: $guid , params: {timeWindow: {duration: $duration}, format: PNG })\\n}';\n"],"names":[],"mappings":"AAeO,MAAM,yBACX,GAAA;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-newrelic-dashboard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.1",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "newrelic-dashboard",
|
|
@@ -62,21 +62,21 @@
|
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@backstage/catalog-model": "^1.7.6",
|
|
65
|
-
"@backstage/core-compat-api": "^0.5.
|
|
66
|
-
"@backstage/core-components": "^0.18.
|
|
67
|
-
"@backstage/core-plugin-api": "^1.12.
|
|
65
|
+
"@backstage/core-compat-api": "^0.5.8",
|
|
66
|
+
"@backstage/core-components": "^0.18.7",
|
|
67
|
+
"@backstage/core-plugin-api": "^1.12.3",
|
|
68
68
|
"@backstage/errors": "^1.2.7",
|
|
69
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
70
|
-
"@backstage/plugin-catalog-react": "^
|
|
69
|
+
"@backstage/frontend-plugin-api": "^0.14.1",
|
|
70
|
+
"@backstage/plugin-catalog-react": "^2.0.0",
|
|
71
71
|
"@material-ui/core": "^4.12.2",
|
|
72
72
|
"@material-ui/icons": "^4.9.1",
|
|
73
73
|
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
74
74
|
"react-use": "^17.2.4"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@backstage/cli": "^0.35.
|
|
78
|
-
"@backstage/dev-utils": "^1.1.
|
|
79
|
-
"@backstage/test-utils": "^1.7.
|
|
77
|
+
"@backstage/cli": "^0.35.4",
|
|
78
|
+
"@backstage/dev-utils": "^1.1.20",
|
|
79
|
+
"@backstage/test-utils": "^1.7.15",
|
|
80
80
|
"@testing-library/dom": "^10.0.0",
|
|
81
81
|
"@testing-library/jest-dom": "^6.0.0",
|
|
82
82
|
"@testing-library/react": "^15.0.0",
|