Skip to content

Commit

Permalink
add req not found log
Browse files Browse the repository at this point in the history
  • Loading branch information
akshay288 committed Jan 10, 2023
1 parent 75a5c09 commit 477abf9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ingestors/govxlan/assemblers/httpassembly.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ func (h *HttpAssembler) AddResponse(resp *http.Response, vid uint32, netFlow gop
} else {
utils.Log.Trace("Request Rate Limited On Client Side")
}
} else {
utils.Log.WithFields(logrus.Fields{
"respKey": respKey.String(),
}).Trace("Unable to find request for response.")
}
}

Expand Down

0 comments on commit 477abf9

Please sign in to comment.