File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,14 @@ export interface Fields {
179179 _IsFirst ?: string ;
180180 /** In conversation tracking, a counter of flow logs per conversation */
181181 numFlowLogs ?: number ;
182+ /** Xlat Source IP address (ipv4 or ipv6) */
183+ XlatSrcAddr ?: string ;
184+ /** Xlat Destination IP address (ipv4 or ipv6) */
185+ XlatDstAddr ?: string ;
186+ /** Xlat Source port */
187+ XlatSrcPort ?: number ;
188+ /** Xlat Destination port */
189+ XlatDstPort ?: number ;
182190}
183191
184192export type Field = keyof Fields | keyof Labels ;
Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ export enum ColumnsId {
2727 kubeobject = 'K8S_Object' ,
2828 srckubeobject = 'SrcK8S_Object' ,
2929 dstkubeobject = 'DstK8S_Object' ,
30+ xlatsrckubeobject = 'XlatSrcK8S_Object' ,
31+ xlatdstkubeobject = 'XlatDstK8S_Object' ,
3032 addr = 'Addr' ,
3133 srcaddr = 'SrcAddr' ,
3234 dstaddr = 'DstAddr' ,
You can’t perform that action at this time.
0 commit comments