diff options
| author | yaling888 <[email protected]> | 2021-07-30 11:59:49 +0800 |
|---|---|---|
| committer | yaling888 <[email protected]> | 2021-07-30 11:59:49 +0800 |
| commit | 96c16b0ae5562cbe16b311da0ed9f839da172c4e (patch) | |
| tree | 51c3d5cde30b6124b4199ca056fd6399fdc935e8 /src/api | |
| parent | 1d4ce87c5eb2fc675857355efc539785eb0bd288 (diff) | |
feat: add process name to metadata
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/connections.ts | 2 |
1 files changed, 2 insertions, 0 deletions
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; |
