Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
DX990307 committed Mar 28, 2024
1 parent 15642fd commit b8dcfd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analysis/perf_analyzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,8 @@ func (b *PerfAnalyzer) GetCurrentTraffic(comp string) string {
dataTable = append(dataTable, map[string]string{
"start": fmt.Sprintf("%.9f", data.Start),
"end": fmt.Sprintf("%.9f", data.End),
"localPort": data.What,
"remotePort": data.Where,
"localPort": data.Where,
"remotePort": data.What,
"dir": data.EntryType,
"value": "0",
"unit": data.Unit,
Expand Down

0 comments on commit b8dcfd7

Please sign in to comment.