mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-06 15:46:57 +01:00
Integrate NetObserv 1.6 feature branch with OCP docs main branch OSDOCS-10211: eBPF flow rule filtering OSDOCS-9959: NetObserv Health dashboard updates Fixes xref error Flow format reference regeneration Update DNS example to include sampling>1 note OSDOCS-9553: Netobserv Lokiless enhancements OSDOCS-10790: Update NetObserv Operator Install prereqs OSDOCS-10747: Adding FlowMetric API Reference Changing FlowMetrics to FlowMetric Netobserv API doc regeneration OSDOCS-9969: netobserv cli Network Observability 1.6 release notes
47 lines
2.0 KiB
Plaintext
47 lines
2.0 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * network_observability/observing-network-traffic.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="network-observability-RTT_{context}"]
|
|
= Working with RTT tracing
|
|
You can track RTT by editing the `FlowCollector` to the specifications in the following YAML example.
|
|
|
|
.Procedure
|
|
. In the web console, navigate to *Operators* -> *Installed Operators*.
|
|
. In the *Provided APIs* heading for the *NetObserv Operator*, select *Flow Collector*.
|
|
. Select *cluster*, and then select the *YAML* tab.
|
|
. Configure the `FlowCollector` custom resource for RTT tracing, for example:
|
|
+
|
|
[id="network-observability-flowcollector-configuring-RTT_{context}"]
|
|
.Example `FlowCollector` configuration
|
|
[source, yaml]
|
|
----
|
|
apiVersion: flows.netobserv.io/v1beta2
|
|
kind: FlowCollector
|
|
metadata:
|
|
name: cluster
|
|
spec:
|
|
namespace: netobserv
|
|
agent:
|
|
type: eBPF
|
|
ebpf:
|
|
features:
|
|
- FlowRTT <1>
|
|
----
|
|
<1> You can start tracing RTT network flows by listing the `FlowRTT` parameter in the `spec.agent.ebpf.features` specification list.
|
|
|
|
.Verification
|
|
When you refresh the *Network Traffic* page, the *Overview*, *Traffic Flow*, and *Topology* views display new information about RTT:
|
|
|
|
.. In the *Overview*, select new choices in *Manage panels* to choose which graphical visualizations of RTT to display.
|
|
.. In the *Traffic flows* table, the *Flow RTT* column can be seen, and you can manage display in *Manage columns*.
|
|
.. In the *Traffic Flows* view, you can also expand the side panel to view more information about RTT.
|
|
+
|
|
.Example filtering
|
|
... Click the *Common* filters -> *Protocol*.
|
|
... Filter the network flow data based on *TCP*, *Ingress* direction, and look for *FlowRTT* values greater than 10,000,000 nanoseconds (10ms).
|
|
... Remove the *Protocol* filter.
|
|
... Filter for *Flow RTT* values greater than 0 in the *Common* filters.
|
|
|
|
.. In the *Topology* view, click the Display option dropdown. Then click *RTT* in the *edge labels* drop-down list. |