feat: enhance the process topology graph to support dragging nodes (#158)

This commit is contained in:
Fine0830
2022-09-15 17:18:39 +08:00
committed by GitHub
parent 9ed0121fd0
commit 26817e9f92
9 changed files with 311 additions and 291 deletions

2
src/types/ebpf.d.ts vendored
View File

@@ -74,4 +74,6 @@ export type ProcessNode = {
serviceInstanceName: string;
name: string;
isReal: boolean;
x?: number;
y?: number;
};