Skip to content

Commit

Permalink
Merge pull request #218 from jakirpatel/patch-1
Browse files Browse the repository at this point in the history
Microsecond to second conversion was wrong.
  • Loading branch information
jaqx0r authored Mar 14, 2019
2 parents 862596d + e1a2ea5 commit 3347885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/apache_metrics.mtail
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ histogram http_request_duration_seconds by server_port, handler, method, code, p
###
# HTTP Requests with histogram buckets.
#
http_request_duration_seconds[$server_port][$handler][$method][$code][$protocol] = $time_us * 1000000
http_request_duration_seconds[$server_port][$handler][$method][$code][$protocol] = $time_us / 1000000

###
# Sent/Received bytes.
Expand Down

0 comments on commit 3347885

Please sign in to comment.