You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use nano seconds for application blocking latency to reduce rounding errors from starting and stopping the timer within a millisecond.
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [ ] Make sure to open an issue as a [bug/issue](https://github.com/googleapis/java-bigtable/issues/new/choose) before writing your code! That way we can discuss the change, evaluate designs, and agree on the general idea
- [ ] Ensure the tests and linter pass
- [ ] Code coverage does not decrease (if any source code was changed)
- [ ] Appropriate docs were updated (if necessary)
Fixes #<issue_number_goes_here> ☕️
If you write sample code, please follow the [samples format](
https://github.com/GoogleCloudPlatform/java-docs-samples/blob/main/SAMPLE_FORMAT.md).
Copy file name to clipboardexpand all lines: google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/stub/metrics/BuiltinMetricsTracer.java
+6-4
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ class BuiltinMetricsTracer extends BigtableTracer {
55
55
// Total server latency needs to be atomic because it's accessed from different threads. E.g.
56
56
// request() from user thread and attempt failed from grpc thread. We're only measuring the extra
57
57
// time application spent blocking grpc buffer, which will be operationLatency - serverLatency.
0 commit comments