mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-01 07:42:52 +00:00
154 lines
4.5 KiB
TypeScript
154 lines
4.5 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 { defineStore } from "pinia";
|
|
import { Duration, Option } from "@/types/app";
|
|
import {
|
|
EBPFTaskCreationRequest,
|
|
EBPFProfilingSchedule,
|
|
EBPFTaskList,
|
|
AnalyzationTrees,
|
|
} from "@/types/ebpf";
|
|
import { Trace, Span } from "@/types/trace";
|
|
import { store } from "@/store";
|
|
import graphql from "@/graphql";
|
|
import { AxiosResponse } from "axios";
|
|
import { useAppStoreWithOut } from "@/store/modules/app";
|
|
|
|
interface EbpfStore {
|
|
durationTime: Duration;
|
|
taskList: EBPFTaskList[];
|
|
eBPFSchedules: EBPFProfilingSchedule[];
|
|
currentSchedule: EBPFProfilingSchedule | Record<string, never>;
|
|
analyzeTrees: AnalyzationTrees[];
|
|
labels: Option[];
|
|
couldProfiling: boolean;
|
|
tip: string;
|
|
}
|
|
|
|
export const ebpfStore = defineStore({
|
|
id: "eBPF",
|
|
state: (): EbpfStore => ({
|
|
durationTime: useAppStoreWithOut().durationTime,
|
|
taskList: [],
|
|
eBPFSchedules: [],
|
|
currentSchedule: {},
|
|
analyzeTrees: [],
|
|
labels: [{ value: "", label: "" }],
|
|
couldProfiling: false,
|
|
tip: "",
|
|
}),
|
|
actions: {
|
|
setCurrentSpan(span: Span) {
|
|
this.currentSpan = span;
|
|
},
|
|
setCurrentSchedule(s: Trace) {
|
|
this.currentSchedule = s;
|
|
},
|
|
async getCreateTaskData(serviceId: string) {
|
|
const res: AxiosResponse = await graphql
|
|
.query("getCreateTaskData")
|
|
.params({ serviceId });
|
|
|
|
if (res.data.errors) {
|
|
return res.data;
|
|
}
|
|
const json = res.data.data.createTaskData;
|
|
this.couldProfiling = json.couldProfiling || false;
|
|
this.labels = json.processLabels.map((d: string) => {
|
|
return { label: d, value: d };
|
|
});
|
|
return res.data;
|
|
},
|
|
async createTask(param: EBPFTaskCreationRequest) {
|
|
const res: AxiosResponse = await graphql
|
|
.query("saveEBPFTask")
|
|
.params({ request: param });
|
|
|
|
if (res.data.errors) {
|
|
return res.data;
|
|
}
|
|
this.getTaskList(param.serviceId);
|
|
return res.data;
|
|
},
|
|
async getTaskList(serviceId: string) {
|
|
const res: AxiosResponse = await graphql
|
|
.query("getEBPFTasks")
|
|
.params({ serviceId });
|
|
|
|
this.tip = "";
|
|
if (res.data.errors) {
|
|
return res.data;
|
|
}
|
|
this.taskList = res.data.data.queryEBPFTasks.reverse() || [];
|
|
if (!this.taskList.length) {
|
|
return res.data;
|
|
}
|
|
this.getEBPFSchedules({ taskId: this.taskList[0].taskId });
|
|
return res.data;
|
|
},
|
|
async getEBPFSchedules(params: { taskId: string; duration?: Duration }) {
|
|
const duration = useAppStoreWithOut().durationTime;
|
|
const res: AxiosResponse = await graphql
|
|
.query("getEBPFSchedules")
|
|
.params({ ...params, duration });
|
|
|
|
if (res.data.errors) {
|
|
this.eBPFSchedules = [];
|
|
return res.data;
|
|
}
|
|
this.tip = "";
|
|
const { eBPFSchedules } = res.data.data;
|
|
|
|
this.eBPFSchedules = eBPFSchedules;
|
|
if (!eBPFSchedules.length) {
|
|
this.eBPFSchedules = [];
|
|
}
|
|
this.analyzeTrees = [];
|
|
return res.data;
|
|
},
|
|
async getEBPFAnalyze(params: {
|
|
scheduleIdList: string[];
|
|
timeRanges: Array<{ start: number; end: number }>;
|
|
}) {
|
|
const res: AxiosResponse = await graphql
|
|
.query("getEBPFResult")
|
|
.params(params);
|
|
|
|
if (res.data.errors) {
|
|
this.analyzeTrees = [];
|
|
return res.data;
|
|
}
|
|
const { analysisEBPFResult } = res.data.data;
|
|
this.tip = analysisEBPFResult.tip;
|
|
if (!analysisEBPFResult) {
|
|
this.analyzeTrees = [];
|
|
return res.data;
|
|
}
|
|
if (analysisEBPFResult.tip) {
|
|
this.analyzeTrees = [];
|
|
return res.data;
|
|
}
|
|
this.analyzeTrees = analysisEBPFResult.trees[0].elements;
|
|
return res.data;
|
|
},
|
|
},
|
|
});
|
|
|
|
export function useEbpfStore(): any {
|
|
return ebpfStore(store);
|
|
}
|