forked from netobserv/netobserv-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatic-frontend-config.yaml
More file actions
1353 lines (1353 loc) · 40.5 KB
/
static-frontend-config.yaml
File metadata and controls
1353 lines (1353 loc) · 40.5 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
# these configurations are static and append to the console plugin configmap
# other fields such as recordTypes, quickFilters, alertNamespaces, sampling, features
# are taken from the CR
# see consoleplugin_objects.go -> configMap func
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: 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: K8S_Name
name: Names
calculated: '[SrcK8S_Name,DstK8S_Name]'
default: false
width: 15
- id: K8S_Type
name: Kinds
calculated: '[SrcK8S_Type,DstK8S_Type]'
default: false
width: 10
- id: K8S_OwnerName
name: Owners
calculated: '[SrcK8S_OwnerName,DstK8S_OwnerName]'
default: false
width: 15
- id: K8S_OwnerType
name: Owner Kinds
calculated: '[SrcK8S_OwnerType,DstK8S_OwnerType]'
default: false
width: 10
- id: K8S_Namespace
name: Namespaces
calculated: '[SrcK8S_Namespace,DstK8S_Namespace]'
default: false
width: 15
- id: Addr
name: IP
calculated: '[SrcAddr,DstAddr]'
default: false
width: 10
- id: Port
name: Ports
calculated: '[SrcPort,DstPort]'
default: false
width: 10
- id: Mac
name: MAC
calculated: '[SrcMac,DstMac]'
default: false
width: 10
- id: K8S_HostIP
name: Node IP
calculated: '[SrcK8S_HostIP,DstK8S_HostIP]'
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]'
default: false
width: 15
- id: K8S_Object
name: Kubernetes Objects
calculated: '[column.SrcK8S_Object,column.DstK8S_Object]'
default: false
width: 15
- id: K8S_OwnerObject
name: Owner Kubernetes Objects
calculated: '[column.SrcK8S_OwnerObject,column.DstK8S_OwnerObject]'
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: L3 Layer
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: L3 Layer
name: DSCP
tooltip: The value of the Differentiated Services Code Point
field: Dscp
filter: dscp
default: true
width: 10
- id: IcmpType
group: ICMP
name: Type
tooltip: The type of the ICMP message
field: IcmpType
filter: icmp_type
default: false
width: 10
- id: IcmpCode
group: ICMP
name: Code
tooltip: The code of the ICMP message
field: IcmpCode
filter: icmp_code
default: false
width: 10
- id: TCPFlags
name: TCP Flags
tooltip: Logical OR combination of unique TCP flags comprised in the flow, as per RFC-9293, with additional custom values.
field: Flags
filter: tcp_flags
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: 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
filter: pkt_drop_cause
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
default: false
width: 10
feature: pktDrop
- id: PktDropLatestDropCause
name: Drop Cause
tooltip: TCP state on last dropped packet.
field: PktDropLatestDropCause
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: 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: XlatIcmpId
group: Xlat
name: Xlat icmp code
field: XlatIcmpId
filter: xlat_icmp_id
default: false
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
filters:
- id: cluster_name
name: Cluster
component: autocomplete
hint: Specify a cluster ID or name.
- id: src_namespace
name: Namespace
component: autocomplete
autoCompleteAddsQuotes: true
category: source
placeholder: 'E.g: netobserv'
hint: Specify a single kubernetes name.
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: dst_namespace
name: Namespace
component: autocomplete
autoCompleteAddsQuotes: true
category: destination
placeholder: 'E.g: netobserv'
hint: Specify a single kubernetes name.
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_name
name: Name
component: text
category: source
placeholder: 'E.g: my-pod'
hint: Specify a single kubernetes name.
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: dst_name
name: Name
component: text
category: destination
placeholder: 'E.g: my-pod'
hint: Specify a single kubernetes name.
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_kind
name: Kind
component: autocomplete
autoCompleteAddsQuotes: true
category: source
placeholder: 'E.g: Pod, Service'
- id: dst_kind
name: Kind
component: autocomplete
autoCompleteAddsQuotes: true
category: destination
placeholder: 'E.g: Pod, Service'
- id: src_owner_name
name: Owner Name
component: text
category: source
placeholder: 'E.g: my-deployment'
hint: Specify a single kubernetes name.
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: dst_owner_name
name: Owner Name
component: text
category: destination
placeholder: 'E.g: my-deployment'
hint: Specify a single kubernetes name.
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_zone
name: Zone
component: autocomplete
category: source
hint: Specify a single zone.
- id: dst_zone
name: Zone
component: autocomplete
category: destination
hint: Specify a single zone.
- id: src_subnet_label
name: Subnet Label
component: autocomplete
category: source
hint: Specify a subnet label, or an empty string to get unmatched sources.
- id: dst_subnet_label
name: Subnet Label
component: autocomplete
category: destination
hint: Specify a subnet label, or an empty string to get unmatched destinations.
- id: src_resource
name: Resource
component: autocomplete
category: source
placeholder: 'E.g: Deployment.example.my-dep or Pod.default.my-pod'
hint: Specify an existing resource from its kind, namespace and name.
examples: |-
Specify a kind, namespace and name from existing:
- Select kind first from suggestions
- Then select namespace from suggestions
- Finally select name from suggestions
- id: dst_resource
name: Resource
component: autocomplete
category: destination
placeholder: 'E.g: Deployment.example.my-dep or Pod.default.my-pod'
hint: Specify an existing resource from its kind, namespace and name.
examples: |-
Specify a kind, namespace and name from existing:
- Select kind first from suggestions
- Then select namespace from suggestions
- Finally select name from suggestions
- id: src_address
name: IP
component: text
category: source
hint: Specify a single IP or range.
placeholder: 'E.g: 192.0.2.0'
examples: |-
Specify IP following one of these rules:
- A single IPv4 or IPv6 address like 192.0.2.0, ::1
- An IP address range like 192.168.0.1-192.189.10.12, 2001:db8::1-2001:db8::8
- A CIDR specification like 192.51.100.0/24, 2001:db8::/32
- id: dst_address
name: IP
component: text
category: destination
hint: Specify a single IP or range.
placeholder: 'E.g: 192.0.2.0'
examples: |-
Specify IP following one of these rules:
- A single IPv4 or IPv6 address like 192.0.2.0, ::1
- An IP address range like 192.168.0.1-192.189.10.12, 2001:db8::1-2001:db8::8
- A CIDR specification like 192.51.100.0/24, 2001:db8::/32
- id: src_port
name: Port
component: autocomplete
category: source
hint: Specify a single port number or name.
placeholder: 'E.g: 80'
examples: |-
Specify a single port following one of these rules:
- A port number like 80, 21
- A IANA name like HTTP, FTP
docUrl: https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml
- id: dst_port
name: Port
component: autocomplete
category: destination
hint: Specify a single port number or name.
placeholder: 'E.g: 80'
examples: |-
Specify a single port following one of these rules:
- A port number like 80, 21
- A IANA name like HTTP, FTP
docUrl: https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml
- id: src_mac
name: MAC
component: text
category: source
placeholder: 'E.g: 42:01:0A:00:00:01'
hint: Specify a single MAC address.
- id: dst_mac
name: MAC
component: text
category: destination
placeholder: 'E.g: 42:01:0A:00:00:01'
hint: Specify a single MAC address.
- id: src_host_address
name: Node IP
component: text
category: source
placeholder: 'E.g: 10.0.0.1'
hint: Specify a single IP or range.
examples: |-
Specify IP following one of these rules:
- A single IPv4 or IPv6 address like 192.0.2.0, ::1
- An IP address range like 192.168.0.1-192.189.10.12, 2001:db8::1-2001:db8::8
- A CIDR specification like 192.51.100.0/24, 2001:db8::/32
- id: dst_host_address
name: Node IP
component: text
category: destination
placeholder: 'E.g: 10.0.0.1'
hint: Specify a single IP or range.
examples: |-
Specify IP following one of these rules:
- A single IPv4 or IPv6 address like 192.0.2.0, ::1
- An IP address range like 192.168.0.1-192.189.10.12, 2001:db8::1-2001:db8::8
- A CIDR specification like 192.51.100.0/24, 2001:db8::/32
- id: src_host_name
name: Node Name
component: text
category: source
placeholder: 'E.g: my-node'
hint: Specify a single kubernetes name.
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: dst_host_name
name: Node Name
component: text
category: destination
placeholder: 'E.g: my-node'
hint: Specify a single kubernetes name.
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: protocol
name: Protocol
component: autocomplete
placeholder: 'E.g: TCP, UDP'
hint: Specify a single protocol number or name.
examples: |-
Specify a single protocol following one of these rules:
- A protocol number like 6, 17
- A IANA name like TCP, UDP
docUrl: https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml
- id: dscp
name: DSCP
component: autocomplete
hint: Specify a Differentiated Services Code Point number or name.
examples: |-
Specify a Differentiated Services Code Point following one of these rules:
- A DSCP number like 8, 10
- A service class name like Low-Priority Data, High-Throughput Data
- id: icmp_type
name: ICMP type
component: number
hint: Specify an ICMP type value as integer number.
- id: icmp_code
name: ICMP code
component: number
hint: Specify an ICMP code value as integer number.
- id: tcp_flags
name: TCP flags
component: autocomplete
hint: Specify a TCP flags value.
examples: |-
Logical OR combination of unique TCP flags comprised in the flow, as per RFC-9293, with additional custom flags (SYN_ACK, FIN_ACK and RST_ACK).
- id: node_direction
name: Node Direction
component: autocomplete
placeholder: 'E.g: Ingress, Egress, Inner'
hint: Specify the interpreted direction of the Flow observed at the Node observation point.
- id: flow_layer
name: Flow layer
component: text
placeholder: 'Either infra or app'
hint: Specify the layer of Flow.
- id: interfaces
name: Network interfaces
component: text
placeholder: 'E.g: br-ex, ovn-k8s-mp0'
hint: Specify a network interface.
- id: ifdirections
name: Interface Directions
component: autocomplete
placeholder: 'E.g: Ingress, Egress'
hint: Specify the direction of the Flow observed at the network interface observation point.
- id: id
name: Conversation Id
component: text
hint: Specify a single conversation hash Id.
- id: pkt_drop_state
name: Packet drop TCP state
component: autocomplete
placeholder: 'E.g: ESTABLISHED, SYN_SENT, SYN_RECV'
hint: Specify a single TCP state.
examples: |-
Specify a single TCP state name like:
- A _LINUX_TCP_STATES_H number like 1, 2, 3
- A _LINUX_TCP_STATES_H TCP name like ESTABLISHED, SYN_SENT, SYN_RECV
docUrl: https://github.com/torvalds/linux/blob/master/include/net/tcp_states.h
- id: pkt_drop_cause
name: Packet drop latest cause
component: autocomplete
placeholder: 'E.g: NO_SOCKET, PKT_TOO_SMALL'
hint: Specify a single packet drop cause.
examples: |-
Specify a single packet drop cause like:
- A _LINUX_DROPREASON_CORE_H number like 2, 3, 4
- A _LINUX_DROPREASON_CORE_H SKB_DROP_REASON name like NOT_SPECIFIED, NO_SOCKET, PKT_TOO_SMALL
docUrl: https://github.com/torvalds/linux/blob/master/include/net/dropreason-core.h
- id: dns_id
name: DNS Id
component: number
hint: Specify a single DNS Id.
- id: dns_latency
name: DNS Latency
component: number
hint: Specify a DNS Latency in miliseconds.
- id: dns_flag_response_code
name: DNS Response Code
component: autocomplete
hint: Specify a single DNS RCODE name.
placeholder: 'E.g: NoError, NXDomain, NotAuth'
examples: |-
Specify a single DNS RCODE name like:
- A IANA RCODE number like 0, 3, 9
- A IANA RCODE name like NoError, NXDomain, NotAuth
docUrl: https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-6
- id: dns_errno
name: DNS Error
component: autocomplete
hint: Specify a single DNS error number.