@perses-dev/prometheus-plugin 0.51.0-rc.3 → 0.51.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.
- package/__mf/js/{622.893bb954.js → 622.81d47848.js} +1 -1
- package/__mf/js/{Prometheus.bafb3562.js → Prometheus.ce1e9458.js} +2 -2
- package/__mf/js/async/{5503.7c0ff0ee.js → 5503.d391f0fc.js} +1 -1
- package/__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js +1 -0
- package/__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.8551745e.js +1 -0
- package/__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a4085adb.js +1 -0
- package/__mf/js/async/__federation_expose_PrometheusPromQLVariable.46f99477.js +1 -0
- package/__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.b4228802.js +1 -0
- package/__mf/js/{main.04881e62.js → main.02b2cf43.js} +1 -1
- package/lib/cjs/explore/PrometheusMetricsFinder/filter/FilterInputs.js +85 -69
- package/lib/cjs/explore/PrometheusMetricsFinder/filter/FinderFilters.js +16 -14
- package/lib/cjs/plugins/prometheus-time-series-query/PrometheusTimeSeriesQueryEditor.js +9 -16
- package/lib/cjs/plugins/prometheus-variables.js +27 -45
- package/lib/explore/PrometheusMetricsFinder/filter/FilterInputs.d.ts.map +1 -1
- package/lib/explore/PrometheusMetricsFinder/filter/FilterInputs.js +87 -72
- package/lib/explore/PrometheusMetricsFinder/filter/FilterInputs.js.map +1 -1
- package/lib/explore/PrometheusMetricsFinder/filter/FinderFilters.d.ts.map +1 -1
- package/lib/explore/PrometheusMetricsFinder/filter/FinderFilters.js +17 -15
- package/lib/explore/PrometheusMetricsFinder/filter/FinderFilters.js.map +1 -1
- package/lib/plugins/prometheus-time-series-query/PrometheusTimeSeriesQueryEditor.d.ts.map +1 -1
- package/lib/plugins/prometheus-time-series-query/PrometheusTimeSeriesQueryEditor.js +10 -17
- package/lib/plugins/prometheus-time-series-query/PrometheusTimeSeriesQueryEditor.js.map +1 -1
- package/lib/plugins/prometheus-variables.d.ts.map +1 -1
- package/lib/plugins/prometheus-variables.js +28 -46
- package/lib/plugins/prometheus-variables.js.map +1 -1
- package/mf-manifest.json +33 -33
- package/mf-stats.json +35 -35
- package/package.json +9 -1
- package/__mf/js/async/__federation_expose_PrometheusExplorer.f3fe63da.js +0 -1
- package/__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.873e5f4d.js +0 -1
- package/__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.6696e340.js +0 -1
- package/__mf/js/async/__federation_expose_PrometheusPromQLVariable.ab45c7cc.js +0 -1
- package/__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.66611c9d.js +0 -1
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
// See the License for the specific language governing permissions and
|
|
12
12
|
// limitations under the License.
|
|
13
13
|
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
import { FormControl,
|
|
14
|
+
import { FormControl, Stack, TextField } from '@mui/material';
|
|
15
15
|
import { DatasourceSelect, useDatasourceClient } from '@perses-dev/plugin-system';
|
|
16
16
|
import { produce } from 'immer';
|
|
17
17
|
import { PromQLEditor } from '../components';
|
|
@@ -34,22 +34,16 @@ export function PrometheusLabelValuesVariableEditor(props) {
|
|
|
34
34
|
return /*#__PURE__*/ _jsxs(Stack, {
|
|
35
35
|
spacing: 2,
|
|
36
36
|
children: [
|
|
37
|
-
/*#__PURE__*/
|
|
37
|
+
/*#__PURE__*/ _jsx(FormControl, {
|
|
38
38
|
margin: "dense",
|
|
39
|
-
children:
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
onChange: handleDatasourceChange,
|
|
48
|
-
readOnly: props.isReadonly,
|
|
49
|
-
labelId: "prom-datasource-label",
|
|
50
|
-
label: "Prometheus Datasource"
|
|
51
|
-
})
|
|
52
|
-
]
|
|
39
|
+
children: /*#__PURE__*/ _jsx(DatasourceSelect, {
|
|
40
|
+
datasourcePluginKind: "PrometheusDatasource",
|
|
41
|
+
value: selectedDatasource,
|
|
42
|
+
onChange: handleDatasourceChange,
|
|
43
|
+
readOnly: props.isReadonly,
|
|
44
|
+
labelId: "prom-datasource-label",
|
|
45
|
+
label: "Prometheus Datasource"
|
|
46
|
+
})
|
|
53
47
|
}),
|
|
54
48
|
/*#__PURE__*/ _jsx(TextField, {
|
|
55
49
|
label: "Label Name",
|
|
@@ -95,22 +89,16 @@ export function PrometheusLabelNamesVariableEditor(props) {
|
|
|
95
89
|
return /*#__PURE__*/ _jsxs(Stack, {
|
|
96
90
|
spacing: 2,
|
|
97
91
|
children: [
|
|
98
|
-
/*#__PURE__*/
|
|
92
|
+
/*#__PURE__*/ _jsx(FormControl, {
|
|
99
93
|
margin: "dense",
|
|
100
|
-
children:
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
onChange: handleDatasourceChange,
|
|
109
|
-
disabled: props.isReadonly,
|
|
110
|
-
labelId: "prom-datasource-label",
|
|
111
|
-
label: "Prometheus Datasource"
|
|
112
|
-
})
|
|
113
|
-
]
|
|
94
|
+
children: /*#__PURE__*/ _jsx(DatasourceSelect, {
|
|
95
|
+
datasourcePluginKind: "PrometheusDatasource",
|
|
96
|
+
value: selectedDatasource,
|
|
97
|
+
onChange: handleDatasourceChange,
|
|
98
|
+
disabled: props.isReadonly,
|
|
99
|
+
labelId: "prom-datasource-label",
|
|
100
|
+
label: "Prometheus Datasource"
|
|
101
|
+
})
|
|
114
102
|
}),
|
|
115
103
|
/*#__PURE__*/ _jsx(MatcherEditor, {
|
|
116
104
|
matchers: props.value.matchers ?? [],
|
|
@@ -144,22 +132,16 @@ export function PrometheusPromQLVariableEditor(props) {
|
|
|
144
132
|
return /*#__PURE__*/ _jsxs(Stack, {
|
|
145
133
|
spacing: 2,
|
|
146
134
|
children: [
|
|
147
|
-
/*#__PURE__*/
|
|
135
|
+
/*#__PURE__*/ _jsx(FormControl, {
|
|
148
136
|
margin: "dense",
|
|
149
|
-
children:
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
onChange: handleDatasourceChange,
|
|
158
|
-
labelId: "prom-datasource-label",
|
|
159
|
-
label: "Prometheus Datasource",
|
|
160
|
-
disabled: props.isReadonly
|
|
161
|
-
})
|
|
162
|
-
]
|
|
137
|
+
children: /*#__PURE__*/ _jsx(DatasourceSelect, {
|
|
138
|
+
datasourcePluginKind: PROM_DATASOURCE_KIND,
|
|
139
|
+
value: selectedDatasource,
|
|
140
|
+
onChange: handleDatasourceChange,
|
|
141
|
+
labelId: "prom-datasource-label",
|
|
142
|
+
label: "Prometheus Datasource",
|
|
143
|
+
disabled: props.isReadonly
|
|
144
|
+
})
|
|
163
145
|
}),
|
|
164
146
|
/*#__PURE__*/ _jsx(PromQLEditor, {
|
|
165
147
|
completeConfig: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../src/plugins/prometheus-variables.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.\nimport { FormControl, InputLabel, Stack, TextField } from '@mui/material';\nimport {\n DatasourceSelect,\n DatasourceSelectProps,\n OptionsEditorProps,\n useDatasourceClient,\n VariableOption,\n} from '@perses-dev/plugin-system';\nimport { produce } from 'immer';\nimport { ReactElement } from 'react';\nimport { PromQLEditor } from '../components';\nimport {\n DEFAULT_PROM,\n isDefaultPromSelector,\n isPrometheusDatasourceSelector,\n MatrixData,\n PROM_DATASOURCE_KIND,\n PrometheusClient,\n VectorData,\n} from '../model';\nimport { MatcherEditor } from './MatcherEditor';\nimport {\n PrometheusLabelNamesVariableOptions,\n PrometheusLabelValuesVariableOptions,\n PrometheusPromQLVariableOptions,\n} from './types';\n\nexport function PrometheusLabelValuesVariableEditor(\n props: OptionsEditorProps<PrometheusLabelValuesVariableOptions>\n): ReactElement {\n const { onChange, value } = props;\n const { datasource } = value;\n const selectedDatasource = datasource ?? DEFAULT_PROM;\n\n const handleDatasourceChange: DatasourceSelectProps['onChange'] = (next) => {\n if (isPrometheusDatasourceSelector(next)) {\n onChange(\n produce(value, (draft) => {\n // If they're using the default, just omit the datasource prop (i.e. set to undefined)\n draft.datasource = isDefaultPromSelector(next) ? undefined : next;\n })\n );\n return;\n }\n\n throw new Error('Got unexpected non-Prometheus datasource selector');\n };\n\n return (\n <Stack spacing={2}>\n <FormControl margin=\"dense\">\n <InputLabel id=\"prom-datasource-label\">Prometheus Datasource</InputLabel>\n <DatasourceSelect\n datasourcePluginKind=\"PrometheusDatasource\"\n value={selectedDatasource}\n onChange={handleDatasourceChange}\n readOnly={props.isReadonly}\n labelId=\"prom-datasource-label\"\n label=\"Prometheus Datasource\"\n />\n </FormControl>\n <TextField\n label=\"Label Name\"\n required\n value={props.value.labelName}\n onChange={(e) => {\n props.onChange({ ...props.value, labelName: e.target.value });\n }}\n InputProps={{\n readOnly: props.isReadonly,\n }}\n />\n <MatcherEditor\n matchers={props.value.matchers ?? []}\n onChange={(e) => {\n props.onChange({ ...props.value, matchers: e });\n }}\n isReadonly={props.isReadonly}\n />\n </Stack>\n );\n}\n\nexport function PrometheusLabelNamesVariableEditor(\n props: OptionsEditorProps<PrometheusLabelNamesVariableOptions>\n): ReactElement {\n const { onChange, value } = props;\n const { datasource } = value;\n const selectedDatasource = datasource ?? DEFAULT_PROM;\n\n const handleDatasourceChange: DatasourceSelectProps['onChange'] = (next) => {\n if (isPrometheusDatasourceSelector(next)) {\n onChange(\n produce(value, (draft) => {\n // If they're using the default, just omit the datasource prop (i.e. set to undefined)\n draft.datasource = isDefaultPromSelector(next) ? undefined : next;\n })\n );\n return;\n }\n\n throw new Error('Got unexpected non-Prometheus datasource selector');\n };\n\n return (\n <Stack spacing={2}>\n <FormControl margin=\"dense\">\n <InputLabel id=\"prom-datasource-label\">Prometheus Datasource</InputLabel>\n <DatasourceSelect\n datasourcePluginKind=\"PrometheusDatasource\"\n value={selectedDatasource}\n onChange={handleDatasourceChange}\n disabled={props.isReadonly}\n labelId=\"prom-datasource-label\"\n label=\"Prometheus Datasource\"\n />\n </FormControl>\n <MatcherEditor\n matchers={props.value.matchers ?? []}\n isReadonly={props.isReadonly}\n onChange={(e) => {\n props.onChange({ ...props.value, matchers: e });\n }}\n />\n </Stack>\n );\n}\n\nexport function PrometheusPromQLVariableEditor(\n props: OptionsEditorProps<PrometheusPromQLVariableOptions>\n): ReactElement {\n const { onChange, value } = props;\n const { datasource } = value;\n const selectedDatasource = datasource ?? DEFAULT_PROM;\n\n const { data: client } = useDatasourceClient<PrometheusClient>(selectedDatasource);\n const promURL = client?.options.datasourceUrl;\n\n const handleDatasourceChange: DatasourceSelectProps['onChange'] = (next) => {\n if (isPrometheusDatasourceSelector(next)) {\n onChange(\n produce(value, (draft) => {\n // If they're using the default, just omit the datasource prop (i.e. set to undefined)\n draft.datasource = isDefaultPromSelector(next) ? undefined : next;\n })\n );\n return;\n }\n\n throw new Error('Got unexpected non-Prometheus datasource selector');\n };\n\n return (\n <Stack spacing={2}>\n <FormControl margin=\"dense\">\n <InputLabel id=\"prom-datasource-label\">Prometheus Datasource</InputLabel>\n <DatasourceSelect\n datasourcePluginKind={PROM_DATASOURCE_KIND}\n value={selectedDatasource}\n onChange={handleDatasourceChange}\n labelId=\"prom-datasource-label\"\n label=\"Prometheus Datasource\"\n disabled={props.isReadonly}\n />\n </FormControl>\n <PromQLEditor\n completeConfig={{ remote: { url: promURL } }}\n value={value.expr}\n datasource={selectedDatasource}\n onBlur={(event) => {\n props.onChange({ ...props.value, expr: event.target.textContent ?? '' });\n }}\n readOnly={props.isReadonly}\n width=\"100%\"\n />\n <TextField\n label=\"Label Name\"\n value={props.value.labelName}\n InputProps={{\n readOnly: props.isReadonly,\n }}\n onChange={(e) => {\n props.onChange({ ...props.value, labelName: e.target.value });\n }}\n />\n </Stack>\n );\n}\n\nexport function capturingMatrix(matrix: MatrixData, labelName: string): string[] {\n const captured = new Set<string>();\n for (const sample of matrix.result) {\n const value = sample.metric[labelName];\n if (value !== undefined) {\n captured.add(value);\n }\n }\n return Array.from(captured.values());\n}\n\nexport function capturingVector(vector: VectorData, labelName: string): string[] {\n const captured = new Set<string>();\n for (const sample of vector.result) {\n const value = sample.metric[labelName];\n if (value !== undefined) {\n captured.add(value);\n }\n }\n return Array.from(captured.values());\n}\n\n/**\n * Takes a list of strings and returns a list of VariableOptions\n */\nexport const stringArrayToVariableOptions = (values?: string[]): VariableOption[] => {\n if (!values) return [];\n return values.map((value) => ({\n value,\n label: value,\n }));\n};\n"],"names":["FormControl","InputLabel","Stack","TextField","DatasourceSelect","useDatasourceClient","produce","PromQLEditor","DEFAULT_PROM","isDefaultPromSelector","isPrometheusDatasourceSelector","PROM_DATASOURCE_KIND","MatcherEditor","PrometheusLabelValuesVariableEditor","props","onChange","value","datasource","selectedDatasource","handleDatasourceChange","next","draft","undefined","Error","spacing","margin","id","datasourcePluginKind","readOnly","isReadonly","labelId","label","required","labelName","e","target","InputProps","matchers","PrometheusLabelNamesVariableEditor","disabled","PrometheusPromQLVariableEditor","data","client","promURL","options","datasourceUrl","completeConfig","remote","url","expr","onBlur","event","textContent","width","capturingMatrix","matrix","captured","Set","sample","result","metric","add","Array","from","values","capturingVector","vector","stringArrayToVariableOptions","map"],"mappings":"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"}
|
|
1
|
+
{"version":3,"sources":["../../../src/plugins/prometheus-variables.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.\nimport { FormControl, Stack, TextField } from '@mui/material';\nimport {\n DatasourceSelect,\n DatasourceSelectProps,\n OptionsEditorProps,\n useDatasourceClient,\n VariableOption,\n} from '@perses-dev/plugin-system';\nimport { produce } from 'immer';\nimport { ReactElement } from 'react';\nimport { PromQLEditor } from '../components';\nimport {\n DEFAULT_PROM,\n isDefaultPromSelector,\n isPrometheusDatasourceSelector,\n MatrixData,\n PROM_DATASOURCE_KIND,\n PrometheusClient,\n VectorData,\n} from '../model';\nimport { MatcherEditor } from './MatcherEditor';\nimport {\n PrometheusLabelNamesVariableOptions,\n PrometheusLabelValuesVariableOptions,\n PrometheusPromQLVariableOptions,\n} from './types';\n\nexport function PrometheusLabelValuesVariableEditor(\n props: OptionsEditorProps<PrometheusLabelValuesVariableOptions>\n): ReactElement {\n const { onChange, value } = props;\n const { datasource } = value;\n const selectedDatasource = datasource ?? DEFAULT_PROM;\n\n const handleDatasourceChange: DatasourceSelectProps['onChange'] = (next) => {\n if (isPrometheusDatasourceSelector(next)) {\n onChange(\n produce(value, (draft) => {\n // If they're using the default, just omit the datasource prop (i.e. set to undefined)\n draft.datasource = isDefaultPromSelector(next) ? undefined : next;\n })\n );\n return;\n }\n\n throw new Error('Got unexpected non-Prometheus datasource selector');\n };\n\n return (\n <Stack spacing={2}>\n <FormControl margin=\"dense\">\n <DatasourceSelect\n datasourcePluginKind=\"PrometheusDatasource\"\n value={selectedDatasource}\n onChange={handleDatasourceChange}\n readOnly={props.isReadonly}\n labelId=\"prom-datasource-label\"\n label=\"Prometheus Datasource\"\n />\n </FormControl>\n <TextField\n label=\"Label Name\"\n required\n value={props.value.labelName}\n onChange={(e) => {\n props.onChange({ ...props.value, labelName: e.target.value });\n }}\n InputProps={{\n readOnly: props.isReadonly,\n }}\n />\n <MatcherEditor\n matchers={props.value.matchers ?? []}\n onChange={(e) => {\n props.onChange({ ...props.value, matchers: e });\n }}\n isReadonly={props.isReadonly}\n />\n </Stack>\n );\n}\n\nexport function PrometheusLabelNamesVariableEditor(\n props: OptionsEditorProps<PrometheusLabelNamesVariableOptions>\n): ReactElement {\n const { onChange, value } = props;\n const { datasource } = value;\n const selectedDatasource = datasource ?? DEFAULT_PROM;\n\n const handleDatasourceChange: DatasourceSelectProps['onChange'] = (next) => {\n if (isPrometheusDatasourceSelector(next)) {\n onChange(\n produce(value, (draft) => {\n // If they're using the default, just omit the datasource prop (i.e. set to undefined)\n draft.datasource = isDefaultPromSelector(next) ? undefined : next;\n })\n );\n return;\n }\n\n throw new Error('Got unexpected non-Prometheus datasource selector');\n };\n\n return (\n <Stack spacing={2}>\n <FormControl margin=\"dense\">\n <DatasourceSelect\n datasourcePluginKind=\"PrometheusDatasource\"\n value={selectedDatasource}\n onChange={handleDatasourceChange}\n disabled={props.isReadonly}\n labelId=\"prom-datasource-label\"\n label=\"Prometheus Datasource\"\n />\n </FormControl>\n <MatcherEditor\n matchers={props.value.matchers ?? []}\n isReadonly={props.isReadonly}\n onChange={(e) => {\n props.onChange({ ...props.value, matchers: e });\n }}\n />\n </Stack>\n );\n}\n\nexport function PrometheusPromQLVariableEditor(\n props: OptionsEditorProps<PrometheusPromQLVariableOptions>\n): ReactElement {\n const { onChange, value } = props;\n const { datasource } = value;\n const selectedDatasource = datasource ?? DEFAULT_PROM;\n\n const { data: client } = useDatasourceClient<PrometheusClient>(selectedDatasource);\n const promURL = client?.options.datasourceUrl;\n\n const handleDatasourceChange: DatasourceSelectProps['onChange'] = (next) => {\n if (isPrometheusDatasourceSelector(next)) {\n onChange(\n produce(value, (draft) => {\n // If they're using the default, just omit the datasource prop (i.e. set to undefined)\n draft.datasource = isDefaultPromSelector(next) ? undefined : next;\n })\n );\n return;\n }\n\n throw new Error('Got unexpected non-Prometheus datasource selector');\n };\n\n return (\n <Stack spacing={2}>\n <FormControl margin=\"dense\">\n <DatasourceSelect\n datasourcePluginKind={PROM_DATASOURCE_KIND}\n value={selectedDatasource}\n onChange={handleDatasourceChange}\n labelId=\"prom-datasource-label\"\n label=\"Prometheus Datasource\"\n disabled={props.isReadonly}\n />\n </FormControl>\n <PromQLEditor\n completeConfig={{ remote: { url: promURL } }}\n value={value.expr}\n datasource={selectedDatasource}\n onBlur={(event) => {\n props.onChange({ ...props.value, expr: event.target.textContent ?? '' });\n }}\n readOnly={props.isReadonly}\n width=\"100%\"\n />\n <TextField\n label=\"Label Name\"\n value={props.value.labelName}\n InputProps={{\n readOnly: props.isReadonly,\n }}\n onChange={(e) => {\n props.onChange({ ...props.value, labelName: e.target.value });\n }}\n />\n </Stack>\n );\n}\n\nexport function capturingMatrix(matrix: MatrixData, labelName: string): string[] {\n const captured = new Set<string>();\n for (const sample of matrix.result) {\n const value = sample.metric[labelName];\n if (value !== undefined) {\n captured.add(value);\n }\n }\n return Array.from(captured.values());\n}\n\nexport function capturingVector(vector: VectorData, labelName: string): string[] {\n const captured = new Set<string>();\n for (const sample of vector.result) {\n const value = sample.metric[labelName];\n if (value !== undefined) {\n captured.add(value);\n }\n }\n return Array.from(captured.values());\n}\n\n/**\n * Takes a list of strings and returns a list of VariableOptions\n */\nexport const stringArrayToVariableOptions = (values?: string[]): VariableOption[] => {\n if (!values) return [];\n return values.map((value) => ({\n value,\n label: value,\n }));\n};\n"],"names":["FormControl","Stack","TextField","DatasourceSelect","useDatasourceClient","produce","PromQLEditor","DEFAULT_PROM","isDefaultPromSelector","isPrometheusDatasourceSelector","PROM_DATASOURCE_KIND","MatcherEditor","PrometheusLabelValuesVariableEditor","props","onChange","value","datasource","selectedDatasource","handleDatasourceChange","next","draft","undefined","Error","spacing","margin","datasourcePluginKind","readOnly","isReadonly","labelId","label","required","labelName","e","target","InputProps","matchers","PrometheusLabelNamesVariableEditor","disabled","PrometheusPromQLVariableEditor","data","client","promURL","options","datasourceUrl","completeConfig","remote","url","expr","onBlur","event","textContent","width","capturingMatrix","matrix","captured","Set","sample","result","metric","add","Array","from","values","capturingVector","vector","stringArrayToVariableOptions","map"],"mappings":"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"}
|
package/mf-manifest.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
"name": "Prometheus",
|
|
6
6
|
"type": "app",
|
|
7
7
|
"buildInfo": {
|
|
8
|
-
"buildVersion": "0.51.0
|
|
8
|
+
"buildVersion": "0.51.0",
|
|
9
9
|
"buildName": "@perses-dev/prometheus-plugin"
|
|
10
10
|
},
|
|
11
11
|
"remoteEntry": {
|
|
12
|
-
"name": "__mf/js/Prometheus.
|
|
12
|
+
"name": "__mf/js/Prometheus.ce1e9458.js",
|
|
13
13
|
"path": "",
|
|
14
14
|
"type": "global"
|
|
15
15
|
},
|
|
@@ -152,7 +152,7 @@
|
|
|
152
152
|
"__mf/js/async/738.aca54e25.js",
|
|
153
153
|
"__mf/js/async/3980.7cea5715.js",
|
|
154
154
|
"__mf/js/async/6377.ca974d89.js",
|
|
155
|
-
"__mf/js/async/5503.
|
|
155
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
156
156
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
157
157
|
"__mf/js/async/4421.42e889f6.js",
|
|
158
158
|
"__mf/js/async/4062.3ab7f987.js",
|
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
"__mf/js/async/738.aca54e25.js",
|
|
210
210
|
"__mf/js/async/3980.7cea5715.js",
|
|
211
211
|
"__mf/js/async/6377.ca974d89.js",
|
|
212
|
-
"__mf/js/async/5503.
|
|
212
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
213
213
|
"__mf/js/async/4062.3ab7f987.js",
|
|
214
214
|
"__mf/js/async/5913.4e5abd09.js",
|
|
215
215
|
"__mf/js/async/2285.15378f70.js",
|
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
"__mf/js/async/738.aca54e25.js",
|
|
258
258
|
"__mf/js/async/3980.7cea5715.js",
|
|
259
259
|
"__mf/js/async/6377.ca974d89.js",
|
|
260
|
-
"__mf/js/async/5503.
|
|
260
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
261
261
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
262
262
|
"__mf/js/async/4421.42e889f6.js",
|
|
263
263
|
"__mf/js/async/4062.3ab7f987.js",
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
"js": {
|
|
330
330
|
"async": [],
|
|
331
331
|
"sync": [
|
|
332
|
-
"__mf/js/async/5503.
|
|
332
|
+
"__mf/js/async/5503.d391f0fc.js"
|
|
333
333
|
]
|
|
334
334
|
},
|
|
335
335
|
"css": {
|
|
@@ -492,16 +492,16 @@
|
|
|
492
492
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
493
493
|
"__mf/js/async/537.6911ea2e.js",
|
|
494
494
|
"__mf/js/async/5345.2e531d76.js",
|
|
495
|
-
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.
|
|
495
|
+
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.b4228802.js",
|
|
496
496
|
"__mf/js/async/7272.a763aa92.js",
|
|
497
|
-
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.
|
|
498
|
-
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.
|
|
499
|
-
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.
|
|
497
|
+
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a4085adb.js",
|
|
498
|
+
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.8551745e.js",
|
|
499
|
+
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.46f99477.js",
|
|
500
500
|
"__mf/js/async/5769.f14c9663.js",
|
|
501
501
|
"__mf/js/async/7376.c7eb05b9.js",
|
|
502
502
|
"__mf/js/async/9550.e19763f8.js",
|
|
503
503
|
"__mf/js/async/3818.dde21d04.js",
|
|
504
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
504
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js",
|
|
505
505
|
"__mf/js/async/3871.6915e369.js",
|
|
506
506
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
507
507
|
"__mf/js/async/528.d364bb0e.js",
|
|
@@ -513,7 +513,7 @@
|
|
|
513
513
|
"__mf/js/async/738.aca54e25.js",
|
|
514
514
|
"__mf/js/async/3980.7cea5715.js",
|
|
515
515
|
"__mf/js/async/6377.ca974d89.js",
|
|
516
|
-
"__mf/js/async/5503.
|
|
516
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
517
517
|
"__mf/js/async/4421.42e889f6.js",
|
|
518
518
|
"__mf/js/async/4062.3ab7f987.js",
|
|
519
519
|
"__mf/js/async/212.bd5d617a.js",
|
|
@@ -547,7 +547,7 @@
|
|
|
547
547
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
548
548
|
"__mf/js/async/537.6911ea2e.js",
|
|
549
549
|
"__mf/js/async/5345.2e531d76.js",
|
|
550
|
-
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.
|
|
550
|
+
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.b4228802.js"
|
|
551
551
|
],
|
|
552
552
|
"async": [
|
|
553
553
|
"__mf/js/async/1964.95da06f6.js",
|
|
@@ -568,14 +568,14 @@
|
|
|
568
568
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
569
569
|
"__mf/js/async/537.6911ea2e.js",
|
|
570
570
|
"__mf/js/async/5345.2e531d76.js",
|
|
571
|
-
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.
|
|
572
|
-
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.
|
|
573
|
-
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.
|
|
571
|
+
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a4085adb.js",
|
|
572
|
+
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.8551745e.js",
|
|
573
|
+
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.46f99477.js",
|
|
574
574
|
"__mf/js/async/5769.f14c9663.js",
|
|
575
575
|
"__mf/js/async/7376.c7eb05b9.js",
|
|
576
576
|
"__mf/js/async/9550.e19763f8.js",
|
|
577
577
|
"__mf/js/async/3818.dde21d04.js",
|
|
578
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
578
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js",
|
|
579
579
|
"__mf/js/async/3871.6915e369.js",
|
|
580
580
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
581
581
|
"__mf/js/async/528.d364bb0e.js",
|
|
@@ -586,7 +586,7 @@
|
|
|
586
586
|
"__mf/js/async/6292.7b8efa78.js",
|
|
587
587
|
"__mf/js/async/738.aca54e25.js",
|
|
588
588
|
"__mf/js/async/6377.ca974d89.js",
|
|
589
|
-
"__mf/js/async/5503.
|
|
589
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
590
590
|
"__mf/js/async/4421.42e889f6.js",
|
|
591
591
|
"__mf/js/async/4062.3ab7f987.js",
|
|
592
592
|
"__mf/js/async/212.bd5d617a.js",
|
|
@@ -622,7 +622,7 @@
|
|
|
622
622
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
623
623
|
"__mf/js/async/537.6911ea2e.js",
|
|
624
624
|
"__mf/js/async/5345.2e531d76.js",
|
|
625
|
-
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.
|
|
625
|
+
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a4085adb.js"
|
|
626
626
|
],
|
|
627
627
|
"async": [
|
|
628
628
|
"__mf/js/async/1964.95da06f6.js",
|
|
@@ -643,7 +643,7 @@
|
|
|
643
643
|
"__mf/js/async/7376.c7eb05b9.js",
|
|
644
644
|
"__mf/js/async/9550.e19763f8.js",
|
|
645
645
|
"__mf/js/async/3818.dde21d04.js",
|
|
646
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
646
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js",
|
|
647
647
|
"__mf/js/async/3871.6915e369.js",
|
|
648
648
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
649
649
|
"__mf/js/async/528.d364bb0e.js",
|
|
@@ -654,7 +654,7 @@
|
|
|
654
654
|
"__mf/js/async/6292.7b8efa78.js",
|
|
655
655
|
"__mf/js/async/738.aca54e25.js",
|
|
656
656
|
"__mf/js/async/6377.ca974d89.js",
|
|
657
|
-
"__mf/js/async/5503.
|
|
657
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
658
658
|
"__mf/js/async/4421.42e889f6.js",
|
|
659
659
|
"__mf/js/async/4062.3ab7f987.js",
|
|
660
660
|
"__mf/js/async/212.bd5d617a.js",
|
|
@@ -690,7 +690,7 @@
|
|
|
690
690
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
691
691
|
"__mf/js/async/537.6911ea2e.js",
|
|
692
692
|
"__mf/js/async/5345.2e531d76.js",
|
|
693
|
-
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.
|
|
693
|
+
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.8551745e.js"
|
|
694
694
|
],
|
|
695
695
|
"async": [
|
|
696
696
|
"__mf/js/async/1964.95da06f6.js",
|
|
@@ -711,7 +711,7 @@
|
|
|
711
711
|
"__mf/js/async/7376.c7eb05b9.js",
|
|
712
712
|
"__mf/js/async/9550.e19763f8.js",
|
|
713
713
|
"__mf/js/async/3818.dde21d04.js",
|
|
714
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
714
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js",
|
|
715
715
|
"__mf/js/async/3871.6915e369.js",
|
|
716
716
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
717
717
|
"__mf/js/async/528.d364bb0e.js",
|
|
@@ -722,7 +722,7 @@
|
|
|
722
722
|
"__mf/js/async/6292.7b8efa78.js",
|
|
723
723
|
"__mf/js/async/738.aca54e25.js",
|
|
724
724
|
"__mf/js/async/6377.ca974d89.js",
|
|
725
|
-
"__mf/js/async/5503.
|
|
725
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
726
726
|
"__mf/js/async/4421.42e889f6.js",
|
|
727
727
|
"__mf/js/async/4062.3ab7f987.js",
|
|
728
728
|
"__mf/js/async/212.bd5d617a.js",
|
|
@@ -758,7 +758,7 @@
|
|
|
758
758
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
759
759
|
"__mf/js/async/537.6911ea2e.js",
|
|
760
760
|
"__mf/js/async/5345.2e531d76.js",
|
|
761
|
-
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.
|
|
761
|
+
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.46f99477.js"
|
|
762
762
|
],
|
|
763
763
|
"async": [
|
|
764
764
|
"__mf/js/async/1964.95da06f6.js",
|
|
@@ -779,7 +779,7 @@
|
|
|
779
779
|
"__mf/js/async/7376.c7eb05b9.js",
|
|
780
780
|
"__mf/js/async/9550.e19763f8.js",
|
|
781
781
|
"__mf/js/async/3818.dde21d04.js",
|
|
782
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
782
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js",
|
|
783
783
|
"__mf/js/async/3871.6915e369.js",
|
|
784
784
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
785
785
|
"__mf/js/async/528.d364bb0e.js",
|
|
@@ -790,7 +790,7 @@
|
|
|
790
790
|
"__mf/js/async/6292.7b8efa78.js",
|
|
791
791
|
"__mf/js/async/738.aca54e25.js",
|
|
792
792
|
"__mf/js/async/6377.ca974d89.js",
|
|
793
|
-
"__mf/js/async/5503.
|
|
793
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
794
794
|
"__mf/js/async/4421.42e889f6.js",
|
|
795
795
|
"__mf/js/async/4062.3ab7f987.js",
|
|
796
796
|
"__mf/js/async/212.bd5d617a.js",
|
|
@@ -826,7 +826,7 @@
|
|
|
826
826
|
"__mf/js/async/7376.c7eb05b9.js",
|
|
827
827
|
"__mf/js/async/9550.e19763f8.js",
|
|
828
828
|
"__mf/js/async/3818.dde21d04.js",
|
|
829
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
829
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js"
|
|
830
830
|
],
|
|
831
831
|
"async": [
|
|
832
832
|
"__mf/js/async/1964.95da06f6.js",
|
|
@@ -849,11 +849,11 @@
|
|
|
849
849
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
850
850
|
"__mf/js/async/537.6911ea2e.js",
|
|
851
851
|
"__mf/js/async/5345.2e531d76.js",
|
|
852
|
-
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.
|
|
852
|
+
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.b4228802.js",
|
|
853
853
|
"__mf/js/async/7272.a763aa92.js",
|
|
854
|
-
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.
|
|
855
|
-
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.
|
|
856
|
-
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.
|
|
854
|
+
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a4085adb.js",
|
|
855
|
+
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.8551745e.js",
|
|
856
|
+
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.46f99477.js",
|
|
857
857
|
"__mf/js/async/3871.6915e369.js",
|
|
858
858
|
"__mf/js/async/528.d364bb0e.js",
|
|
859
859
|
"__mf/js/async/212.bd5d617a.js",
|
|
@@ -861,7 +861,7 @@
|
|
|
861
861
|
"__mf/js/async/6292.7b8efa78.js",
|
|
862
862
|
"__mf/js/async/6377.ca974d89.js",
|
|
863
863
|
"__mf/js/async/3090.9fb5fe73.js",
|
|
864
|
-
"__mf/js/async/5503.
|
|
864
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
865
865
|
"__mf/js/async/4323.4266fd6a.js",
|
|
866
866
|
"__mf/js/async/3057.e568f9b6.js",
|
|
867
867
|
"__mf/js/async/7740.0c5363fd.js",
|
package/mf-stats.json
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
"name": "Prometheus",
|
|
6
6
|
"type": "app",
|
|
7
7
|
"buildInfo": {
|
|
8
|
-
"buildVersion": "0.51.0
|
|
8
|
+
"buildVersion": "0.51.0",
|
|
9
9
|
"buildName": "@perses-dev/prometheus-plugin"
|
|
10
10
|
},
|
|
11
11
|
"remoteEntry": {
|
|
12
|
-
"name": "__mf/js/Prometheus.
|
|
12
|
+
"name": "__mf/js/Prometheus.ce1e9458.js",
|
|
13
13
|
"path": "",
|
|
14
14
|
"type": "global"
|
|
15
15
|
},
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
"__mf/js/async/738.aca54e25.js",
|
|
170
170
|
"__mf/js/async/3980.7cea5715.js",
|
|
171
171
|
"__mf/js/async/6377.ca974d89.js",
|
|
172
|
-
"__mf/js/async/5503.
|
|
172
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
173
173
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
174
174
|
"__mf/js/async/4421.42e889f6.js",
|
|
175
175
|
"__mf/js/async/4062.3ab7f987.js",
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
"__mf/js/async/738.aca54e25.js",
|
|
232
232
|
"__mf/js/async/3980.7cea5715.js",
|
|
233
233
|
"__mf/js/async/6377.ca974d89.js",
|
|
234
|
-
"__mf/js/async/5503.
|
|
234
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
235
235
|
"__mf/js/async/4062.3ab7f987.js",
|
|
236
236
|
"__mf/js/async/5913.4e5abd09.js",
|
|
237
237
|
"__mf/js/async/2285.15378f70.js",
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
"__mf/js/async/738.aca54e25.js",
|
|
285
285
|
"__mf/js/async/3980.7cea5715.js",
|
|
286
286
|
"__mf/js/async/6377.ca974d89.js",
|
|
287
|
-
"__mf/js/async/5503.
|
|
287
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
288
288
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
289
289
|
"__mf/js/async/4421.42e889f6.js",
|
|
290
290
|
"__mf/js/async/4062.3ab7f987.js",
|
|
@@ -306,10 +306,10 @@
|
|
|
306
306
|
}
|
|
307
307
|
},
|
|
308
308
|
"usedIn": [
|
|
309
|
-
"./
|
|
309
|
+
"./PrometheusLabelValuesVariable",
|
|
310
310
|
"./PrometheusExplorer",
|
|
311
311
|
"./PrometheusLabelNamesVariable",
|
|
312
|
-
"./
|
|
312
|
+
"./PrometheusPromQLVariable",
|
|
313
313
|
"./PrometheusDatasource",
|
|
314
314
|
"./PrometheusTimeSeriesQuery"
|
|
315
315
|
]
|
|
@@ -376,7 +376,7 @@
|
|
|
376
376
|
"js": {
|
|
377
377
|
"async": [],
|
|
378
378
|
"sync": [
|
|
379
|
-
"__mf/js/async/5503.
|
|
379
|
+
"__mf/js/async/5503.d391f0fc.js"
|
|
380
380
|
]
|
|
381
381
|
},
|
|
382
382
|
"css": {
|
|
@@ -570,16 +570,16 @@
|
|
|
570
570
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
571
571
|
"__mf/js/async/537.6911ea2e.js",
|
|
572
572
|
"__mf/js/async/5345.2e531d76.js",
|
|
573
|
-
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.
|
|
573
|
+
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.b4228802.js",
|
|
574
574
|
"__mf/js/async/7272.a763aa92.js",
|
|
575
|
-
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.
|
|
576
|
-
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.
|
|
577
|
-
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.
|
|
575
|
+
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a4085adb.js",
|
|
576
|
+
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.8551745e.js",
|
|
577
|
+
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.46f99477.js",
|
|
578
578
|
"__mf/js/async/5769.f14c9663.js",
|
|
579
579
|
"__mf/js/async/7376.c7eb05b9.js",
|
|
580
580
|
"__mf/js/async/9550.e19763f8.js",
|
|
581
581
|
"__mf/js/async/3818.dde21d04.js",
|
|
582
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
582
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js",
|
|
583
583
|
"__mf/js/async/3871.6915e369.js",
|
|
584
584
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
585
585
|
"__mf/js/async/528.d364bb0e.js",
|
|
@@ -591,7 +591,7 @@
|
|
|
591
591
|
"__mf/js/async/738.aca54e25.js",
|
|
592
592
|
"__mf/js/async/3980.7cea5715.js",
|
|
593
593
|
"__mf/js/async/6377.ca974d89.js",
|
|
594
|
-
"__mf/js/async/5503.
|
|
594
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
595
595
|
"__mf/js/async/4421.42e889f6.js",
|
|
596
596
|
"__mf/js/async/4062.3ab7f987.js",
|
|
597
597
|
"__mf/js/async/212.bd5d617a.js",
|
|
@@ -632,7 +632,7 @@
|
|
|
632
632
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
633
633
|
"__mf/js/async/537.6911ea2e.js",
|
|
634
634
|
"__mf/js/async/5345.2e531d76.js",
|
|
635
|
-
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.
|
|
635
|
+
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.b4228802.js"
|
|
636
636
|
],
|
|
637
637
|
"async": [
|
|
638
638
|
"__mf/js/async/1964.95da06f6.js",
|
|
@@ -653,14 +653,14 @@
|
|
|
653
653
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
654
654
|
"__mf/js/async/537.6911ea2e.js",
|
|
655
655
|
"__mf/js/async/5345.2e531d76.js",
|
|
656
|
-
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.
|
|
657
|
-
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.
|
|
658
|
-
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.
|
|
656
|
+
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a4085adb.js",
|
|
657
|
+
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.8551745e.js",
|
|
658
|
+
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.46f99477.js",
|
|
659
659
|
"__mf/js/async/5769.f14c9663.js",
|
|
660
660
|
"__mf/js/async/7376.c7eb05b9.js",
|
|
661
661
|
"__mf/js/async/9550.e19763f8.js",
|
|
662
662
|
"__mf/js/async/3818.dde21d04.js",
|
|
663
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
663
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js",
|
|
664
664
|
"__mf/js/async/3871.6915e369.js",
|
|
665
665
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
666
666
|
"__mf/js/async/528.d364bb0e.js",
|
|
@@ -671,7 +671,7 @@
|
|
|
671
671
|
"__mf/js/async/6292.7b8efa78.js",
|
|
672
672
|
"__mf/js/async/738.aca54e25.js",
|
|
673
673
|
"__mf/js/async/6377.ca974d89.js",
|
|
674
|
-
"__mf/js/async/5503.
|
|
674
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
675
675
|
"__mf/js/async/4421.42e889f6.js",
|
|
676
676
|
"__mf/js/async/4062.3ab7f987.js",
|
|
677
677
|
"__mf/js/async/212.bd5d617a.js",
|
|
@@ -711,7 +711,7 @@
|
|
|
711
711
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
712
712
|
"__mf/js/async/537.6911ea2e.js",
|
|
713
713
|
"__mf/js/async/5345.2e531d76.js",
|
|
714
|
-
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.
|
|
714
|
+
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a4085adb.js"
|
|
715
715
|
],
|
|
716
716
|
"async": [
|
|
717
717
|
"__mf/js/async/1964.95da06f6.js",
|
|
@@ -732,7 +732,7 @@
|
|
|
732
732
|
"__mf/js/async/7376.c7eb05b9.js",
|
|
733
733
|
"__mf/js/async/9550.e19763f8.js",
|
|
734
734
|
"__mf/js/async/3818.dde21d04.js",
|
|
735
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
735
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js",
|
|
736
736
|
"__mf/js/async/3871.6915e369.js",
|
|
737
737
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
738
738
|
"__mf/js/async/528.d364bb0e.js",
|
|
@@ -743,7 +743,7 @@
|
|
|
743
743
|
"__mf/js/async/6292.7b8efa78.js",
|
|
744
744
|
"__mf/js/async/738.aca54e25.js",
|
|
745
745
|
"__mf/js/async/6377.ca974d89.js",
|
|
746
|
-
"__mf/js/async/5503.
|
|
746
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
747
747
|
"__mf/js/async/4421.42e889f6.js",
|
|
748
748
|
"__mf/js/async/4062.3ab7f987.js",
|
|
749
749
|
"__mf/js/async/212.bd5d617a.js",
|
|
@@ -783,7 +783,7 @@
|
|
|
783
783
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
784
784
|
"__mf/js/async/537.6911ea2e.js",
|
|
785
785
|
"__mf/js/async/5345.2e531d76.js",
|
|
786
|
-
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.
|
|
786
|
+
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.8551745e.js"
|
|
787
787
|
],
|
|
788
788
|
"async": [
|
|
789
789
|
"__mf/js/async/1964.95da06f6.js",
|
|
@@ -804,7 +804,7 @@
|
|
|
804
804
|
"__mf/js/async/7376.c7eb05b9.js",
|
|
805
805
|
"__mf/js/async/9550.e19763f8.js",
|
|
806
806
|
"__mf/js/async/3818.dde21d04.js",
|
|
807
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
807
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js",
|
|
808
808
|
"__mf/js/async/3871.6915e369.js",
|
|
809
809
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
810
810
|
"__mf/js/async/528.d364bb0e.js",
|
|
@@ -815,7 +815,7 @@
|
|
|
815
815
|
"__mf/js/async/6292.7b8efa78.js",
|
|
816
816
|
"__mf/js/async/738.aca54e25.js",
|
|
817
817
|
"__mf/js/async/6377.ca974d89.js",
|
|
818
|
-
"__mf/js/async/5503.
|
|
818
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
819
819
|
"__mf/js/async/4421.42e889f6.js",
|
|
820
820
|
"__mf/js/async/4062.3ab7f987.js",
|
|
821
821
|
"__mf/js/async/212.bd5d617a.js",
|
|
@@ -855,7 +855,7 @@
|
|
|
855
855
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
856
856
|
"__mf/js/async/537.6911ea2e.js",
|
|
857
857
|
"__mf/js/async/5345.2e531d76.js",
|
|
858
|
-
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.
|
|
858
|
+
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.46f99477.js"
|
|
859
859
|
],
|
|
860
860
|
"async": [
|
|
861
861
|
"__mf/js/async/1964.95da06f6.js",
|
|
@@ -876,7 +876,7 @@
|
|
|
876
876
|
"__mf/js/async/7376.c7eb05b9.js",
|
|
877
877
|
"__mf/js/async/9550.e19763f8.js",
|
|
878
878
|
"__mf/js/async/3818.dde21d04.js",
|
|
879
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
879
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js",
|
|
880
880
|
"__mf/js/async/3871.6915e369.js",
|
|
881
881
|
"__mf/js/async/1465.3b5e12d5.js",
|
|
882
882
|
"__mf/js/async/528.d364bb0e.js",
|
|
@@ -887,7 +887,7 @@
|
|
|
887
887
|
"__mf/js/async/6292.7b8efa78.js",
|
|
888
888
|
"__mf/js/async/738.aca54e25.js",
|
|
889
889
|
"__mf/js/async/6377.ca974d89.js",
|
|
890
|
-
"__mf/js/async/5503.
|
|
890
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
891
891
|
"__mf/js/async/4421.42e889f6.js",
|
|
892
892
|
"__mf/js/async/4062.3ab7f987.js",
|
|
893
893
|
"__mf/js/async/212.bd5d617a.js",
|
|
@@ -933,7 +933,7 @@
|
|
|
933
933
|
"__mf/js/async/7376.c7eb05b9.js",
|
|
934
934
|
"__mf/js/async/9550.e19763f8.js",
|
|
935
935
|
"__mf/js/async/3818.dde21d04.js",
|
|
936
|
-
"__mf/js/async/__federation_expose_PrometheusExplorer.
|
|
936
|
+
"__mf/js/async/__federation_expose_PrometheusExplorer.3f83dfda.js"
|
|
937
937
|
],
|
|
938
938
|
"async": [
|
|
939
939
|
"__mf/js/async/1964.95da06f6.js",
|
|
@@ -956,11 +956,11 @@
|
|
|
956
956
|
"__mf/js/async/5724.6ee6ec51.js",
|
|
957
957
|
"__mf/js/async/537.6911ea2e.js",
|
|
958
958
|
"__mf/js/async/5345.2e531d76.js",
|
|
959
|
-
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.
|
|
959
|
+
"__mf/js/async/__federation_expose_PrometheusTimeSeriesQuery.b4228802.js",
|
|
960
960
|
"__mf/js/async/7272.a763aa92.js",
|
|
961
|
-
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.
|
|
962
|
-
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.
|
|
963
|
-
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.
|
|
961
|
+
"__mf/js/async/__federation_expose_PrometheusLabelValuesVariable.a4085adb.js",
|
|
962
|
+
"__mf/js/async/__federation_expose_PrometheusLabelNamesVariable.8551745e.js",
|
|
963
|
+
"__mf/js/async/__federation_expose_PrometheusPromQLVariable.46f99477.js",
|
|
964
964
|
"__mf/js/async/3871.6915e369.js",
|
|
965
965
|
"__mf/js/async/528.d364bb0e.js",
|
|
966
966
|
"__mf/js/async/212.bd5d617a.js",
|
|
@@ -968,7 +968,7 @@
|
|
|
968
968
|
"__mf/js/async/6292.7b8efa78.js",
|
|
969
969
|
"__mf/js/async/6377.ca974d89.js",
|
|
970
970
|
"__mf/js/async/3090.9fb5fe73.js",
|
|
971
|
-
"__mf/js/async/5503.
|
|
971
|
+
"__mf/js/async/5503.d391f0fc.js",
|
|
972
972
|
"__mf/js/async/4323.4266fd6a.js",
|
|
973
973
|
"__mf/js/async/3057.e568f9b6.js",
|
|
974
974
|
"__mf/js/async/7740.0c5363fd.js",
|