Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Use monotonic clock to calculate elapsed time #51

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/hawk/http/instrumentation.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ def instrument(type, payload)
if Hawk::HTTP::Instrumentation.suppress_verbose_output
yield payload
else
start = Time.now.to_f
start = Process.clock_gettime(Process::CLOCK_MONOTONIC)
ret = yield payload
elapsed = (Time.now.to_f - start) * 1000
elapsed = (Process.clock_gettime(Process::CLOCK_MONOTONIC) - start) * 1000

url = payload[:url].to_s
if payload[:params].present?
Expand Down
Loading