From 96c16b0ae5562cbe16b311da0ed9f839da172c4e Mon Sep 17 00:00:00 2001 From: yaling888 <73897884+yaling888@users.noreply.github.com> Date: Fri, 30 Jul 2021 11:59:49 +0800 Subject: feat: add process name to metadata --- src/api/connections.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/api') diff --git a/src/api/connections.ts b/src/api/connections.ts index d4ed58e..256e4fd 100644 --- a/src/api/connections.ts +++ b/src/api/connections.ts @@ -21,6 +21,7 @@ export type ConnectionItem = { sourcePort: string; destinationPort: string; host: string; + process: string; }; upload: number; download: number; @@ -29,6 +30,7 @@ export type ConnectionItem = { chains: string[]; // e.g. 'Match', 'DomainKeyword' rule: string; + rulePayload: string; }; type ConnectionsData = { downloadTotal: number; -- cgit v1.3.1