Skip to content

Commit

Permalink
Merge pull request #518 from jpinsonneau/1596
Browse files Browse the repository at this point in the history
NETOBSERV-1596 fix latest not resetting on DNS / RTT metrics
  • Loading branch information
jpinsonneau authored Apr 24, 2024
2 parents b45cee2 + add2068 commit 8209e40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/model/flow-query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ export const filterByHashId = (hashId: string): string => {
};

export const isTimeMetric = (metricType: MetricType | undefined) => {
return ['dnsLatencies', 'flowRtt'].includes(metricType || '');
return ['DnsLatencyMs', 'TimeFlowRttNs'].includes(metricType || '');
};

0 comments on commit 8209e40

Please sign in to comment.