mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-02 17:34:51 +00:00
feat: add Percentage Of Root
and Percentage Of Selected
in the eBPF widget (#101)
This commit is contained in:
parent
74cb089271
commit
4d26728eb5
2
src/types/ebpf.d.ts
vendored
2
src/types/ebpf.d.ts
vendored
@ -65,6 +65,8 @@ export type StackElement = {
|
|||||||
stackType: string;
|
stackType: string;
|
||||||
value: number;
|
value: number;
|
||||||
children?: StackElement[];
|
children?: StackElement[];
|
||||||
|
rateOfRoot?: string;
|
||||||
|
rateOfParent: string;
|
||||||
};
|
};
|
||||||
export type AnalyzationTrees = {
|
export type AnalyzationTrees = {
|
||||||
id: string;
|
id: string;
|
||||||
|
@ -173,7 +173,7 @@ async function analyzeEBPF() {
|
|||||||
timeRanges,
|
timeRanges,
|
||||||
aggregateType: aggregateType.value,
|
aggregateType: aggregateType.value,
|
||||||
});
|
});
|
||||||
if (res.data.errors) {
|
if (res.data && res.data.errors) {
|
||||||
ElMessage.error(res.data.errors);
|
ElMessage.error(res.data.errors);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -30,6 +30,7 @@ import "d3-flame-graph/dist/d3-flamegraph.css";
|
|||||||
/*global Nullable*/
|
/*global Nullable*/
|
||||||
const ebpfStore = useEbpfStore();
|
const ebpfStore = useEbpfStore();
|
||||||
const stackTree = ref<Nullable<StackElement>>(null);
|
const stackTree = ref<Nullable<StackElement>>(null);
|
||||||
|
const selectStack = ref<Nullable<StackElement>>(null);
|
||||||
const graph = ref<Nullable<HTMLDivElement>>(null);
|
const graph = ref<Nullable<HTMLDivElement>>(null);
|
||||||
const flameChart = ref<any>(null);
|
const flameChart = ref<any>(null);
|
||||||
const min = ref<number>(1);
|
const min = ref<number>(1);
|
||||||
@ -52,6 +53,8 @@ function drawGraph() {
|
|||||||
symbol: "Virtual Root",
|
symbol: "Virtual Root",
|
||||||
dumpCount: 0,
|
dumpCount: 0,
|
||||||
stackType: "",
|
stackType: "",
|
||||||
|
rateOfRoot: "",
|
||||||
|
rateOfParent: "",
|
||||||
};
|
};
|
||||||
countRange();
|
countRange();
|
||||||
for (const tree of ebpfStore.analyzeTrees) {
|
for (const tree of ebpfStore.analyzeTrees) {
|
||||||
@ -81,18 +84,36 @@ function drawGraph() {
|
|||||||
.title("")
|
.title("")
|
||||||
.selfValue(false)
|
.selfValue(false)
|
||||||
.inverted(true)
|
.inverted(true)
|
||||||
|
.onClick((d: { data: StackElement }) => {
|
||||||
|
selectStack.value = d.data;
|
||||||
|
})
|
||||||
.setColorMapper((d, originalColor) =>
|
.setColorMapper((d, originalColor) =>
|
||||||
d.highlight ? "#6aff8f" : originalColor
|
d.highlight ? "#6aff8f" : originalColor
|
||||||
);
|
);
|
||||||
const tip = (d3tip as any)()
|
const tip = (d3tip as any)()
|
||||||
.attr("class", "d3-tip")
|
.attr("class", "d3-tip")
|
||||||
.direction("w")
|
.direction("w")
|
||||||
.html((d: { data: StackElement }) => {
|
.html((d: { data: StackElement } & { parent: { data: StackElement } }) => {
|
||||||
|
const name = d.data.name.replace("<", "<").replace(">", ">");
|
||||||
const valStr =
|
const valStr =
|
||||||
ebpfStore.aggregateType === AggregateTypes[0].value
|
ebpfStore.aggregateType === AggregateTypes[0].value
|
||||||
? `<div class="mb-5">Dump Count: ${d.data.dumpCount}</div>`
|
? `<div class="mb-5">Dump Count: ${d.data.dumpCount}</div>`
|
||||||
: `<div class="mb-5">Duration: ${d.data.dumpCount} ns</div>`;
|
: `<div class="mb-5">Duration: ${d.data.dumpCount} ns</div>`;
|
||||||
return `<div class="mb-5 name">Symbol: ${d.data.name}</div>${valStr}`;
|
const rateOfParent =
|
||||||
|
(d.parent &&
|
||||||
|
`<div class="mb-5">Percentage Of Selected: ${
|
||||||
|
(
|
||||||
|
(d.data.dumpCount /
|
||||||
|
((selectStack.value && selectStack.value.dumpCount) ||
|
||||||
|
root.dumpCount)) *
|
||||||
|
100
|
||||||
|
).toFixed(3) + "%"
|
||||||
|
}</div>`) ||
|
||||||
|
"";
|
||||||
|
const rateOfRoot = `<div class="mb-5">Percentage Of Root: ${
|
||||||
|
((d.data.dumpCount / root.dumpCount) * 100).toFixed(3) + "%"
|
||||||
|
}</div>`;
|
||||||
|
return `<div class="mb-5 name">Symbol: ${name}</div>${valStr}${rateOfParent}${rateOfRoot}`;
|
||||||
})
|
})
|
||||||
.style("max-width", "500px");
|
.style("max-width", "500px");
|
||||||
flameChart.value.tooltip(tip);
|
flameChart.value.tooltip(tip);
|
||||||
@ -122,6 +143,7 @@ function processTree(arr: StackElement[]) {
|
|||||||
obj[item.originId] = item;
|
obj[item.originId] = item;
|
||||||
}
|
}
|
||||||
const scale = d3.scaleLinear().domain([min.value, max.value]).range([1, 200]);
|
const scale = d3.scaleLinear().domain([min.value, max.value]).range([1, 200]);
|
||||||
|
|
||||||
for (const item of copyArr) {
|
for (const item of copyArr) {
|
||||||
if (item.parentId === "1") {
|
if (item.parentId === "1") {
|
||||||
const val = Number(scale(item.dumpCount).toFixed(4));
|
const val = Number(scale(item.dumpCount).toFixed(4));
|
||||||
|
Loading…
Reference in New Issue
Block a user