mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-12 15:52:57 +00:00
67 lines
2.3 KiB
TypeScript
67 lines
2.3 KiB
TypeScript
/**
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership.
|
|
* The ASF licenses this file to You under the Apache License, Version 2.0
|
|
* (the "License"); you may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
import type { MetricsResults } from "@/types/dashboard";
|
|
import { TestJson } from "./data";
|
|
|
|
export function useSnapshot(p: { name: string; results: MetricsResults[] }[]) {
|
|
const { metrics } = TestJson.snapshot as any;
|
|
function processResults() {
|
|
const sources = metrics.map((metric: { name: string; results: MetricsResults[] }) => {
|
|
const values = metric.results.map(
|
|
(r: { values: { value: string }[]; metric: { labels: { key: string; value: string }[] } }) => {
|
|
const arr = r.values.map((v: { value: string }) => Number(v.value));
|
|
if (!r.metric.labels.length) {
|
|
return { values: arr };
|
|
}
|
|
const name = r.metric.labels
|
|
.map((label: { key: string; value: string }) => `${label.key}=${label.value}`)
|
|
.join(",");
|
|
return { name, values: arr };
|
|
},
|
|
);
|
|
|
|
return { name: metric.name, values };
|
|
});
|
|
|
|
return sources;
|
|
}
|
|
|
|
function getMetricsMap() {
|
|
const metricsMap: { [key: string]: number[] } = {};
|
|
for (const metric of metrics) {
|
|
for (const item of metric.results) {
|
|
const arr = item.values.map((v: { value: string }) => Number(v.value));
|
|
if (!item.metric.labels.length) {
|
|
metricsMap[metric.name] = arr;
|
|
} else {
|
|
const name = item.metric.labels
|
|
.map((label: { key: string; value: string }) => `${label.key}=${label.value}`)
|
|
.join(",");
|
|
metricsMap[name] = arr;
|
|
}
|
|
}
|
|
}
|
|
|
|
return metricsMap;
|
|
}
|
|
|
|
return {
|
|
processResults,
|
|
getMetricsMap,
|
|
};
|
|
}
|