Skip to content

Commit 47d1fd7

Browse files
authored
Remove references to *handshake* RTT (it's sRTT) (#526)
1 parent 994ed1e commit 47d1fd7

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

config/sample-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -964,7 +964,7 @@ frontend:
964964
- id: time_flow_rtt
965965
name: Flow RTT
966966
component: number
967-
hint: Specify a TCP handshake Round Trip Time in nanoseconds.
967+
hint: Specify a TCP smoothed Round Trip Time in nanoseconds.
968968
fields:
969969
- name: TimeFlowStartMs
970970
type: number

web/docs/interfaces/Fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ ___
358358

359359
`Optional` **TimeFlowRttNs**: `number`
360360

361-
TCP handshake Round Trip Time (RTT) in nanoseconds
361+
TCP smoothed Round Trip Time (sRTT) in nanoseconds
362362

363363
___
364364

web/locales/en/plugin__netobserv-plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@
443443
"donut or bars and lines": "donut or bars and lines",
444444
"The top packet dropped {{types}} (dropped by the kernel) compared total over the selected interval": "The top packet dropped {{types}} (dropped by the kernel) compared total over the selected interval",
445445
"Bottom": "Bottom",
446-
"TCP handshake Round Trip Time": "TCP handshake Round Trip Time",
446+
"TCP smoothed Round Trip Time": "TCP smoothed Round Trip Time",
447447
"latency": "latency",
448448
"with overall": "with overall",
449449
"Overall": "Overall",

web/src/api/ipfix.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ export interface Fields {
169169
TimeFlowEndMs?: number;
170170
/** Timestamp when this flow was received and processed by the flow collector, in seconds */
171171
TimeReceived?: number;
172-
/** TCP handshake Round Trip Time (RTT) in nanoseconds */
172+
/** TCP smoothed Round Trip Time (sRTT) in nanoseconds */
173173
TimeFlowRttNs?: number;
174174
/** In conversation tracking, the conversation identifier */
175175
_HashId?: string;

web/src/components/__tests-data__/columns.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ export const ColumnConfigSampleDefs = [
421421
{
422422
id: 'TimeFlowRttMs',
423423
name: 'Flow RTT',
424-
tooltip: 'TCP handshake Round Trip Time',
424+
tooltip: 'TCP smoothed Round Trip Time',
425425
field: 'TimeFlowRttNs',
426426
filter: 'time_flow_rtt',
427427
default: false,

web/src/components/__tests-data__/filters.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export const FilterConfigSampleDefs = [
258258
id: 'time_flow_rtt',
259259
name: 'Flow RTT',
260260
component: 'number',
261-
hint: 'Specify a TCP handshake Round Trip Time in nanoseconds.'
261+
hint: 'Specify a TCP smoothed Round Trip Time in nanoseconds.'
262262
}
263263
];
264264

web/src/utils/overview-panels.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ export const getOverviewPanelInfo = (
289289
case 'top_p99_rtt':
290290
case 'bottom_min_rtt': {
291291
const topOrBottom = id.startsWith('top_') ? t('Top') : t('Bottom');
292-
const metric = id.endsWith('_dns_latency') ? t('DNS latencies') : t('TCP handshake Round Trip Time');
292+
const metric = id.endsWith('_dns_latency') ? t('DNS latencies') : t('TCP smoothed Round Trip Time');
293293
const shortMetric = id.endsWith('_dns_latency') ? t('latency') : t('RTT');
294294
return {
295295
title: `${topOrBottom} ${limit} ${metricFunction} ${metric} ${t('with overall')}`,

0 commit comments

Comments
 (0)