Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions web/src/api/ipfix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,14 @@ export interface Fields {
_IsFirst?: string;
/** In conversation tracking, a counter of flow logs per conversation */
numFlowLogs?: number;
/** Xlat Source IP address (ipv4 or ipv6) */
XlatSrcAddr?: string;
/** Xlat Destination IP address (ipv4 or ipv6) */
XlatDstAddr?: string;
/** Xlat Source port */
XlatSrcPort?: number;
/** Xlat Destination port */
XlatDstPort?: number;
Comment on lines +182 to +189
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you can do that but it's not required anymore since it's defined from config

}

export type Field = keyof Fields | keyof Labels;
2 changes: 2 additions & 0 deletions web/src/utils/columns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ export enum ColumnsId {
kubeobject = 'K8S_Object',
srckubeobject = 'SrcK8S_Object',
dstkubeobject = 'DstK8S_Object',
xlatsrckubeobject = 'XlatSrcK8S_Object',
xlatdstkubeobject = 'XlatDstK8S_Object',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same here I think it's not needed, so I'd say the whole PR is not needed

addr = 'Addr',
srcaddr = 'SrcAddr',
dstaddr = 'DstAddr',
Expand Down
Loading