forked from netobserv/netobserv-web-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample-config.yaml
More file actions
1960 lines (1960 loc) · 61.4 KB
/
Copy pathsample-config.yaml
File metadata and controls
1960 lines (1960 loc) · 61.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
server:
port: 9001
metricsPort: 9002
authCheck: none
loki:
url: http://localhost:3100
labels:
- SrcK8S_Namespace
- SrcK8S_OwnerName
- SrcK8S_Type
- DstK8S_Namespace
- DstK8S_OwnerName
- DstK8S_Type
- K8S_FlowLayer
- FlowDirection
# - _RecordType
# - K8S_ClusterName
# - SrcK8S_Zone
# - DstK8S_Zone
tenantID: netobserv
useMocks: false
prometheus:
url: https://localhost:9090
timeout: 30s
skipTls: true
# tokenPath: /tmp/oc-token.txt
alertManager:
# url: https://localhost:9094
metrics:
- enabled: false
name: netobserv_node_egress_bytes_total
type: counter
valueField: Bytes
labels:
- SrcK8S_HostName
- DstK8S_HostName
- enabled: true
name: netobserv_node_ingress_bytes_total
type: counter
valueField: Bytes
labels:
- SrcK8S_HostName
- DstK8S_HostName
frontend:
recordTypes:
- flowLog
# - newConnection
# - heartbeat
# - endConnection
features:
# eBPF agent features
# - pktDrop
# - dnsTracking
# - flowRTT
# - multiNetworks
# - packetTranslation
# processor features
# - multiCluster
# - zones
portNaming:
enable: true
portNames:
"3100": loki
quickFilters:
- name: Applications
filter:
flow_layer: 'app'
default: true
- name: Infrastructure
filter:
flow_layer: 'infra'
- name: Pods network
filter:
src_kind: 'Pod'
dst_kind: 'Pod'
default: true
- name: Services network
filter:
dst_kind: 'Service'
- name: DNS
filter:
dns_id!: '0'
alertNamespaces:
- netobserv
sampling: 50
healthRules:
- template: PacketDropsByKernel
mode: recording
description: Packet drops by kernel
summary: Percentage of packets dropped by kernel
variants:
- groupBy: Namespace
lowVolumeThreshold: "5"
thresholds:
info: "10"
warning: "20"
- groupBy: Node
thresholds:
info: "5"
warning: "10"
- template: PacketDropsByDevice
mode: recording
description: Packet drops by network device
summary: Percentage of packets dropped at device level
variants:
- groupBy: Node
thresholds:
warning: "5"
- template: DNSErrors
mode: recording
description: DNS resolution errors
summary: Percentage of failed DNS queries
variants:
- groupBy: ""
thresholds:
warning: "5"
- groupBy: Namespace
thresholds:
info: "5"
warning: "10"
- template: DNSNxDomain
mode: recording
description: DNS NXDOMAIN responses
summary: Percentage of DNS queries returning NXDOMAIN
variants:
- groupBy: Namespace
thresholds:
info: "10"
warning: "80"
- template: NetpolDenied
mode: recording
description: Network policy denials
summary: Percentage of flows denied by network policies
variants:
- groupBy: Namespace
thresholds:
info: "5"
warning: "10"
- template: LatencyHighTrend
mode: recording
description: Latency trending high
summary: RTT increase compared to baseline
variants:
- groupBy: Namespace
thresholds:
info: "100"
- template: ExternalEgressHighTrend
mode: recording
description: External egress trending high
summary: Egress to external endpoints increase
variants:
- groupBy: Node
thresholds:
warning: "200"
- groupBy: Namespace
thresholds:
info: "100"
warning: "500"
- template: ExternalIngressHighTrend
mode: recording
description: External ingress trending high
summary: Ingress from external endpoints increase
variants:
- groupBy: Node
thresholds:
warning: "200"
- groupBy: Namespace
thresholds:
info: "100"
warning: "500"
# The following configuration is taken from Network Observability Operator
# see https://github.com/netobserv/network-observability-operator/blob/main/controllers/consoleplugin/config/static-frontend-config.yaml
panels:
# Protocol
- Proto_Bytes
- sum_Proto_Bytes
- avg_Proto_Bytes
- Proto_Packets
- sum_Proto_Packets
- avg_Proto_Packets
- Proto_Flows
# DSCP
- Dscp_Bytes
- Dscp_Packets
- min_Dscp_TimeFlowRttNs
- max_Dscp_TimeFlowRttNs
- avg_Dscp_TimeFlowRttNs
- p90_Dscp_TimeFlowRttNs
- p99_Dscp_TimeFlowRttNs
- min_Dscp_DnsLatencyMs
- max_Dscp_DnsLatencyMs
- avg_Dscp_DnsLatencyMs
- p90_Dscp_DnsLatencyMs
- p99_Dscp_DnsLatencyMs
- Dscp_Flows
# Port numbers
- SrcPort_Bytes
- sum_SrcPort_Bytes
- SrcPort_Packets
- sum_SrcPort_Packets
- SrcPort_TimeFlowRttNs
- min_SrcPort_TimeFlowRttNs
- max_SrcPort_TimeFlowRttNs
- avg_SrcPort_TimeFlowRttNs
- p90_SrcPort_TimeFlowRttNs
- p99_SrcPort_TimeFlowRttNs
- DstPort_Bytes
- sum_DstPort_Bytes
- DstPort_Packets
- sum_DstPort_Packets
- min_DstPort_TimeFlowRttNs
- max_DstPort_TimeFlowRttNs
- avg_DstPort_TimeFlowRttNs
- p90_DstPort_TimeFlowRttNs
- p99_DstPort_TimeFlowRttNs
# Node Directions
- FlowDirection_Bytes
- FlowDirection_Packets
- FlowDirection_Flows
# DNS capture errors
- DnsErrno_Flows
# Connection tracking flow count
- numFlowLogs_Flows
# Bytes / Packets rates on current scope
- Bytes
- Packets
# flow on current scope
- Flows
- DnsFlows
# TODO: implement a way to manage plurals for interfaces and UDNs
# Interfaces Directions
#- IfDirections_Bytes
#- IfDirections_Packets
#- IfDirections_Flows
# Interfaces names
#- Interfaces_Bytes
#- sum_Interfaces_Bytes
#- avg_Interfaces_Bytes
#- Interfaces_Packets
#- sum_Interfaces_Packets
#- avg_Interfaces_Packets
#- Interfaces_Flows
# Udns
#- Udns_Bytes
#- Udns_Packets
#- min_Udns_TimeFlowRttNs
#- max_Udns_TimeFlowRttNs
#- avg_Udns_TimeFlowRttNs
#- p90_Udns_TimeFlowRttNs
#- p99_Udns_TimeFlowRttNs
#- min_Udns_DnsLatencyMs
#- max_Udns_DnsLatencyMs
#- avg_Udns_DnsLatencyMs
#- p90_Udns_DnsLatencyMs
#- p99_Udns_DnsLatencyMs
#- Udns_Flows
columns:
- id: StartTime
name: Start Time
tooltip: Time of the first packet observed. Unlike End Time, it is not used in queries to select records in an interval.
field: TimeFlowStartMs
default: false
width: 15
- id: EndTime
name: End Time
tooltip: Time of the last packet observed. This is what is used in queries to select records in an interval.
field: TimeFlowEndMs
default: true
width: 15
- id: RecordType
name: Event / Type
field: _RecordType
filter: type
default: true
width: 15
- id: _HashId
name: Conversation Id
field: _HashId
filter: id
default: true
width: 15
- id: ClusterName
name: Cluster
tooltip: The cluster ID or Name.
field: K8S_ClusterName
filter: cluster_name
default: false
width: 15
feature: multiCluster
- id: SrcK8S_Name
group: Source
name: Name
tooltip: The source name of the related kubernetes resource.
docURL: http://kubernetes.io/docs/user-guide/identifiers#names
field: SrcK8S_Name
filter: src_name
calculated: kubeObject(SrcK8S_Type,SrcK8S_Namespace,SrcK8S_Name,0)
default: true
width: 15
- id: SrcK8S_Type
group: Source
name: Kind
tooltip: |-
The kind of the related kubernetes resource. Examples:
- Pod
- Service
- Node
field: SrcK8S_Type
filter: src_kind
default: false
width: 10
- id: SrcK8S_OwnerName
group: Source
name: Owner
tooltip: The source owner name of the related kubernetes resource.
docURL: https://kubernetes.io/docs/concepts/overview/working-with-objects/owners-dependents/
field: SrcK8S_OwnerName
filter: src_owner_name
calculated: kubeObject(SrcK8S_OwnerType,SrcK8S_Namespace,SrcK8S_OwnerName,0)
default: false
width: 15
- id: SrcK8S_OwnerType
group: Source
name: Owner Kind
tooltip: |-
The owner kind of the related kubernetes resource. Examples:
- Deployment
- StatefulSet
- DaemonSet
- Job
- CronJob
field: SrcK8S_OwnerType
filter: src_kind
default: false
width: 10
- id: SrcK8S_Namespace
group: Source
name: Namespace
tooltip: The source namespace of the related kubernetes resource.
docURL: http://kubernetes.io/docs/user-guide/identifiers#namespaces
field: SrcK8S_Namespace
filter: src_namespace
calculated: kubeObject('Namespace','',SrcK8S_Namespace,0)
default: true
width: 15
- id: SrcAddr
group: Source
name: IP
tooltip: The source IP address. Can be either in IPv4 or IPv6 format.
field: SrcAddr
filter: src_address
default: false
width: 10
- id: SrcPort
group: Source
name: Port
tooltip: The source port number.
field: SrcPort
filter: src_port
default: true
width: 10
- id: SrcMac
group: Source
name: MAC
tooltip: The source MAC address.
field: SrcMac
filter: src_mac
default: false
width: 10
- id: SrcK8S_HostIP
group: Source
name: Node IP
tooltip: The source node IP address. Can be either in IPv4 or IPv6 format.
field: SrcK8S_HostIP
filter: src_host_address
default: false
width: 10
- id: SrcK8S_HostName
group: Source
name: Node Name
tooltip: The source name of the node running the workload.
docURL: https://kubernetes.io/docs/concepts/architecture/nodes/
field: SrcK8S_HostName
filter: src_host_name
calculated: kubeObject('Node','',SrcK8S_HostName,0)
default: false
width: 15
- id: SrcK8S_Object
group: Source
name: Kubernetes Object
calculated: kubeObject(SrcK8S_Type,SrcK8S_Namespace,SrcK8S_Name,1) or concat(SrcAddr,':',SrcPort)
default: false
width: 15
- id: SrcK8S_OwnerObject
group: Source
name: Owner Kubernetes Object
calculated: kubeObject(SrcK8S_OwnerType,SrcK8S_Namespace,SrcK8S_OwnerName,1)
default: false
width: 15
- id: SrcAddrPort
group: Source
name: IP & Port
calculated: concat(SrcAddr,':',SrcPort)
default: false
width: 15
- id: SrcZone
group: Source
name: Zone
field: SrcK8S_Zone
filter: src_zone
default: false
width: 15
feature: zones
- id: SrcSubnetLabel
group: Source
name: Subnet Label
field: SrcSubnetLabel
filter: src_subnet_label
default: false
width: 10
feature: subnetLabels
- id: SrcNetworkName
group: Source
name: Network Name
tooltip: Network name, such as Secondary network or UDN.
field: SrcK8S_NetworkName
filter: src_network
default: true
width: 15
feature: multiNetworks
- id: DstK8S_Name
group: Destination
name: Name
tooltip: The destination name of the related kubernetes resource.
docURL: http://kubernetes.io/docs/user-guide/identifiers#names
field: DstK8S_Name
filter: dst_name
calculated: kubeObject(DstK8S_Type,DstK8S_Namespace,DstK8S_Name,0)
default: true
width: 15
- id: DstK8S_Type
group: Destination
name: Kind
tooltip: |-
The kind of the related kubernetes resource. Examples:
- Pod
- Service
- Node
field: DstK8S_Type
filter: dst_kind
default: false
width: 10
- id: DstK8S_OwnerName
group: Destination
name: Owner
tooltip: The destination owner name of the related kubernetes resource.
docURL: https://kubernetes.io/docs/concepts/overview/working-with-objects/owners-dependents/
field: DstK8S_OwnerName
filter: dst_owner_name
calculated: kubeObject(DstK8S_OwnerType,DstK8S_Namespace,DstK8S_OwnerName,0)
default: false
width: 15
- id: DstK8S_OwnerType
group: Destination
name: Owner Kind
tooltip: |-
The owner kind of the related kubernetes resource. Examples:
- Deployment
- StatefulSet
- DaemonSet
- Job
- CronJob
field: DstK8S_OwnerType
filter: dst_kind
default: false
width: 10
- id: DstK8S_Namespace
group: Destination
name: Namespace
tooltip: The destination namespace of the related kubernetes resource.
docURL: http://kubernetes.io/docs/user-guide/identifiers#namespaces
field: DstK8S_Namespace
filter: dst_namespace
calculated: kubeObject('Namespace','',DstK8S_Namespace,0)
default: true
width: 15
- id: DstAddr
group: Destination
name: IP
tooltip: The destination IP address. Can be either in IPv4 or IPv6 format.
field: DstAddr
filter: dst_address
default: false
width: 10
- id: DstPort
group: Destination
name: Port
tooltip: The destination port number.
field: DstPort
filter: dst_port
default: true
width: 10
- id: DstMac
group: Destination
name: MAC
tooltip: The destination MAC address.
field: DstMac
filter: dst_mac
default: false
width: 10
- id: DstK8S_HostIP
group: Destination
name: Node IP
tooltip: The destination node IP address. Can be either in IPv4 or IPv6 format.
field: DstK8S_HostIP
filter: dst_host_address
default: false
width: 10
- id: DstK8S_HostName
group: Destination
name: Node Name
tooltip: The destination name of the node running the workload.
docURL: https://kubernetes.io/docs/concepts/architecture/nodes/
field: DstK8S_HostName
filter: dst_host_name
calculated: kubeObject('Node','',DstK8S_HostName,0)
default: false
width: 15
- id: DstK8S_Object
group: Destination
name: Kubernetes Object
calculated: kubeObject(DstK8S_Type,DstK8S_Namespace,DstK8S_Name,1) or concat(DstAddr,':',DstPort)
default: false
width: 15
- id: DstK8S_OwnerObject
group: Destination
name: Owner Kubernetes Object
calculated: kubeObject(DstK8S_OwnerType,DstK8S_Namespace,DstK8S_OwnerName,1)
default: false
width: 15
- id: DstAddrPort
group: Destination
name: IP & Port
calculated: concat(DstAddr,':',DstPort)
default: false
width: 15
- id: DstZone
group: Destination
name: Zone
field: DstK8S_Zone
filter: dst_zone
default: false
width: 15
feature: zones
- id: DstSubnetLabel
group: Destination
name: Subnet Label
field: DstSubnetLabel
filter: dst_subnet_label
default: false
width: 10
feature: subnetLabels
- id: DstNetworkName
group: Destination
name: Network Name
tooltip: Network name, such as Secondary network or UDN.
field: DstK8S_NetworkName
filter: dst_network
default: true
width: 15
feature: multiNetworks
- id: K8S_Name
name: Names
calculated: '[SrcK8S_Name,DstK8S_Name]'
filter: name
default: false
width: 15
- id: K8S_Type
name: Kinds
calculated: '[SrcK8S_Type,DstK8S_Type]'
filter: kind
default: false
width: 10
- id: K8S_OwnerName
name: Owners
calculated: '[SrcK8S_OwnerName,DstK8S_OwnerName]'
filter: owner_name
default: false
width: 15
- id: K8S_OwnerType
name: Owner Kinds
calculated: '[SrcK8S_OwnerType,DstK8S_OwnerType]'
filter: kind
default: false
width: 10
- id: K8S_Namespace
name: Namespaces
calculated: '[SrcK8S_Namespace,DstK8S_Namespace]'
filter: namespace
default: false
width: 15
- id: Addr
name: IP
calculated: '[SrcAddr,DstAddr]'
filter: address
default: false
width: 10
- id: Port
name: Ports
calculated: '[SrcPort,DstPort]'
filter: port
default: false
width: 10
- id: Mac
name: MAC
calculated: '[SrcMac,DstMac]'
filter: mac
default: false
width: 10
- id: K8S_HostIP
name: Node IP
calculated: '[SrcK8S_HostIP,DstK8S_HostIP]'
filter: host_address
default: false
width: 10
- id: Sampling
name: Sampling
field: Sampling
default: false
width: 10
- id: K8S_HostName
name: Node Name
calculated: '[SrcK8S_HostName,DstK8S_HostName]'
filter: host_name
default: false
width: 15
- id: K8S_Object
name: Kubernetes Objects
calculated: '[column.SrcK8S_Object,column.DstK8S_Object]'
filter: resource
default: false
width: 15
- id: K8S_OwnerObject
name: Owner Kubernetes Objects
calculated: '[column.SrcK8S_OwnerObject,column.DstK8S_OwnerObject]'
filter: resource
default: false
width: 15
- id: K8S_FlowLayer
name: Flow layer
field: K8S_FlowLayer
filter: flow_layer
default: false
width: 15
- id: AddrPort
name: IPs & Ports
calculated: '[column.SrcAddrPort,column.DstAddrPort]'
default: false
width: 15
- id: Proto
group: Protocol Info
name: Protocol
tooltip: The value of the protocol number in the IP packet header
field: Proto
filter: protocol
default: true
width: 10
- id: Dscp
group: Protocol Info
name: DSCP
tooltip: The value of the Differentiated Services Code Point
field: Dscp
filter: dscp
default: false
width: 10
- id: TCPFlags
group: Protocol Info
name: TCP Flags
tooltip: Logical OR combination of unique TCP flags comprised in the flow, according to RFC-9293, with additional custom values.
field: Flags
filter: tcp_flags
default: false
width: 10
- id: TLSVersion
group: Protocol Info
name: TLS Version
tooltip: TLS version found in handshake headers
field: TLSVersion
filter: tls_version
default: true
width: 10
feature: tlsTracking
- id: TLSCipherSuite
group: Protocol Info
name: TLS Cipher Suite
field: TLSCipherSuite
filter: tls_cipher_suite
width: 15
feature: tlsTracking
- id: TLSGroup
group: Protocol Info
name: TLS Group
field: TLSGroup
filter: tls_group
width: 10
feature: tlsTracking
- id: TLSTypes
group: Protocol Info
name: TLS Types
tooltip: TLS packet types, such as ClientHello or AppData
field: TLSTypes
filter: tls_types
width: 15
feature: tlsTracking
- id: IcmpType
group: Protocol Info
name: ICMP Type
tooltip: The type of the ICMP message
field: IcmpType
filter: icmp_type
default: false
width: 10
- id: IcmpCode
group: Protocol Info
name: ICMP Code
tooltip: The code of the ICMP message
field: IcmpCode
filter: icmp_code
default: false
width: 10
- id: FlowDirection
name: Node Direction
tooltip: The interpreted direction of the flow observed at the Node observation point.
field: FlowDirection
filter: node_direction
default: false
width: 10
- id: Interfaces
name: Interfaces
tooltip: The network interfaces of the Flow.
field: Interfaces
filter: interfaces
default: false
width: 10
- id: IfDirections
name: Interface Directions
tooltip: The directions of the Flow observed at the network interface observation point.
field: IfDirections
filter: ifdirections
default: false
width: 10
- id: Udns
name: UDN labels
tooltip: The list of User Defined Networks.
field: Udns
filter: udns
default: false
width: 15
feature: udnMapping
- id: FlowDirInts
name: Interfaces and Directions
tooltip: Pairs of network interface and direction of the Flow observed at the network interface observation point.
field: Interfaces
default: false
width: 15
- id: Bytes
name: Bytes
tooltip: The total aggregated number of bytes.
field: Bytes
fields:
- Bytes
- PktDropBytes
default: true
width: 5
- id: Packets
name: Packets
tooltip: The total aggregated number of packets.
field: Packets
fields:
- Packets
- PktDropPackets
default: true
width: 5
- id: FlowDuration
name: Duration
tooltip: Time elapsed between Start Time and End Time.
calculated: substract(TimeFlowEndMs,TimeFlowStartMs)
default: false
width: 5
- id: CollectionTime
name: Collection Time
tooltip: Reception time of the record by the collector.
calculated: multiply(TimeReceived,1000)
field: TimeReceived
default: false
width: 15
- id: CollectionLatency
name: Collection Latency
tooltip: Time elapsed between End Time and Collection Time.
calculated: substract(column.CollectionTime,TimeFlowEndMs)
default: false
width: 5
- id: PktDropBytes
name: Dropped Bytes
tooltip: The total aggregated number of bytes dropped.
field: PktDropBytes
default: false
width: 5
feature: pktDrop
- id: PktDropPackets
name: Dropped Packets
tooltip: The total aggregated number of packets dropped.
field: PktDropPackets
default: false
width: 5
feature: pktDrop
- id: PktDropLatestState
name: Drop State
tooltip: TCP state on last dropped packet.
field: PktDropLatestState
filter: pkt_drop_state
default: false
width: 10
feature: pktDrop
- id: PktDropLatestDropCause
name: Drop Cause
tooltip: TCP state on last dropped packet.
field: PktDropLatestDropCause
filter: pkt_drop_cause
default: false
width: 10
feature: pktDrop
- id: PktDropLatestFlags
name: Drop Flags
tooltip: TCP flags on last dropped packet.
field: PktDropLatestFlags
default: false
width: 10
feature: pktDrop
- id: DNSId
group: DNS
name: DNS Id
tooltip: DNS request identifier.
field: DnsId
filter: dns_id
default: false
width: 5
feature: dnsTracking
- id: DNSName
group: DNS
name: DNS Name
tooltip: DNS name.
field: DnsName
filter: dns_name
default: false
width: 15
feature: dnsTracking
- id: DNSLatency
group: DNS
name: DNS Latency
tooltip: Time elapsed between DNS request and response.
field: DnsLatencyMs
filter: dns_latency
default: true
width: 5
feature: dnsTracking
- id: DNSResponseCode
group: DNS
name: DNS Response Code
tooltip: DNS RCODE name from response header.
field: DnsFlagsResponseCode
filter: dns_flag_response_code
default: true
width: 5
feature: dnsTracking
- id: DNSErrNo
group: DNS
name: DNS Error
tooltip: DNS error number returned by bpf_skb_load_bytes function.
field: DnsErrno
filter: dns_errno
default: false
width: 5
feature: dnsTracking
- id: TimeFlowRttMs
name: Flow RTT
tooltip: TCP Smoothed Round Trip Time (SRTT)
field: TimeFlowRttNs
filter: time_flow_rtt
default: true
width: 5
feature: flowRTT
- id: NetworkEvents
name: Network Events
tooltip: Network events flow monitor
field: NetworkEvents
filter: network_events
default: true
width: 15
feature: networkEvents
- id: XlatZoneId
group: Xlat
name: Xlat zone id
field: ZoneId
filter: xlat_zone_id
default: true
width: 5
feature: packetTranslation
- id: XlatSrcAddr
group: Xlat
name: Xlat source IP
tooltip: The packet translation source IP address. Can be either in IPv4 or IPv6 format.
field: XlatSrcAddr
filter: xlat_src_address
default: false
width: 10
feature: packetTranslation
- id: XlatSrcPort
group: Xlat
name: Xlat source port
tooltip: The packet translation source port number.
field: XlatSrcPort
filter: xlat_src_port
default: false
width: 10
feature: packetTranslation
- id: XlatSrcK8S_Object
group: Xlat
name: Xlat Src Kubernetes Object
calculated: kubeObject(XlatSrcK8S_Type,XlatSrcK8S_Namespace,XlatSrcK8S_Name,1) or concat(XlatSrcAddr,':',XlatSrcPort)
default: true
width: 15
feature: packetTranslation
- id: XlatDstAddr
group: Xlat
name: Xlat destination IP
tooltip: The packet translation destination IP address. Can be either in IPv4 or IPv6 format.
field: XlatDstAddr
filter: xlat_dst_address
default: false
width: 10
feature: packetTranslation
- id: XlatDstPort
group: Xlat
name: Xlat destination port
tooltip: The packet translation destination port number.
field: XlatDstPort
filter: xlat_dst_port
default: false
width: 10
feature: packetTranslation
- id: XlatDstK8S_Object
group: Xlat
name: Xlat Dst Kubernetes Object
calculated: kubeObject(XlatDstK8S_Type,XlatDstK8S_Namespace,XlatDstK8S_Name,1) or concat(XlatDstAddr,':',XlatDstPort)
default: true
width: 15
feature: packetTranslation
- id: XlatK8S_Object
group: Xlat
name: Xlat Kubernetes Objects
calculated: '[column.XlatSrcK8S_Object,column.XlatDstK8S_Object]'
default: false
width: 15
feature: packetTranslation
- id: IPSecStatus
name: IPsec Status
tooltip: Status of the IPsec encryption (on egress, provided by the kernel function xfrm_output) or decryption (on ingress, via xfrm_input).
field: IPSecStatus
filter: ipsec_status
default: true
width: 10
feature: ipsec
filters:
- id: cluster_name
name: Cluster
component: autocomplete
placeholder: 'E.g: cluster-1, cluster-2'
hint: Add cluster ID or name filter.
feature: multiCluster
- id: namespace
name: Namespace
component: autocomplete
autoCompleteAddsQuotes: true
category: endpoint
placeholder: 'E.g: netobserv, kube-system'
hint: Add kubernetes namespace filter.
examples: |-
Specify a single kubernetes name following these rules:
- Containing any alphanumeric, hyphen, underscrore or dot character
- Partial text like cluster, cluster-image, image-registry
- Exact match using quotes like "cluster-image-registry"
- Case sensitive match using quotes like "Deployment"
- Starting text like cluster, "cluster-*"
- Ending text like "*-registry"
- Pattern like "cluster-*-registry", "c*-*-r*y", -i*e-
- id: src_namespace
name: Namespace
component: autocomplete
autoCompleteAddsQuotes: true