@perses-dev/prometheus-plugin 0.58.0-beta.1 → 0.58.0-beta.3
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/Prometheus.e833859d.js +7 -0
- package/__mf/js/async/{1728.e8350fb6.js → 1728.11ee7ff9.js} +1 -1
- package/__mf/js/async/2177.a9ef2479.js +7 -0
- package/__mf/js/async/3075.08023434.js +1 -0
- package/__mf/js/async/3613.f0b10cb1.js +22 -0
- package/__mf/js/async/5440.9f33f7a9.js +2 -0
- package/__mf/js/async/{5440.52ec91ad.js.LICENSE.txt → 5440.9f33f7a9.js.LICENSE.txt} +3 -3
- package/__mf/js/async/8002.011a74d4.js +3 -0
- package/__mf/js/async/9020.311b6932.js +1 -0
- package/__mf/js/async/9537.d1466e1b.js +1 -0
- package/__mf/js/async/__federation_expose_PrometheusDatasource.534ca47d.js +1 -0
- package/__mf/js/async/__federation_expose_PrometheusExplorer.2c37dbd9.js +1 -0
- package/__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.ffb9bbc3.js +1 -0
- package/__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a17f75cc.js +1 -0
- package/__mf/js/async/__federation_expose_PrometheusPromQLVariable.26f85fc6.js +1 -0
- package/__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.6626e886.js +1 -0
- package/__mf/js/main.f4a1cbf1.js +7 -0
- package/lib/cjs/components/query.js +9 -2
- package/lib/cjs/explore/PrometheusMetricsFinder/utils.js +17 -4
- package/lib/cjs/plugins/PrometheusLabelValuesVariable.js +72 -6
- package/lib/cjs/plugins/interpolation.js +7 -0
- package/lib/components/query.d.ts.map +1 -1
- package/lib/components/query.js +10 -3
- package/lib/components/query.js.map +1 -1
- package/lib/explore/PrometheusMetricsFinder/utils.d.ts.map +1 -1
- package/lib/explore/PrometheusMetricsFinder/utils.js +18 -5
- package/lib/explore/PrometheusMetricsFinder/utils.js.map +1 -1
- package/lib/plugins/PrometheusLabelValuesVariable.d.ts.map +1 -1
- package/lib/plugins/PrometheusLabelValuesVariable.js +72 -6
- package/lib/plugins/PrometheusLabelValuesVariable.js.map +1 -1
- package/lib/plugins/interpolation.d.ts +1 -0
- package/lib/plugins/interpolation.d.ts.map +1 -1
- package/lib/plugins/interpolation.js +4 -0
- package/lib/plugins/interpolation.js.map +1 -1
- package/mf-manifest.json +84 -84
- package/mf-stats.json +86 -86
- package/package.json +8 -7
- package/__mf/js/Prometheus.d3a12aa6.js +0 -7
- package/__mf/js/async/1872.7a33d27d.js +0 -7
- package/__mf/js/async/2340.1f49ce2e.js +0 -1
- package/__mf/js/async/4402.2c6a54dd.js +0 -1
- package/__mf/js/async/5440.52ec91ad.js +0 -2
- package/__mf/js/async/7670.3e71874a.js +0 -1
- package/__mf/js/async/8750.7d02f3b6.js +0 -3
- package/__mf/js/async/9916.11d16715.js +0 -22
- package/__mf/js/async/__federation_expose_PrometheusDatasource.2d013450.js +0 -1
- package/__mf/js/async/__federation_expose_PrometheusExplorer.f82cdff6.js +0 -1
- package/__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.c01296a1.js +0 -1
- package/__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.e47f56d4.js +0 -1
- package/__mf/js/async/__federation_expose_PrometheusPromQLVariable.593376e2.js +0 -1
- package/__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.ee2d94d2.js +0 -1
- package/__mf/js/main.31c60b65.js +0 -7
- /package/__mf/css/async/{1872.85c2cbf6.css → 2177.85c2cbf6.css} +0 -0
- /package/__mf/js/async/{1872.7a33d27d.js.LICENSE.txt → 2177.a9ef2479.js.LICENSE.txt} +0 -0
- /package/__mf/js/async/{9916.11d16715.js.LICENSE.txt → 3613.f0b10cb1.js.LICENSE.txt} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/plugins/interpolation.ts"],"sourcesContent":["// Copyright 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 { interpolateHeaders, interpolateQueryParams, VariableStateMap } from '@perses-dev/components';\nimport { DatasourceStore } from '@perses-dev/plugin-system';\nimport { DatasourceSelector, DatasourceSpec } from '@perses-dev/spec';\nimport { ClientRequestOptions, PrometheusClient } from '../model';\nimport { PrometheusDatasourceSpec } from './types';\n\nexport interface ResolvedPrometheusDatasource {\n client: PrometheusClient;\n requestOptions: ClientRequestOptions;\n}\n\nexport async function resolvePrometheusDatasource(\n datasourceStore: DatasourceStore,\n selector: DatasourceSelector,\n variableState: VariableStateMap\n): Promise<ResolvedPrometheusDatasource> {\n const [client, datasource] = await Promise.all([\n datasourceStore.getDatasourceClient<PrometheusClient>(selector),\n datasourceStore.getDatasource(selector) as Promise<DatasourceSpec<PrometheusDatasourceSpec>>,\n ]);\n const { headers, queryParams } = interpolateDatasourceProxyParams(datasource, variableState);\n return { client, requestOptions: { headers, queryParams } };\n}\n\nexport function interpolateDatasourceProxyParams(\n datasource: DatasourceSpec<PrometheusDatasourceSpec>,\n variableState: VariableStateMap\n): ClientRequestOptions {\n const spec = datasource.plugin.spec;\n const rawHeaders = spec.proxy?.spec?.headers;\n const rawQueryParams = spec.queryParams;\n\n return {\n headers: rawHeaders ? interpolateHeaders(rawHeaders, variableState) : undefined,\n queryParams: rawQueryParams ? interpolateQueryParams(rawQueryParams, variableState) : undefined,\n };\n}\n"],"names":["interpolateHeaders","interpolateQueryParams","resolvePrometheusDatasource","datasourceStore","selector","variableState","client","datasource","Promise","all","getDatasourceClient","getDatasource","headers","queryParams","interpolateDatasourceProxyParams","requestOptions","spec","plugin","rawHeaders","proxy","rawQueryParams","undefined"],"mappings":"AAAA,+BAA+B;AAC/B,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,6CAA6C;AAC7C,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AAEjC,SAASA,kBAAkB,EAAEC,sBAAsB,QAA0B,yBAAyB;AAWtG,OAAO,eAAeC,4BACpBC,eAAgC,EAChCC,QAA4B,EAC5BC,aAA+B;IAE/B,MAAM,CAACC,QAAQC,WAAW,GAAG,MAAMC,QAAQC,GAAG,CAAC;QAC7CN,gBAAgBO,mBAAmB,CAAmBN;QACtDD,gBAAgBQ,aAAa,CAACP;KAC/B;IACD,MAAM,EAAEQ,OAAO,EAAEC,WAAW,EAAE,GAAGC,iCAAiCP,YAAYF;IAC9E,OAAO;QAAEC;QAAQS,gBAAgB;YAAEH;YAASC;QAAY;IAAE;AAC5D;AAEA,OAAO,SAASC,iCACdP,UAAoD,EACpDF,aAA+B;IAE/B,MAAMW,OAAOT,WAAWU,MAAM,CAACD,IAAI;IACnC,MAAME,aAAaF,KAAKG,KAAK,EAAEH,MAAMJ;IACrC,MAAMQ,iBAAiBJ,KAAKH,WAAW;IAEvC,OAAO;QACLD,SAASM,aAAalB,mBAAmBkB,YAAYb,iBAAiBgB;QACtER,aAAaO,iBAAiBnB,uBAAuBmB,gBAAgBf,iBAAiBgB;IACxF;AACF"}
|
|
1
|
+
{"version":3,"sources":["../../../src/plugins/interpolation.ts"],"sourcesContent":["// Copyright 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 { interpolateHeaders, interpolateQueryParams, VariableStateMap } from '@perses-dev/components';\nimport { DatasourceStore } from '@perses-dev/plugin-system';\nimport { DatasourceSelector, DatasourceSpec } from '@perses-dev/spec';\nimport { ClientRequestOptions, PrometheusClient } from '../model';\nimport { PrometheusDatasourceSpec } from './types';\n\nexport interface ResolvedPrometheusDatasource {\n client: PrometheusClient;\n requestOptions: ClientRequestOptions;\n}\n\nexport async function resolvePrometheusDatasource(\n datasourceStore: DatasourceStore,\n selector: DatasourceSelector,\n variableState: VariableStateMap\n): Promise<ResolvedPrometheusDatasource> {\n const [client, datasource] = await Promise.all([\n datasourceStore.getDatasourceClient<PrometheusClient>(selector),\n datasourceStore.getDatasource(selector) as Promise<DatasourceSpec<PrometheusDatasourceSpec>>,\n ]);\n const { headers, queryParams } = interpolateDatasourceProxyParams(datasource, variableState);\n return { client, requestOptions: { headers, queryParams } };\n}\n\nexport function interpolateDatasourceProxyParams(\n datasource: DatasourceSpec<PrometheusDatasourceSpec>,\n variableState: VariableStateMap\n): ClientRequestOptions {\n const spec = datasource.plugin.spec;\n const rawHeaders = spec.proxy?.spec?.headers;\n const rawQueryParams = spec.queryParams;\n\n return {\n headers: rawHeaders ? interpolateHeaders(rawHeaders, variableState) : undefined,\n queryParams: rawQueryParams ? interpolateQueryParams(rawQueryParams, variableState) : undefined,\n };\n}\n\nexport async function getInterpolatedRequestOptions(\n datasourceStore: DatasourceStore,\n datasource: DatasourceSelector,\n variableState: VariableStateMap\n): Promise<ClientRequestOptions> {\n const datasourceSpec = (await datasourceStore.getDatasource(datasource)) as DatasourceSpec<PrometheusDatasourceSpec>;\n return interpolateDatasourceProxyParams(datasourceSpec, variableState);\n}\n"],"names":["interpolateHeaders","interpolateQueryParams","resolvePrometheusDatasource","datasourceStore","selector","variableState","client","datasource","Promise","all","getDatasourceClient","getDatasource","headers","queryParams","interpolateDatasourceProxyParams","requestOptions","spec","plugin","rawHeaders","proxy","rawQueryParams","undefined","getInterpolatedRequestOptions","datasourceSpec"],"mappings":"AAAA,+BAA+B;AAC/B,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,6CAA6C;AAC7C,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;AAEjC,SAASA,kBAAkB,EAAEC,sBAAsB,QAA0B,yBAAyB;AAWtG,OAAO,eAAeC,4BACpBC,eAAgC,EAChCC,QAA4B,EAC5BC,aAA+B;IAE/B,MAAM,CAACC,QAAQC,WAAW,GAAG,MAAMC,QAAQC,GAAG,CAAC;QAC7CN,gBAAgBO,mBAAmB,CAAmBN;QACtDD,gBAAgBQ,aAAa,CAACP;KAC/B;IACD,MAAM,EAAEQ,OAAO,EAAEC,WAAW,EAAE,GAAGC,iCAAiCP,YAAYF;IAC9E,OAAO;QAAEC;QAAQS,gBAAgB;YAAEH;YAASC;QAAY;IAAE;AAC5D;AAEA,OAAO,SAASC,iCACdP,UAAoD,EACpDF,aAA+B;IAE/B,MAAMW,OAAOT,WAAWU,MAAM,CAACD,IAAI;IACnC,MAAME,aAAaF,KAAKG,KAAK,EAAEH,MAAMJ;IACrC,MAAMQ,iBAAiBJ,KAAKH,WAAW;IAEvC,OAAO;QACLD,SAASM,aAAalB,mBAAmBkB,YAAYb,iBAAiBgB;QACtER,aAAaO,iBAAiBnB,uBAAuBmB,gBAAgBf,iBAAiBgB;IACxF;AACF;AAEA,OAAO,eAAeC,8BACpBnB,eAAgC,EAChCI,UAA8B,EAC9BF,aAA+B;IAE/B,MAAMkB,iBAAkB,MAAMpB,gBAAgBQ,aAAa,CAACJ;IAC5D,OAAOO,iCAAiCS,gBAAgBlB;AAC1D"}
|
package/mf-manifest.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
"name": "Prometheus",
|
|
6
6
|
"type": "app",
|
|
7
7
|
"buildInfo": {
|
|
8
|
-
"buildVersion": "0.58.0-beta.
|
|
8
|
+
"buildVersion": "0.58.0-beta.3",
|
|
9
9
|
"buildName": "@perses-dev/prometheus-plugin"
|
|
10
10
|
},
|
|
11
11
|
"remoteEntry": {
|
|
12
|
-
"name": "__mf/js/Prometheus.
|
|
12
|
+
"name": "__mf/js/Prometheus.e833859d.js",
|
|
13
13
|
"path": "",
|
|
14
14
|
"type": "global"
|
|
15
15
|
},
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"api": ""
|
|
21
21
|
},
|
|
22
22
|
"globalName": "Prometheus",
|
|
23
|
-
"pluginVersion": "2.
|
|
23
|
+
"pluginVersion": "2.5.1",
|
|
24
24
|
"getPublicPath": "function() { const prefix = window.PERSES_PLUGIN_ASSETS_PATH || window.PERSES_APP_CONFIG?.api_prefix || \"\"; return prefix + \"/plugins/Prometheus/\"; }"
|
|
25
25
|
},
|
|
26
26
|
"shared": [
|
|
@@ -89,20 +89,20 @@
|
|
|
89
89
|
{
|
|
90
90
|
"id": "Prometheus:@perses-dev/components",
|
|
91
91
|
"name": "@perses-dev/components",
|
|
92
|
-
"version": "0.54.0-beta.
|
|
92
|
+
"version": "0.54.0-beta.8",
|
|
93
93
|
"singleton": true,
|
|
94
|
-
"requiredVersion": "^0.54.0-beta.
|
|
94
|
+
"requiredVersion": "^0.54.0-beta.8",
|
|
95
95
|
"assets": {
|
|
96
96
|
"js": {
|
|
97
97
|
"async": [],
|
|
98
98
|
"sync": [
|
|
99
|
-
"__mf/js/async/
|
|
99
|
+
"__mf/js/async/2177.a9ef2479.js"
|
|
100
100
|
]
|
|
101
101
|
},
|
|
102
102
|
"css": {
|
|
103
103
|
"async": [],
|
|
104
104
|
"sync": [
|
|
105
|
-
"__mf/css/async/
|
|
105
|
+
"__mf/css/async/2177.85c2cbf6.css"
|
|
106
106
|
]
|
|
107
107
|
}
|
|
108
108
|
},
|
|
@@ -111,14 +111,14 @@
|
|
|
111
111
|
{
|
|
112
112
|
"id": "Prometheus:@perses-dev/dashboards",
|
|
113
113
|
"name": "@perses-dev/dashboards",
|
|
114
|
-
"version": "0.54.0-beta.
|
|
114
|
+
"version": "0.54.0-beta.8",
|
|
115
115
|
"singleton": true,
|
|
116
|
-
"requiredVersion": "^0.54.0-beta.
|
|
116
|
+
"requiredVersion": "^0.54.0-beta.8",
|
|
117
117
|
"assets": {
|
|
118
118
|
"js": {
|
|
119
119
|
"async": [],
|
|
120
120
|
"sync": [
|
|
121
|
-
"__mf/js/async/
|
|
121
|
+
"__mf/js/async/3613.f0b10cb1.js"
|
|
122
122
|
]
|
|
123
123
|
},
|
|
124
124
|
"css": {
|
|
@@ -131,14 +131,14 @@
|
|
|
131
131
|
{
|
|
132
132
|
"id": "Prometheus:@perses-dev/explore",
|
|
133
133
|
"name": "@perses-dev/explore",
|
|
134
|
-
"version": "0.54.0-beta.
|
|
134
|
+
"version": "0.54.0-beta.8",
|
|
135
135
|
"singleton": true,
|
|
136
|
-
"requiredVersion": "^0.54.0-beta.
|
|
136
|
+
"requiredVersion": "^0.54.0-beta.8",
|
|
137
137
|
"assets": {
|
|
138
138
|
"js": {
|
|
139
139
|
"async": [],
|
|
140
140
|
"sync": [
|
|
141
|
-
"__mf/js/async/1728.
|
|
141
|
+
"__mf/js/async/1728.11ee7ff9.js"
|
|
142
142
|
]
|
|
143
143
|
},
|
|
144
144
|
"css": {
|
|
@@ -151,14 +151,14 @@
|
|
|
151
151
|
{
|
|
152
152
|
"id": "Prometheus:@perses-dev/plugin-system",
|
|
153
153
|
"name": "@perses-dev/plugin-system",
|
|
154
|
-
"version": "0.54.0-beta.
|
|
154
|
+
"version": "0.54.0-beta.8",
|
|
155
155
|
"singleton": true,
|
|
156
|
-
"requiredVersion": "^0.54.0-beta.
|
|
156
|
+
"requiredVersion": "^0.54.0-beta.8",
|
|
157
157
|
"assets": {
|
|
158
158
|
"js": {
|
|
159
159
|
"async": [],
|
|
160
160
|
"sync": [
|
|
161
|
-
"__mf/js/async/
|
|
161
|
+
"__mf/js/async/8002.011a74d4.js"
|
|
162
162
|
]
|
|
163
163
|
},
|
|
164
164
|
"css": {
|
|
@@ -291,14 +291,14 @@
|
|
|
291
291
|
{
|
|
292
292
|
"id": "Prometheus:react-router-dom",
|
|
293
293
|
"name": "react-router-dom",
|
|
294
|
-
"version": "6.30.
|
|
294
|
+
"version": "6.30.4",
|
|
295
295
|
"singleton": true,
|
|
296
|
-
"requiredVersion": "^6.30.
|
|
296
|
+
"requiredVersion": "^6.30.4",
|
|
297
297
|
"assets": {
|
|
298
298
|
"js": {
|
|
299
299
|
"async": [],
|
|
300
300
|
"sync": [
|
|
301
|
-
"__mf/js/async/5440.
|
|
301
|
+
"__mf/js/async/5440.9f33f7a9.js"
|
|
302
302
|
]
|
|
303
303
|
},
|
|
304
304
|
"css": {
|
|
@@ -357,34 +357,34 @@
|
|
|
357
357
|
"assets": {
|
|
358
358
|
"js": {
|
|
359
359
|
"sync": [
|
|
360
|
-
"__mf/js/async/
|
|
360
|
+
"__mf/js/async/3075.08023434.js",
|
|
361
361
|
"__mf/js/async/1605.7c7a0998.js",
|
|
362
|
-
"__mf/js/async/
|
|
363
|
-
"__mf/js/async/__federation_expose_PrometheusDatasource.
|
|
362
|
+
"__mf/js/async/9537.d1466e1b.js",
|
|
363
|
+
"__mf/js/async/__federation_expose_PrometheusDatasource.534ca47d.js"
|
|
364
364
|
],
|
|
365
365
|
"async": [
|
|
366
366
|
"__mf/js/async/9588.dfdaeff2.js",
|
|
367
367
|
"__mf/js/async/5071.5fcfd9a8.js",
|
|
368
368
|
"__mf/js/async/3963.81c8be7e.js",
|
|
369
|
-
"__mf/js/async/
|
|
369
|
+
"__mf/js/async/3075.08023434.js",
|
|
370
370
|
"__mf/js/async/2506.baf20a10.js",
|
|
371
371
|
"__mf/js/async/1605.7c7a0998.js",
|
|
372
372
|
"__mf/js/async/1432.0bb0ef6b.js",
|
|
373
|
-
"__mf/js/async/
|
|
373
|
+
"__mf/js/async/9537.d1466e1b.js",
|
|
374
374
|
"__mf/js/async/4626.90ae092f.js",
|
|
375
375
|
"__mf/js/async/2979.1d711dae.js",
|
|
376
|
-
"__mf/js/async/
|
|
377
|
-
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.
|
|
376
|
+
"__mf/js/async/9020.311b6932.js",
|
|
377
|
+
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.6626e886.js",
|
|
378
378
|
"__mf/js/async/7894.9fe90396.js",
|
|
379
|
-
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.
|
|
380
|
-
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.
|
|
381
|
-
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.
|
|
379
|
+
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a17f75cc.js",
|
|
380
|
+
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.ffb9bbc3.js",
|
|
381
|
+
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.26f85fc6.js",
|
|
382
382
|
"__mf/js/async/5922.ba33c996.js",
|
|
383
383
|
"__mf/js/async/9836.888f4ed2.js",
|
|
384
384
|
"__mf/js/async/2186.9a98bd8f.js",
|
|
385
385
|
"__mf/js/async/2814.fbf52858.js",
|
|
386
386
|
"__mf/js/async/9594.d1a3d0d9.js",
|
|
387
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
387
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.2c37dbd9.js",
|
|
388
388
|
"__mf/js/async/425.b9d2dc6f.js",
|
|
389
389
|
"__mf/js/async/2228.53db17f4.js",
|
|
390
390
|
"__mf/js/async/9184.e6de21be.js",
|
|
@@ -399,7 +399,7 @@
|
|
|
399
399
|
"css": {
|
|
400
400
|
"sync": [],
|
|
401
401
|
"async": [
|
|
402
|
-
"__mf/css/async/
|
|
402
|
+
"__mf/css/async/2177.85c2cbf6.css"
|
|
403
403
|
]
|
|
404
404
|
}
|
|
405
405
|
},
|
|
@@ -412,38 +412,38 @@
|
|
|
412
412
|
"js": {
|
|
413
413
|
"sync": [
|
|
414
414
|
"__mf/js/async/3963.81c8be7e.js",
|
|
415
|
-
"__mf/js/async/
|
|
415
|
+
"__mf/js/async/3075.08023434.js",
|
|
416
416
|
"__mf/js/async/2506.baf20a10.js",
|
|
417
417
|
"__mf/js/async/1605.7c7a0998.js",
|
|
418
418
|
"__mf/js/async/1432.0bb0ef6b.js",
|
|
419
|
-
"__mf/js/async/
|
|
419
|
+
"__mf/js/async/9537.d1466e1b.js",
|
|
420
420
|
"__mf/js/async/4626.90ae092f.js",
|
|
421
421
|
"__mf/js/async/2979.1d711dae.js",
|
|
422
|
-
"__mf/js/async/
|
|
423
|
-
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.
|
|
422
|
+
"__mf/js/async/9020.311b6932.js",
|
|
423
|
+
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.6626e886.js"
|
|
424
424
|
],
|
|
425
425
|
"async": [
|
|
426
426
|
"__mf/js/async/9588.dfdaeff2.js",
|
|
427
427
|
"__mf/js/async/5071.5fcfd9a8.js",
|
|
428
428
|
"__mf/js/async/7894.9fe90396.js",
|
|
429
429
|
"__mf/js/async/3963.81c8be7e.js",
|
|
430
|
-
"__mf/js/async/
|
|
430
|
+
"__mf/js/async/3075.08023434.js",
|
|
431
431
|
"__mf/js/async/2506.baf20a10.js",
|
|
432
432
|
"__mf/js/async/1605.7c7a0998.js",
|
|
433
433
|
"__mf/js/async/1432.0bb0ef6b.js",
|
|
434
|
-
"__mf/js/async/
|
|
434
|
+
"__mf/js/async/9537.d1466e1b.js",
|
|
435
435
|
"__mf/js/async/4626.90ae092f.js",
|
|
436
436
|
"__mf/js/async/2979.1d711dae.js",
|
|
437
|
-
"__mf/js/async/
|
|
438
|
-
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.
|
|
439
|
-
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.
|
|
440
|
-
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.
|
|
437
|
+
"__mf/js/async/9020.311b6932.js",
|
|
438
|
+
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a17f75cc.js",
|
|
439
|
+
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.ffb9bbc3.js",
|
|
440
|
+
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.26f85fc6.js",
|
|
441
441
|
"__mf/js/async/5922.ba33c996.js",
|
|
442
442
|
"__mf/js/async/9836.888f4ed2.js",
|
|
443
443
|
"__mf/js/async/2186.9a98bd8f.js",
|
|
444
444
|
"__mf/js/async/2814.fbf52858.js",
|
|
445
445
|
"__mf/js/async/9594.d1a3d0d9.js",
|
|
446
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
446
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.2c37dbd9.js",
|
|
447
447
|
"__mf/js/async/425.b9d2dc6f.js",
|
|
448
448
|
"__mf/js/async/9184.e6de21be.js",
|
|
449
449
|
"__mf/js/async/3499.19c4bfa6.js",
|
|
@@ -459,7 +459,7 @@
|
|
|
459
459
|
"css": {
|
|
460
460
|
"sync": [],
|
|
461
461
|
"async": [
|
|
462
|
-
"__mf/css/async/
|
|
462
|
+
"__mf/css/async/2177.85c2cbf6.css"
|
|
463
463
|
]
|
|
464
464
|
}
|
|
465
465
|
},
|
|
@@ -472,40 +472,40 @@
|
|
|
472
472
|
"js": {
|
|
473
473
|
"sync": [
|
|
474
474
|
"__mf/js/async/3963.81c8be7e.js",
|
|
475
|
-
"__mf/js/async/
|
|
475
|
+
"__mf/js/async/3075.08023434.js",
|
|
476
476
|
"__mf/js/async/2506.baf20a10.js",
|
|
477
477
|
"__mf/js/async/7894.9fe90396.js",
|
|
478
478
|
"__mf/js/async/1605.7c7a0998.js",
|
|
479
479
|
"__mf/js/async/1432.0bb0ef6b.js",
|
|
480
|
-
"__mf/js/async/
|
|
480
|
+
"__mf/js/async/9537.d1466e1b.js",
|
|
481
481
|
"__mf/js/async/4626.90ae092f.js",
|
|
482
482
|
"__mf/js/async/2979.1d711dae.js",
|
|
483
|
-
"__mf/js/async/
|
|
484
|
-
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.
|
|
483
|
+
"__mf/js/async/9020.311b6932.js",
|
|
484
|
+
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a17f75cc.js"
|
|
485
485
|
],
|
|
486
486
|
"async": [
|
|
487
487
|
"__mf/js/async/9588.dfdaeff2.js",
|
|
488
488
|
"__mf/js/async/5071.5fcfd9a8.js",
|
|
489
489
|
"__mf/js/async/5922.ba33c996.js",
|
|
490
|
-
"__mf/js/async/
|
|
490
|
+
"__mf/js/async/3075.08023434.js",
|
|
491
491
|
"__mf/js/async/2506.baf20a10.js",
|
|
492
492
|
"__mf/js/async/7894.9fe90396.js",
|
|
493
493
|
"__mf/js/async/1605.7c7a0998.js",
|
|
494
494
|
"__mf/js/async/1432.0bb0ef6b.js",
|
|
495
|
-
"__mf/js/async/7670.3e71874a.js",
|
|
496
495
|
"__mf/js/async/9836.888f4ed2.js",
|
|
496
|
+
"__mf/js/async/9537.d1466e1b.js",
|
|
497
497
|
"__mf/js/async/2186.9a98bd8f.js",
|
|
498
498
|
"__mf/js/async/2814.fbf52858.js",
|
|
499
499
|
"__mf/js/async/9594.d1a3d0d9.js",
|
|
500
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
500
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.2c37dbd9.js",
|
|
501
501
|
"__mf/js/async/425.b9d2dc6f.js",
|
|
502
502
|
"__mf/js/async/2228.53db17f4.js",
|
|
503
503
|
"__mf/js/async/9184.e6de21be.js",
|
|
504
504
|
"__mf/js/async/3963.81c8be7e.js",
|
|
505
505
|
"__mf/js/async/4626.90ae092f.js",
|
|
506
506
|
"__mf/js/async/2979.1d711dae.js",
|
|
507
|
-
"__mf/js/async/
|
|
508
|
-
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.
|
|
507
|
+
"__mf/js/async/9020.311b6932.js",
|
|
508
|
+
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.6626e886.js",
|
|
509
509
|
"__mf/js/async/8888.3a188176.js",
|
|
510
510
|
"__mf/js/async/3499.19c4bfa6.js",
|
|
511
511
|
"__mf/js/async/2043.c2948add.js",
|
|
@@ -518,7 +518,7 @@
|
|
|
518
518
|
"css": {
|
|
519
519
|
"sync": [],
|
|
520
520
|
"async": [
|
|
521
|
-
"__mf/css/async/
|
|
521
|
+
"__mf/css/async/2177.85c2cbf6.css"
|
|
522
522
|
]
|
|
523
523
|
}
|
|
524
524
|
},
|
|
@@ -531,40 +531,40 @@
|
|
|
531
531
|
"js": {
|
|
532
532
|
"sync": [
|
|
533
533
|
"__mf/js/async/3963.81c8be7e.js",
|
|
534
|
-
"__mf/js/async/
|
|
534
|
+
"__mf/js/async/3075.08023434.js",
|
|
535
535
|
"__mf/js/async/2506.baf20a10.js",
|
|
536
536
|
"__mf/js/async/7894.9fe90396.js",
|
|
537
537
|
"__mf/js/async/1605.7c7a0998.js",
|
|
538
538
|
"__mf/js/async/1432.0bb0ef6b.js",
|
|
539
|
-
"__mf/js/async/
|
|
539
|
+
"__mf/js/async/9537.d1466e1b.js",
|
|
540
540
|
"__mf/js/async/4626.90ae092f.js",
|
|
541
541
|
"__mf/js/async/2979.1d711dae.js",
|
|
542
|
-
"__mf/js/async/
|
|
543
|
-
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.
|
|
542
|
+
"__mf/js/async/9020.311b6932.js",
|
|
543
|
+
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.ffb9bbc3.js"
|
|
544
544
|
],
|
|
545
545
|
"async": [
|
|
546
546
|
"__mf/js/async/9588.dfdaeff2.js",
|
|
547
547
|
"__mf/js/async/5071.5fcfd9a8.js",
|
|
548
548
|
"__mf/js/async/5922.ba33c996.js",
|
|
549
|
-
"__mf/js/async/
|
|
549
|
+
"__mf/js/async/3075.08023434.js",
|
|
550
550
|
"__mf/js/async/2506.baf20a10.js",
|
|
551
551
|
"__mf/js/async/7894.9fe90396.js",
|
|
552
552
|
"__mf/js/async/1605.7c7a0998.js",
|
|
553
553
|
"__mf/js/async/1432.0bb0ef6b.js",
|
|
554
|
-
"__mf/js/async/7670.3e71874a.js",
|
|
555
554
|
"__mf/js/async/9836.888f4ed2.js",
|
|
555
|
+
"__mf/js/async/9537.d1466e1b.js",
|
|
556
556
|
"__mf/js/async/2186.9a98bd8f.js",
|
|
557
557
|
"__mf/js/async/2814.fbf52858.js",
|
|
558
558
|
"__mf/js/async/9594.d1a3d0d9.js",
|
|
559
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
559
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.2c37dbd9.js",
|
|
560
560
|
"__mf/js/async/425.b9d2dc6f.js",
|
|
561
561
|
"__mf/js/async/2228.53db17f4.js",
|
|
562
562
|
"__mf/js/async/9184.e6de21be.js",
|
|
563
563
|
"__mf/js/async/3963.81c8be7e.js",
|
|
564
564
|
"__mf/js/async/4626.90ae092f.js",
|
|
565
565
|
"__mf/js/async/2979.1d711dae.js",
|
|
566
|
-
"__mf/js/async/
|
|
567
|
-
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.
|
|
566
|
+
"__mf/js/async/9020.311b6932.js",
|
|
567
|
+
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.6626e886.js",
|
|
568
568
|
"__mf/js/async/8888.3a188176.js",
|
|
569
569
|
"__mf/js/async/3499.19c4bfa6.js",
|
|
570
570
|
"__mf/js/async/2043.c2948add.js",
|
|
@@ -577,7 +577,7 @@
|
|
|
577
577
|
"css": {
|
|
578
578
|
"sync": [],
|
|
579
579
|
"async": [
|
|
580
|
-
"__mf/css/async/
|
|
580
|
+
"__mf/css/async/2177.85c2cbf6.css"
|
|
581
581
|
]
|
|
582
582
|
}
|
|
583
583
|
},
|
|
@@ -590,40 +590,40 @@
|
|
|
590
590
|
"js": {
|
|
591
591
|
"sync": [
|
|
592
592
|
"__mf/js/async/3963.81c8be7e.js",
|
|
593
|
-
"__mf/js/async/
|
|
593
|
+
"__mf/js/async/3075.08023434.js",
|
|
594
594
|
"__mf/js/async/2506.baf20a10.js",
|
|
595
595
|
"__mf/js/async/7894.9fe90396.js",
|
|
596
596
|
"__mf/js/async/1605.7c7a0998.js",
|
|
597
597
|
"__mf/js/async/1432.0bb0ef6b.js",
|
|
598
|
-
"__mf/js/async/
|
|
598
|
+
"__mf/js/async/9537.d1466e1b.js",
|
|
599
599
|
"__mf/js/async/4626.90ae092f.js",
|
|
600
600
|
"__mf/js/async/2979.1d711dae.js",
|
|
601
|
-
"__mf/js/async/
|
|
602
|
-
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.
|
|
601
|
+
"__mf/js/async/9020.311b6932.js",
|
|
602
|
+
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.26f85fc6.js"
|
|
603
603
|
],
|
|
604
604
|
"async": [
|
|
605
605
|
"__mf/js/async/9588.dfdaeff2.js",
|
|
606
606
|
"__mf/js/async/5071.5fcfd9a8.js",
|
|
607
607
|
"__mf/js/async/5922.ba33c996.js",
|
|
608
|
-
"__mf/js/async/
|
|
608
|
+
"__mf/js/async/3075.08023434.js",
|
|
609
609
|
"__mf/js/async/2506.baf20a10.js",
|
|
610
610
|
"__mf/js/async/7894.9fe90396.js",
|
|
611
611
|
"__mf/js/async/1605.7c7a0998.js",
|
|
612
612
|
"__mf/js/async/1432.0bb0ef6b.js",
|
|
613
|
-
"__mf/js/async/7670.3e71874a.js",
|
|
614
613
|
"__mf/js/async/9836.888f4ed2.js",
|
|
614
|
+
"__mf/js/async/9537.d1466e1b.js",
|
|
615
615
|
"__mf/js/async/2186.9a98bd8f.js",
|
|
616
616
|
"__mf/js/async/2814.fbf52858.js",
|
|
617
617
|
"__mf/js/async/9594.d1a3d0d9.js",
|
|
618
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
618
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.2c37dbd9.js",
|
|
619
619
|
"__mf/js/async/425.b9d2dc6f.js",
|
|
620
620
|
"__mf/js/async/2228.53db17f4.js",
|
|
621
621
|
"__mf/js/async/9184.e6de21be.js",
|
|
622
622
|
"__mf/js/async/3963.81c8be7e.js",
|
|
623
623
|
"__mf/js/async/4626.90ae092f.js",
|
|
624
624
|
"__mf/js/async/2979.1d711dae.js",
|
|
625
|
-
"__mf/js/async/
|
|
626
|
-
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.
|
|
625
|
+
"__mf/js/async/9020.311b6932.js",
|
|
626
|
+
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.6626e886.js",
|
|
627
627
|
"__mf/js/async/8888.3a188176.js",
|
|
628
628
|
"__mf/js/async/3499.19c4bfa6.js",
|
|
629
629
|
"__mf/js/async/2043.c2948add.js",
|
|
@@ -636,7 +636,7 @@
|
|
|
636
636
|
"css": {
|
|
637
637
|
"sync": [],
|
|
638
638
|
"async": [
|
|
639
|
-
"__mf/css/async/
|
|
639
|
+
"__mf/css/async/2177.85c2cbf6.css"
|
|
640
640
|
]
|
|
641
641
|
}
|
|
642
642
|
},
|
|
@@ -648,18 +648,18 @@
|
|
|
648
648
|
"assets": {
|
|
649
649
|
"js": {
|
|
650
650
|
"sync": [
|
|
651
|
-
"__mf/js/async/
|
|
651
|
+
"__mf/js/async/3075.08023434.js",
|
|
652
652
|
"__mf/js/async/2506.baf20a10.js",
|
|
653
653
|
"__mf/js/async/7894.9fe90396.js",
|
|
654
654
|
"__mf/js/async/1605.7c7a0998.js",
|
|
655
655
|
"__mf/js/async/5922.ba33c996.js",
|
|
656
656
|
"__mf/js/async/1432.0bb0ef6b.js",
|
|
657
|
-
"__mf/js/async/7670.3e71874a.js",
|
|
658
657
|
"__mf/js/async/9836.888f4ed2.js",
|
|
658
|
+
"__mf/js/async/9537.d1466e1b.js",
|
|
659
659
|
"__mf/js/async/2186.9a98bd8f.js",
|
|
660
660
|
"__mf/js/async/2814.fbf52858.js",
|
|
661
661
|
"__mf/js/async/9594.d1a3d0d9.js",
|
|
662
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
662
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.2c37dbd9.js"
|
|
663
663
|
],
|
|
664
664
|
"async": [
|
|
665
665
|
"__mf/js/async/9588.dfdaeff2.js",
|
|
@@ -667,19 +667,19 @@
|
|
|
667
667
|
"__mf/js/async/9184.e6de21be.js",
|
|
668
668
|
"__mf/js/async/7177.0ab860e0.js",
|
|
669
669
|
"__mf/js/async/3963.81c8be7e.js",
|
|
670
|
-
"__mf/js/async/
|
|
670
|
+
"__mf/js/async/3075.08023434.js",
|
|
671
671
|
"__mf/js/async/2506.baf20a10.js",
|
|
672
672
|
"__mf/js/async/1605.7c7a0998.js",
|
|
673
673
|
"__mf/js/async/1432.0bb0ef6b.js",
|
|
674
|
-
"__mf/js/async/
|
|
674
|
+
"__mf/js/async/9537.d1466e1b.js",
|
|
675
675
|
"__mf/js/async/4626.90ae092f.js",
|
|
676
676
|
"__mf/js/async/2979.1d711dae.js",
|
|
677
|
-
"__mf/js/async/
|
|
678
|
-
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.
|
|
677
|
+
"__mf/js/async/9020.311b6932.js",
|
|
678
|
+
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.6626e886.js",
|
|
679
679
|
"__mf/js/async/7894.9fe90396.js",
|
|
680
|
-
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.
|
|
681
|
-
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.
|
|
682
|
-
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.
|
|
680
|
+
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a17f75cc.js",
|
|
681
|
+
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.ffb9bbc3.js",
|
|
682
|
+
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.26f85fc6.js",
|
|
683
683
|
"__mf/js/async/425.b9d2dc6f.js",
|
|
684
684
|
"__mf/js/async/2228.53db17f4.js",
|
|
685
685
|
"__mf/js/async/2043.c2948add.js",
|
|
@@ -693,7 +693,7 @@
|
|
|
693
693
|
"css": {
|
|
694
694
|
"sync": [],
|
|
695
695
|
"async": [
|
|
696
|
-
"__mf/css/async/
|
|
696
|
+
"__mf/css/async/2177.85c2cbf6.css"
|
|
697
697
|
]
|
|
698
698
|
}
|
|
699
699
|
},
|