@perses-dev/tempo-plugin 0.53.1 → 0.53.2
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/__mf/js/Tempo.2d6235bb.js +5 -0
- package/__mf/js/async/3391.41e6de04.js +73 -0
- package/__mf/js/async/4368.2c879fe0.js +2 -0
- package/__mf/js/async/4421.838809cd.js +1 -0
- package/__mf/js/async/{2913.f73e6635.js → 6286.6e0d8da6.js} +5 -5
- package/__mf/js/async/6714.11904981.js +2 -0
- package/__mf/js/async/{__federation_expose_TempoDatasource.fa3e24f9.js → __federation_expose_TempoDatasource.a20f4483.js} +2 -2
- package/__mf/js/async/__federation_expose_TempoExplorer.bc71c3ab.js +2 -0
- package/__mf/js/async/__federation_expose_TempoTraceQuery.3098cb27.js +1 -0
- package/__mf/js/main.a9e2b86c.js +5 -0
- package/lib/cjs/explore/TempoExplorer.js +3 -0
- package/lib/explore/TempoExplorer.d.ts.map +1 -1
- package/lib/explore/TempoExplorer.js +3 -0
- package/lib/explore/TempoExplorer.js.map +1 -1
- package/mf-manifest.json +25 -25
- package/mf-stats.json +25 -25
- package/package.json +7 -7
- package/__mf/js/Tempo.90ce0e5c.js +0 -5
- package/__mf/js/async/1101.0dae4724.js +0 -73
- package/__mf/js/async/4368.bd6fd0e7.js +0 -2
- package/__mf/js/async/4421.14238d27.js +0 -1
- package/__mf/js/async/5876.47f40562.js +0 -2
- package/__mf/js/async/__federation_expose_TempoExplorer.9949b25e.js +0 -2
- package/__mf/js/async/__federation_expose_TempoTraceQuery.e8aebf8e.js +0 -1
- package/__mf/js/main.ad29f832.js +0 -5
- /package/__mf/js/async/{1101.0dae4724.js.LICENSE.txt → 3391.41e6de04.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{4368.bd6fd0e7.js.LICENSE.txt → 4368.2c879fe0.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{2913.f73e6635.js.LICENSE.txt → 6286.6e0d8da6.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{5876.47f40562.js.LICENSE.txt → 6714.11904981.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{__federation_expose_TempoDatasource.fa3e24f9.js.LICENSE.txt → __federation_expose_TempoDatasource.a20f4483.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{__federation_expose_TempoExplorer.9949b25e.js.LICENSE.txt → __federation_expose_TempoExplorer.bc71c3ab.js.LICENSE.txt} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/explore/TempoExplorer.tsx"],"sourcesContent":["// Copyright 2024 The Perses Authors\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\nimport { Box, Stack } from '@mui/material';\nimport { ErrorAlert, ErrorBoundary, LoadingOverlay, NoDataOverlay } from '@perses-dev/components';\nimport { QueryDefinition, isValidTraceId } from '@perses-dev/core';\nimport { Panel } from '@perses-dev/dashboards';\nimport { useExplorerManagerContext } from '@perses-dev/explore';\nimport { DataQueriesProvider, MultiQueryEditor, useDataQueries } from '@perses-dev/plugin-system';\nimport { ReactElement } from 'react';\nimport { TempoTraceQuerySpec } from '../model';\nimport { linkToSpan, linkToTrace } from './links';\n\ninterface TracesExplorerQueryParams {\n queries?: QueryDefinition[];\n spanId?: string;\n}\n\ninterface SearchResultsPanelProps {\n queries: QueryDefinition[];\n}\n\nfunction SearchResultsPanel({ queries }: SearchResultsPanelProps): ReactElement {\n const { isFetching, isLoading, queryResults } = useDataQueries('TraceQuery');\n\n // no query executed, show empty panel\n if (queryResults.length === 0) {\n return <></>;\n }\n\n if (isLoading || isFetching) {\n return <LoadingOverlay />;\n }\n\n const queryError = queryResults.find((d) => d.error);\n if (queryError) {\n throw queryError.error;\n }\n\n const tracesFound = queryResults.some((traceData) => (traceData.data?.searchResult ?? []).length > 0);\n if (!tracesFound) {\n return <NoDataOverlay resource=\"traces\" />;\n }\n\n return (\n <Stack sx={{ height: '100%' }} gap={2}>\n <Box sx={{ height: '35%', flexShrink: 0 }}>\n <Panel\n panelOptions={{\n hideHeader: true,\n }}\n definition={{\n kind: 'Panel',\n spec: {\n queries,\n display: { name: '' },\n plugin: {\n kind: 'ScatterChart',\n spec: {\n link: linkToTrace,\n },\n },\n },\n }}\n />\n </Box>\n <Panel\n sx={{ flexGrow: 1 }}\n panelOptions={{\n hideHeader: true,\n }}\n definition={{\n kind: 'Panel',\n spec: {\n queries,\n display: { name: '' },\n plugin: {\n kind: 'TraceTable',\n spec: {\n links: {\n trace: linkToTrace,\n },\n },\n },\n },\n }}\n />\n </Stack>\n );\n}\n\ninterface TracingGanttChartPanelProps {\n queries: QueryDefinition[];\n selectedSpanId?: string;\n}\n\nfunction TracingGanttChartPanel(props: TracingGanttChartPanelProps): ReactElement {\n const { queries, selectedSpanId } = props;\n const firstQuery = (queries[0]?.spec.plugin.spec as TempoTraceQuerySpec | undefined)?.query;\n\n return (\n <Panel\n definition={{\n kind: 'Panel',\n spec: {\n queries,\n display: { name: `Trace ${firstQuery}` },\n plugin: {\n kind: 'TracingGanttChart',\n spec: {\n links: {\n trace: linkToTrace,\n span: linkToSpan,\n },\n selectedSpanId,\n },\n },\n },\n }}\n />\n );\n}\n\nexport function TempoExplorer(): ReactElement {\n const {\n data: { queries = [], spanId: selectedSpanId },\n setData,\n } = useExplorerManagerContext<TracesExplorerQueryParams>();\n\n // map TraceQueryDefinition to Definition<UnknownSpec>\n const definitions = queries.length\n ? queries.map((query: QueryDefinition) => {\n return {\n kind: query.spec.plugin.kind,\n spec: query.spec.plugin.spec,\n };\n })\n : [];\n\n const firstQuery = (queries[0]?.spec.plugin.spec as TempoTraceQuerySpec | undefined)?.query;\n const isSingleTrace = isValidTraceId(firstQuery ?? '');\n\n return (\n <Stack gap={2} sx={{ width: '100%' }}>\n <MultiQueryEditor\n queryTypes={['TraceQuery']}\n onChange={(newQueries) => setData({ queries: newQueries })}\n queries={queries}\n />\n\n <ErrorBoundary FallbackComponent={ErrorAlert} resetKeys={[queries]}>\n <DataQueriesProvider definitions={definitions}>\n <Box height={700}>\n {isSingleTrace ? (\n <TracingGanttChartPanel queries={queries} selectedSpanId={selectedSpanId} />\n ) : (\n <SearchResultsPanel queries={queries} />\n )}\n </Box>\n </DataQueriesProvider>\n </ErrorBoundary>\n </Stack>\n );\n}\n"],"names":["Box","Stack","ErrorAlert","ErrorBoundary","LoadingOverlay","NoDataOverlay","isValidTraceId","Panel","useExplorerManagerContext","DataQueriesProvider","MultiQueryEditor","useDataQueries","linkToSpan","linkToTrace","SearchResultsPanel","queries","isFetching","isLoading","queryResults","length","queryError","find","d","error","tracesFound","some","traceData","data","searchResult","resource","sx","height","gap","flexShrink","panelOptions","hideHeader","definition","kind","spec","display","name","plugin","link","flexGrow","links","trace","TracingGanttChartPanel","props","selectedSpanId","firstQuery","query","span","TempoExplorer","spanId","setData","definitions","map","isSingleTrace","width","queryTypes","onChange","newQueries","FallbackComponent","resetKeys"],"mappings":"AAAA,oCAAoC;AACpC,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,6CAA6C;AAC7C,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;AAEjC,SAASA,GAAG,EAAEC,KAAK,QAAQ,gBAAgB;AAC3C,SAASC,UAAU,EAAEC,aAAa,EAAEC,cAAc,EAAEC,aAAa,QAAQ,yBAAyB;AAClG,SAA0BC,cAAc,QAAQ,mBAAmB;AACnE,SAASC,KAAK,QAAQ,yBAAyB;AAC/C,SAASC,yBAAyB,QAAQ,sBAAsB;AAChE,SAASC,mBAAmB,EAAEC,gBAAgB,EAAEC,cAAc,QAAQ,4BAA4B;AAGlG,SAASC,UAAU,EAAEC,WAAW,QAAQ,UAAU;AAWlD,SAASC,mBAAmB,EAAEC,OAAO,EAA2B;IAC9D,MAAM,EAAEC,UAAU,EAAEC,SAAS,EAAEC,YAAY,EAAE,GAAGP,eAAe;IAE/D,sCAAsC;IACtC,IAAIO,aAAaC,MAAM,KAAK,GAAG;QAC7B,qBAAO;IACT;IAEA,IAAIF,aAAaD,YAAY;QAC3B,qBAAO,KAACZ;IACV;IAEA,MAAMgB,aAAaF,aAAaG,IAAI,CAAC,CAACC,IAAMA,EAAEC,KAAK;IACnD,IAAIH,YAAY;QACd,MAAMA,WAAWG,KAAK;IACxB;IAEA,MAAMC,cAAcN,aAAaO,IAAI,CAAC,CAACC,YAAc,AAACA,CAAAA,UAAUC,IAAI,EAAEC,gBAAgB,EAAE,AAAD,EAAGT,MAAM,GAAG;IACnG,IAAI,CAACK,aAAa;QAChB,qBAAO,KAACnB;YAAcwB,UAAS;;IACjC;IAEA,qBACE,MAAC5B;QAAM6B,IAAI;YAAEC,QAAQ;QAAO;QAAGC,KAAK;;0BAClC,KAAChC;gBAAI8B,IAAI;oBAAEC,QAAQ;oBAAOE,YAAY;gBAAE;0BACtC,cAAA,KAAC1B;oBACC2B,cAAc;wBACZC,YAAY;oBACd;oBACAC,YAAY;wBACVC,MAAM;wBACNC,MAAM;4BACJvB;4BACAwB,SAAS;gCAAEC,MAAM;4BAAG;4BACpBC,QAAQ;gCACNJ,MAAM;gCACNC,MAAM;oCACJI,MAAM7B;gCACR;4BACF;wBACF;oBACF;;;0BAGJ,KAACN;gBACCuB,IAAI;oBAAEa,UAAU;gBAAE;gBAClBT,cAAc;oBACZC,YAAY;gBACd;gBACAC,YAAY;oBACVC,MAAM;oBACNC,MAAM;wBACJvB;wBACAwB,SAAS;4BAAEC,MAAM;wBAAG;wBACpBC,QAAQ;4BACNJ,MAAM;4BACNC,MAAM;gCACJM,OAAO;oCACLC,OAAOhC;gCACT;4BACF;wBACF;oBACF;gBACF;;;;AAIR;AAOA,SAASiC,uBAAuBC,KAAkC;IAChE,MAAM,EAAEhC,OAAO,EAAEiC,cAAc,EAAE,GAAGD;IACpC,MAAME,aAAclC,OAAO,CAAC,EAAE,EAAEuB,KAAKG,OAAOH,MAA0CY;IAEtF,qBACE,KAAC3C;
|
|
1
|
+
{"version":3,"sources":["../../../src/explore/TempoExplorer.tsx"],"sourcesContent":["// Copyright 2024 The Perses Authors\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\nimport { Box, Stack } from '@mui/material';\nimport { ErrorAlert, ErrorBoundary, LoadingOverlay, NoDataOverlay } from '@perses-dev/components';\nimport { QueryDefinition, isValidTraceId } from '@perses-dev/core';\nimport { Panel } from '@perses-dev/dashboards';\nimport { useExplorerManagerContext } from '@perses-dev/explore';\nimport { DataQueriesProvider, MultiQueryEditor, useDataQueries } from '@perses-dev/plugin-system';\nimport { ReactElement } from 'react';\nimport { TempoTraceQuerySpec } from '../model';\nimport { linkToSpan, linkToTrace } from './links';\n\ninterface TracesExplorerQueryParams {\n queries?: QueryDefinition[];\n spanId?: string;\n}\n\ninterface SearchResultsPanelProps {\n queries: QueryDefinition[];\n}\n\nfunction SearchResultsPanel({ queries }: SearchResultsPanelProps): ReactElement {\n const { isFetching, isLoading, queryResults } = useDataQueries('TraceQuery');\n\n // no query executed, show empty panel\n if (queryResults.length === 0) {\n return <></>;\n }\n\n if (isLoading || isFetching) {\n return <LoadingOverlay />;\n }\n\n const queryError = queryResults.find((d) => d.error);\n if (queryError) {\n throw queryError.error;\n }\n\n const tracesFound = queryResults.some((traceData) => (traceData.data?.searchResult ?? []).length > 0);\n if (!tracesFound) {\n return <NoDataOverlay resource=\"traces\" />;\n }\n\n return (\n <Stack sx={{ height: '100%' }} gap={2}>\n <Box sx={{ height: '35%', flexShrink: 0 }}>\n <Panel\n panelOptions={{\n hideHeader: true,\n }}\n definition={{\n kind: 'Panel',\n spec: {\n queries,\n display: { name: '' },\n plugin: {\n kind: 'ScatterChart',\n spec: {\n link: linkToTrace,\n },\n },\n },\n }}\n />\n </Box>\n <Panel\n sx={{ flexGrow: 1 }}\n panelOptions={{\n hideHeader: true,\n }}\n definition={{\n kind: 'Panel',\n spec: {\n queries,\n display: { name: '' },\n plugin: {\n kind: 'TraceTable',\n spec: {\n links: {\n trace: linkToTrace,\n },\n },\n },\n },\n }}\n />\n </Stack>\n );\n}\n\ninterface TracingGanttChartPanelProps {\n queries: QueryDefinition[];\n selectedSpanId?: string;\n}\n\nfunction TracingGanttChartPanel(props: TracingGanttChartPanelProps): ReactElement {\n const { queries, selectedSpanId } = props;\n const firstQuery = (queries[0]?.spec.plugin.spec as TempoTraceQuerySpec | undefined)?.query;\n\n return (\n <Panel\n panelOptions={{ showIcons: 'always' }}\n definition={{\n kind: 'Panel',\n spec: {\n queries,\n display: { name: `Trace ${firstQuery}` },\n plugin: {\n kind: 'TracingGanttChart',\n spec: {\n links: {\n trace: linkToTrace,\n span: linkToSpan,\n },\n selectedSpanId,\n },\n },\n },\n }}\n />\n );\n}\n\nexport function TempoExplorer(): ReactElement {\n const {\n data: { queries = [], spanId: selectedSpanId },\n setData,\n } = useExplorerManagerContext<TracesExplorerQueryParams>();\n\n // map TraceQueryDefinition to Definition<UnknownSpec>\n const definitions = queries.length\n ? queries.map((query: QueryDefinition) => {\n return {\n kind: query.spec.plugin.kind,\n spec: query.spec.plugin.spec,\n };\n })\n : [];\n\n const firstQuery = (queries[0]?.spec.plugin.spec as TempoTraceQuerySpec | undefined)?.query;\n const isSingleTrace = isValidTraceId(firstQuery ?? '');\n\n return (\n <Stack gap={2} sx={{ width: '100%' }}>\n <MultiQueryEditor\n queryTypes={['TraceQuery']}\n onChange={(newQueries) => setData({ queries: newQueries })}\n queries={queries}\n />\n\n <ErrorBoundary FallbackComponent={ErrorAlert} resetKeys={[queries]}>\n <DataQueriesProvider definitions={definitions}>\n <Box height={700}>\n {isSingleTrace ? (\n <TracingGanttChartPanel queries={queries} selectedSpanId={selectedSpanId} />\n ) : (\n <SearchResultsPanel queries={queries} />\n )}\n </Box>\n </DataQueriesProvider>\n </ErrorBoundary>\n </Stack>\n );\n}\n"],"names":["Box","Stack","ErrorAlert","ErrorBoundary","LoadingOverlay","NoDataOverlay","isValidTraceId","Panel","useExplorerManagerContext","DataQueriesProvider","MultiQueryEditor","useDataQueries","linkToSpan","linkToTrace","SearchResultsPanel","queries","isFetching","isLoading","queryResults","length","queryError","find","d","error","tracesFound","some","traceData","data","searchResult","resource","sx","height","gap","flexShrink","panelOptions","hideHeader","definition","kind","spec","display","name","plugin","link","flexGrow","links","trace","TracingGanttChartPanel","props","selectedSpanId","firstQuery","query","showIcons","span","TempoExplorer","spanId","setData","definitions","map","isSingleTrace","width","queryTypes","onChange","newQueries","FallbackComponent","resetKeys"],"mappings":"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"}
|
package/mf-manifest.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
"name": "Tempo",
|
|
6
6
|
"type": "app",
|
|
7
7
|
"buildInfo": {
|
|
8
|
-
"buildVersion": "0.53.
|
|
8
|
+
"buildVersion": "0.53.2",
|
|
9
9
|
"buildName": "@perses-dev/tempo-plugin"
|
|
10
10
|
},
|
|
11
11
|
"remoteEntry": {
|
|
12
|
-
"name": "__mf/js/Tempo.
|
|
12
|
+
"name": "__mf/js/Tempo.2d6235bb.js",
|
|
13
13
|
"path": "",
|
|
14
14
|
"type": "global"
|
|
15
15
|
},
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"api": ""
|
|
21
21
|
},
|
|
22
22
|
"globalName": "Tempo",
|
|
23
|
-
"pluginVersion": "0.
|
|
23
|
+
"pluginVersion": "0.19.1",
|
|
24
24
|
"prefetchInterface": false,
|
|
25
25
|
"publicPath": "/plugins/Tempo/"
|
|
26
26
|
},
|
|
@@ -88,14 +88,14 @@
|
|
|
88
88
|
{
|
|
89
89
|
"id": "Tempo:@perses-dev/components",
|
|
90
90
|
"name": "@perses-dev/components",
|
|
91
|
-
"version": "0.52.0
|
|
91
|
+
"version": "0.52.0",
|
|
92
92
|
"singleton": true,
|
|
93
|
-
"requiredVersion": "^0.52.0
|
|
93
|
+
"requiredVersion": "^0.52.0",
|
|
94
94
|
"assets": {
|
|
95
95
|
"js": {
|
|
96
96
|
"async": [],
|
|
97
97
|
"sync": [
|
|
98
|
-
"__mf/js/async/
|
|
98
|
+
"__mf/js/async/6286.6e0d8da6.js"
|
|
99
99
|
]
|
|
100
100
|
},
|
|
101
101
|
"css": {
|
|
@@ -107,14 +107,14 @@
|
|
|
107
107
|
{
|
|
108
108
|
"id": "Tempo:@perses-dev/dashboards",
|
|
109
109
|
"name": "@perses-dev/dashboards",
|
|
110
|
-
"version": "0.52.0
|
|
110
|
+
"version": "0.52.0",
|
|
111
111
|
"singleton": true,
|
|
112
|
-
"requiredVersion": "^0.52.0
|
|
112
|
+
"requiredVersion": "^0.52.0",
|
|
113
113
|
"assets": {
|
|
114
114
|
"js": {
|
|
115
115
|
"async": [],
|
|
116
116
|
"sync": [
|
|
117
|
-
"__mf/js/async/
|
|
117
|
+
"__mf/js/async/3391.41e6de04.js"
|
|
118
118
|
]
|
|
119
119
|
},
|
|
120
120
|
"css": {
|
|
@@ -126,14 +126,14 @@
|
|
|
126
126
|
{
|
|
127
127
|
"id": "Tempo:@perses-dev/explore",
|
|
128
128
|
"name": "@perses-dev/explore",
|
|
129
|
-
"version": "0.52.0
|
|
129
|
+
"version": "0.52.0",
|
|
130
130
|
"singleton": true,
|
|
131
|
-
"requiredVersion": "^0.52.0
|
|
131
|
+
"requiredVersion": "^0.52.0",
|
|
132
132
|
"assets": {
|
|
133
133
|
"js": {
|
|
134
134
|
"async": [],
|
|
135
135
|
"sync": [
|
|
136
|
-
"__mf/js/async/4421.
|
|
136
|
+
"__mf/js/async/4421.838809cd.js"
|
|
137
137
|
]
|
|
138
138
|
},
|
|
139
139
|
"css": {
|
|
@@ -145,14 +145,14 @@
|
|
|
145
145
|
{
|
|
146
146
|
"id": "Tempo:@perses-dev/plugin-system",
|
|
147
147
|
"name": "@perses-dev/plugin-system",
|
|
148
|
-
"version": "0.52.0
|
|
148
|
+
"version": "0.52.0",
|
|
149
149
|
"singleton": true,
|
|
150
|
-
"requiredVersion": "^0.52.0
|
|
150
|
+
"requiredVersion": "^0.52.0",
|
|
151
151
|
"assets": {
|
|
152
152
|
"js": {
|
|
153
153
|
"async": [],
|
|
154
154
|
"sync": [
|
|
155
|
-
"__mf/js/async/4368.
|
|
155
|
+
"__mf/js/async/4368.2c879fe0.js"
|
|
156
156
|
]
|
|
157
157
|
},
|
|
158
158
|
"css": {
|
|
@@ -322,7 +322,7 @@
|
|
|
322
322
|
"assets": {
|
|
323
323
|
"js": {
|
|
324
324
|
"sync": [
|
|
325
|
-
"__mf/js/async/__federation_expose_TempoDatasource.
|
|
325
|
+
"__mf/js/async/__federation_expose_TempoDatasource.a20f4483.js"
|
|
326
326
|
],
|
|
327
327
|
"async": [
|
|
328
328
|
"__mf/js/async/lib-router.312ca028.js",
|
|
@@ -331,11 +331,11 @@
|
|
|
331
331
|
"__mf/js/async/5266.1c520126.js",
|
|
332
332
|
"__mf/js/async/8597.d5ba4ca7.js",
|
|
333
333
|
"__mf/js/async/2981.8fe4ed12.js",
|
|
334
|
-
"__mf/js/async/__federation_expose_TempoTraceQuery.
|
|
334
|
+
"__mf/js/async/__federation_expose_TempoTraceQuery.3098cb27.js",
|
|
335
335
|
"__mf/js/async/6751.03514b88.js",
|
|
336
336
|
"__mf/js/async/7376.588b7a17.js",
|
|
337
|
-
"__mf/js/async/__federation_expose_TempoExplorer.
|
|
338
|
-
"__mf/js/async/
|
|
337
|
+
"__mf/js/async/__federation_expose_TempoExplorer.bc71c3ab.js",
|
|
338
|
+
"__mf/js/async/6714.11904981.js",
|
|
339
339
|
"__mf/js/async/4535.7c92d3fd.js",
|
|
340
340
|
"__mf/js/async/7127.a0877987.js",
|
|
341
341
|
"__mf/js/async/4238.7962a7a1.js",
|
|
@@ -365,7 +365,7 @@
|
|
|
365
365
|
"__mf/js/async/5266.1c520126.js",
|
|
366
366
|
"__mf/js/async/8597.d5ba4ca7.js",
|
|
367
367
|
"__mf/js/async/2981.8fe4ed12.js",
|
|
368
|
-
"__mf/js/async/__federation_expose_TempoTraceQuery.
|
|
368
|
+
"__mf/js/async/__federation_expose_TempoTraceQuery.3098cb27.js"
|
|
369
369
|
],
|
|
370
370
|
"async": [
|
|
371
371
|
"__mf/js/async/4238.7962a7a1.js",
|
|
@@ -373,10 +373,10 @@
|
|
|
373
373
|
"__mf/js/async/lib-router.312ca028.js",
|
|
374
374
|
"__mf/js/async/6751.03514b88.js",
|
|
375
375
|
"__mf/js/async/7376.588b7a17.js",
|
|
376
|
-
"__mf/js/async/
|
|
376
|
+
"__mf/js/async/6714.11904981.js",
|
|
377
377
|
"__mf/js/async/4535.7c92d3fd.js",
|
|
378
378
|
"__mf/js/async/5266.1c520126.js",
|
|
379
|
-
"__mf/js/async/__federation_expose_TempoExplorer.
|
|
379
|
+
"__mf/js/async/__federation_expose_TempoExplorer.bc71c3ab.js",
|
|
380
380
|
"__mf/js/async/7127.a0877987.js",
|
|
381
381
|
"__mf/js/async/2292.75e9aa11.js",
|
|
382
382
|
"__mf/js/async/8488.6c9a25e4.js",
|
|
@@ -401,7 +401,7 @@
|
|
|
401
401
|
"js": {
|
|
402
402
|
"sync": [
|
|
403
403
|
"__mf/js/async/5266.1c520126.js",
|
|
404
|
-
"__mf/js/async/__federation_expose_TempoExplorer.
|
|
404
|
+
"__mf/js/async/__federation_expose_TempoExplorer.bc71c3ab.js"
|
|
405
405
|
],
|
|
406
406
|
"async": [
|
|
407
407
|
"__mf/js/async/9368.f0418d24.js",
|
|
@@ -409,13 +409,13 @@
|
|
|
409
409
|
"__mf/js/async/5266.1c520126.js",
|
|
410
410
|
"__mf/js/async/8597.d5ba4ca7.js",
|
|
411
411
|
"__mf/js/async/2981.8fe4ed12.js",
|
|
412
|
-
"__mf/js/async/__federation_expose_TempoTraceQuery.
|
|
412
|
+
"__mf/js/async/__federation_expose_TempoTraceQuery.3098cb27.js",
|
|
413
413
|
"__mf/js/async/7376.588b7a17.js",
|
|
414
414
|
"__mf/js/async/4535.7c92d3fd.js",
|
|
415
415
|
"__mf/js/async/8488.6c9a25e4.js",
|
|
416
416
|
"__mf/js/async/lib-router.312ca028.js",
|
|
417
417
|
"__mf/js/async/6751.03514b88.js",
|
|
418
|
-
"__mf/js/async/
|
|
418
|
+
"__mf/js/async/6714.11904981.js",
|
|
419
419
|
"__mf/js/async/4238.7962a7a1.js",
|
|
420
420
|
"__mf/js/async/3224.ce173388.js",
|
|
421
421
|
"__mf/js/async/2292.75e9aa11.js",
|
package/mf-stats.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
"name": "Tempo",
|
|
6
6
|
"type": "app",
|
|
7
7
|
"buildInfo": {
|
|
8
|
-
"buildVersion": "0.53.
|
|
8
|
+
"buildVersion": "0.53.2",
|
|
9
9
|
"buildName": "@perses-dev/tempo-plugin"
|
|
10
10
|
},
|
|
11
11
|
"remoteEntry": {
|
|
12
|
-
"name": "__mf/js/Tempo.
|
|
12
|
+
"name": "__mf/js/Tempo.2d6235bb.js",
|
|
13
13
|
"path": "",
|
|
14
14
|
"type": "global"
|
|
15
15
|
},
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"api": ""
|
|
21
21
|
},
|
|
22
22
|
"globalName": "Tempo",
|
|
23
|
-
"pluginVersion": "0.
|
|
23
|
+
"pluginVersion": "0.19.1",
|
|
24
24
|
"prefetchInterface": false,
|
|
25
25
|
"publicPath": "/plugins/Tempo/"
|
|
26
26
|
},
|
|
@@ -96,17 +96,17 @@
|
|
|
96
96
|
},
|
|
97
97
|
{
|
|
98
98
|
"singleton": true,
|
|
99
|
-
"requiredVersion": "^0.52.0
|
|
99
|
+
"requiredVersion": "^0.52.0",
|
|
100
100
|
"shareScope": "default",
|
|
101
101
|
"name": "@perses-dev/components",
|
|
102
|
-
"version": "0.52.0
|
|
102
|
+
"version": "0.52.0",
|
|
103
103
|
"eager": false,
|
|
104
104
|
"id": "Tempo:@perses-dev/components",
|
|
105
105
|
"assets": {
|
|
106
106
|
"js": {
|
|
107
107
|
"async": [],
|
|
108
108
|
"sync": [
|
|
109
|
-
"__mf/js/async/
|
|
109
|
+
"__mf/js/async/6286.6e0d8da6.js"
|
|
110
110
|
]
|
|
111
111
|
},
|
|
112
112
|
"css": {
|
|
@@ -121,17 +121,17 @@
|
|
|
121
121
|
},
|
|
122
122
|
{
|
|
123
123
|
"singleton": true,
|
|
124
|
-
"requiredVersion": "^0.52.0
|
|
124
|
+
"requiredVersion": "^0.52.0",
|
|
125
125
|
"shareScope": "default",
|
|
126
126
|
"name": "@perses-dev/dashboards",
|
|
127
|
-
"version": "0.52.0
|
|
127
|
+
"version": "0.52.0",
|
|
128
128
|
"eager": false,
|
|
129
129
|
"id": "Tempo:@perses-dev/dashboards",
|
|
130
130
|
"assets": {
|
|
131
131
|
"js": {
|
|
132
132
|
"async": [],
|
|
133
133
|
"sync": [
|
|
134
|
-
"__mf/js/async/
|
|
134
|
+
"__mf/js/async/3391.41e6de04.js"
|
|
135
135
|
]
|
|
136
136
|
},
|
|
137
137
|
"css": {
|
|
@@ -145,17 +145,17 @@
|
|
|
145
145
|
},
|
|
146
146
|
{
|
|
147
147
|
"singleton": true,
|
|
148
|
-
"requiredVersion": "^0.52.0
|
|
148
|
+
"requiredVersion": "^0.52.0",
|
|
149
149
|
"shareScope": "default",
|
|
150
150
|
"name": "@perses-dev/explore",
|
|
151
|
-
"version": "0.52.0
|
|
151
|
+
"version": "0.52.0",
|
|
152
152
|
"eager": false,
|
|
153
153
|
"id": "Tempo:@perses-dev/explore",
|
|
154
154
|
"assets": {
|
|
155
155
|
"js": {
|
|
156
156
|
"async": [],
|
|
157
157
|
"sync": [
|
|
158
|
-
"__mf/js/async/4421.
|
|
158
|
+
"__mf/js/async/4421.838809cd.js"
|
|
159
159
|
]
|
|
160
160
|
},
|
|
161
161
|
"css": {
|
|
@@ -169,17 +169,17 @@
|
|
|
169
169
|
},
|
|
170
170
|
{
|
|
171
171
|
"singleton": true,
|
|
172
|
-
"requiredVersion": "^0.52.0
|
|
172
|
+
"requiredVersion": "^0.52.0",
|
|
173
173
|
"shareScope": "default",
|
|
174
174
|
"name": "@perses-dev/plugin-system",
|
|
175
|
-
"version": "0.52.0
|
|
175
|
+
"version": "0.52.0",
|
|
176
176
|
"eager": false,
|
|
177
177
|
"id": "Tempo:@perses-dev/plugin-system",
|
|
178
178
|
"assets": {
|
|
179
179
|
"js": {
|
|
180
180
|
"async": [],
|
|
181
181
|
"sync": [
|
|
182
|
-
"__mf/js/async/4368.
|
|
182
|
+
"__mf/js/async/4368.2c879fe0.js"
|
|
183
183
|
]
|
|
184
184
|
},
|
|
185
185
|
"css": {
|
|
@@ -391,7 +391,7 @@
|
|
|
391
391
|
"assets": {
|
|
392
392
|
"js": {
|
|
393
393
|
"sync": [
|
|
394
|
-
"__mf/js/async/__federation_expose_TempoDatasource.
|
|
394
|
+
"__mf/js/async/__federation_expose_TempoDatasource.a20f4483.js"
|
|
395
395
|
],
|
|
396
396
|
"async": [
|
|
397
397
|
"__mf/js/async/lib-router.312ca028.js",
|
|
@@ -400,11 +400,11 @@
|
|
|
400
400
|
"__mf/js/async/5266.1c520126.js",
|
|
401
401
|
"__mf/js/async/8597.d5ba4ca7.js",
|
|
402
402
|
"__mf/js/async/2981.8fe4ed12.js",
|
|
403
|
-
"__mf/js/async/__federation_expose_TempoTraceQuery.
|
|
403
|
+
"__mf/js/async/__federation_expose_TempoTraceQuery.3098cb27.js",
|
|
404
404
|
"__mf/js/async/6751.03514b88.js",
|
|
405
405
|
"__mf/js/async/7376.588b7a17.js",
|
|
406
|
-
"__mf/js/async/__federation_expose_TempoExplorer.
|
|
407
|
-
"__mf/js/async/
|
|
406
|
+
"__mf/js/async/__federation_expose_TempoExplorer.bc71c3ab.js",
|
|
407
|
+
"__mf/js/async/6714.11904981.js",
|
|
408
408
|
"__mf/js/async/4535.7c92d3fd.js",
|
|
409
409
|
"__mf/js/async/7127.a0877987.js",
|
|
410
410
|
"__mf/js/async/4238.7962a7a1.js",
|
|
@@ -442,7 +442,7 @@
|
|
|
442
442
|
"__mf/js/async/5266.1c520126.js",
|
|
443
443
|
"__mf/js/async/8597.d5ba4ca7.js",
|
|
444
444
|
"__mf/js/async/2981.8fe4ed12.js",
|
|
445
|
-
"__mf/js/async/__federation_expose_TempoTraceQuery.
|
|
445
|
+
"__mf/js/async/__federation_expose_TempoTraceQuery.3098cb27.js"
|
|
446
446
|
],
|
|
447
447
|
"async": [
|
|
448
448
|
"__mf/js/async/4238.7962a7a1.js",
|
|
@@ -450,10 +450,10 @@
|
|
|
450
450
|
"__mf/js/async/lib-router.312ca028.js",
|
|
451
451
|
"__mf/js/async/6751.03514b88.js",
|
|
452
452
|
"__mf/js/async/7376.588b7a17.js",
|
|
453
|
-
"__mf/js/async/
|
|
453
|
+
"__mf/js/async/6714.11904981.js",
|
|
454
454
|
"__mf/js/async/4535.7c92d3fd.js",
|
|
455
455
|
"__mf/js/async/5266.1c520126.js",
|
|
456
|
-
"__mf/js/async/__federation_expose_TempoExplorer.
|
|
456
|
+
"__mf/js/async/__federation_expose_TempoExplorer.bc71c3ab.js",
|
|
457
457
|
"__mf/js/async/7127.a0877987.js",
|
|
458
458
|
"__mf/js/async/2292.75e9aa11.js",
|
|
459
459
|
"__mf/js/async/8488.6c9a25e4.js",
|
|
@@ -485,7 +485,7 @@
|
|
|
485
485
|
"js": {
|
|
486
486
|
"sync": [
|
|
487
487
|
"__mf/js/async/5266.1c520126.js",
|
|
488
|
-
"__mf/js/async/__federation_expose_TempoExplorer.
|
|
488
|
+
"__mf/js/async/__federation_expose_TempoExplorer.bc71c3ab.js"
|
|
489
489
|
],
|
|
490
490
|
"async": [
|
|
491
491
|
"__mf/js/async/9368.f0418d24.js",
|
|
@@ -493,13 +493,13 @@
|
|
|
493
493
|
"__mf/js/async/5266.1c520126.js",
|
|
494
494
|
"__mf/js/async/8597.d5ba4ca7.js",
|
|
495
495
|
"__mf/js/async/2981.8fe4ed12.js",
|
|
496
|
-
"__mf/js/async/__federation_expose_TempoTraceQuery.
|
|
496
|
+
"__mf/js/async/__federation_expose_TempoTraceQuery.3098cb27.js",
|
|
497
497
|
"__mf/js/async/7376.588b7a17.js",
|
|
498
498
|
"__mf/js/async/4535.7c92d3fd.js",
|
|
499
499
|
"__mf/js/async/8488.6c9a25e4.js",
|
|
500
500
|
"__mf/js/async/lib-router.312ca028.js",
|
|
501
501
|
"__mf/js/async/6751.03514b88.js",
|
|
502
|
-
"__mf/js/async/
|
|
502
|
+
"__mf/js/async/6714.11904981.js",
|
|
503
503
|
"__mf/js/async/4238.7962a7a1.js",
|
|
504
504
|
"__mf/js/async/3224.ce173388.js",
|
|
505
505
|
"__mf/js/async/2292.75e9aa11.js",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@perses-dev/tempo-plugin",
|
|
3
|
-
"version": "0.53.
|
|
3
|
+
"version": "0.53.2",
|
|
4
4
|
"homepage": "https://github.com/perses/plugins/blob/main/README.md",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@emotion/react": "^11.7.1",
|
|
33
33
|
"@emotion/styled": "^11.6.0",
|
|
34
34
|
"@hookform/resolvers": "^3.2.0",
|
|
35
|
-
"@perses-dev/components": "^0.52.0
|
|
36
|
-
"@perses-dev/core": "^0.52.0
|
|
37
|
-
"@perses-dev/dashboards": "^0.52.0
|
|
38
|
-
"@perses-dev/explore": "^0.52.0
|
|
39
|
-
"@perses-dev/plugin-system": "^0.52.0
|
|
35
|
+
"@perses-dev/components": "^0.52.0",
|
|
36
|
+
"@perses-dev/core": "^0.52.0",
|
|
37
|
+
"@perses-dev/dashboards": "^0.52.0",
|
|
38
|
+
"@perses-dev/explore": "^0.52.0",
|
|
39
|
+
"@perses-dev/plugin-system": "^0.52.0",
|
|
40
40
|
"@tanstack/react-query": "^4.39.1",
|
|
41
41
|
"@uiw/react-codemirror": "^4.19.1",
|
|
42
42
|
"date-fns": "^4.1.0",
|
|
@@ -86,4 +86,4 @@
|
|
|
86
86
|
}
|
|
87
87
|
]
|
|
88
88
|
}
|
|
89
|
-
}
|
|
89
|
+
}
|