feat: Implement creating tasks UI for network profiling widget (#193)

This commit is contained in:
Fine0830
2022-11-28 17:57:23 +08:00
committed by GitHub
parent 23e9742946
commit d8f91bbdf3
10 changed files with 344 additions and 34 deletions

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

@@ -77,3 +77,9 @@ export type ProcessNode = {
x?: number;
y?: number;
};
export interface NetworkProfilingRequest {
uriRegex: string;
when4xx: string;
when5xx: string;
minDuration: number;
}