add metadata.process to connections
This commit is contained in:
parent
87e8ed62c0
commit
86f1ba2c67
2 changed files with 3 additions and 0 deletions
|
@ -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>}
|
||||
|
|
1
src/services/types.d.ts
vendored
1
src/services/types.d.ts
vendored
|
@ -67,6 +67,7 @@ declare namespace ApiType {
|
|||
sourcePort: string;
|
||||
destinationPort: string;
|
||||
destinationIP?: string;
|
||||
process?: string;
|
||||
};
|
||||
upload: number;
|
||||
download: number;
|
||||
|
|
Loading…
Add table
Reference in a new issue