add metadata.process to connections

This commit is contained in:
Shun Li 2022-09-23 23:35:28 +08:00
parent 87e8ed62c0
commit 86f1ba2c67
2 changed files with 3 additions and 0 deletions

View file

@ -48,6 +48,8 @@ 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>}

View file

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