Skip to content

Commit af8654a

Browse files
jpinsonneaumsherif1234
authored andcommitted
update columns config
1 parent ca12cd3 commit af8654a

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

cmd/config.yaml

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -657,6 +657,20 @@ columns:
657657
default: false
658658
width: 15
659659
feature: packetTranslation
660+
- id: IPSec
661+
name: Is IPSec operation successful?
662+
field: IPSecSuccess
663+
filter: ipsec_success
664+
default: true
665+
width: 10
666+
feature: ipsec
667+
- id: IPSecCode
668+
name: IPSec Return Code
669+
field: IPSecRetCode
670+
filter: ipsec_retcode
671+
default: true
672+
width: 10
673+
feature: ipsec
660674
filters:
661675
- id: cluster_name
662676
name: Cluster
@@ -1057,6 +1071,12 @@ filters:
10571071
component: autocomplete
10581072
category: destination
10591073
hint: Specify a single port number or name.
1074+
- id: ipsec_success
1075+
name: IPSec processing succeeded ?
1076+
component: number
1077+
- id: ipsec_retcode
1078+
name: IPSec processing return code
1079+
component: number
10601080
scopes:
10611081
- id: cluster
10621082
name: Cluster
@@ -1316,9 +1336,6 @@ fields:
13161336
- name: IcmpCode
13171337
type: number
13181338
description: ICMP code
1319-
- name: Duplicate
1320-
type: boolean
1321-
description: Indicates if this flow was also captured from another interface on the same host
13221339
- name: FlowDirection
13231340
type: number
13241341
description: |
@@ -1415,6 +1432,12 @@ fields:
14151432
- name: K8S_ClusterName
14161433
type: string
14171434
description: Cluster name or identifier
1435+
- name: IPSecRetCode
1436+
type: number
1437+
description: IPSec operation return code
1438+
- name: IPSecSuccess
1439+
type: boolean
1440+
description: IPSec processing succeeded
14181441
- name: _RecordType
14191442
type: string
14201443
description: "Type of record: `flowLog` for regular flow logs, or `newConnection`, `heartbeat`, `endConnection` for conversation tracking"

cmd/options.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ var (
2323
networkEventsDisplay = "networkEvents"
2424
pktTranslation = "packetTranslation"
2525
udnMapping = "udnMapping"
26+
ipSec = "ipsec"
2627
display = option{
2728
all: []optionItem{
2829
// exclusive displays
@@ -35,8 +36,9 @@ var (
3536
{name: "Network events", ids: []string{networkEventsDisplay}},
3637
{name: "Packet translation", ids: []string{pktTranslation}},
3738
{name: "UDN mapping", ids: []string{udnMapping}},
39+
{name: "IPSec", ids: []string{ipSec}},
3840
// all features display
39-
{name: allOptions, ids: []string{pktDropFeature, dnsFeature, rttFeature, networkEventsDisplay, pktTranslation, udnMapping}},
41+
{name: allOptions, ids: []string{pktDropFeature, dnsFeature, rttFeature, networkEventsDisplay, pktTranslation, udnMapping, ipSec}},
4042
},
4143
// standard display by default
4244
current: 1,

0 commit comments

Comments
 (0)