feat: add chains[0] and process to connections display (#205)

* add chains[0] display

* add metadata.process to connections
This commit is contained in:
Shun Li 2022-09-24 13:06:32 +08:00 committed by GitHub
parent 8bddf30dcf
commit 6423a29600
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -48,8 +48,12 @@ const ConnectionItem = (props: Props) => {
<Tag>{metadata.type}</Tag>
{metadata.process && <Tag>{metadata.process}</Tag>}
{chains.length > 0 && <Tag>{chains[value.chains.length - 1]}</Tag>}
{chains.length > 0 && <Tag>{chains[0]}</Tag>}
<Tag>{dayjs(start).fromNow()}</Tag>
{showTraffic && (

View File

@ -67,6 +67,7 @@ declare namespace ApiType {
sourcePort: string;
destinationPort: string;
destinationIP?: string;
process?: string;
};
upload: number;
download: number;