-
-
Notifications
You must be signed in to change notification settings - Fork 746
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apollo Tracing Support #352
Milestone
Comments
private static long nanoTime() {
long nano = 10000L * Stopwatch.GetTimestamp();
nano /= TimeSpan.TicksPerMillisecond;
nano *= 100L;
return nano;
} |
The private static long GetTimestampInNanoseconds()
{
const long nanosecondsPerSecond = 1000000000;
return Stopwatch.GetTimestamp() *
(nanosecondsPerSecond / Stopwatch.Frequency);
} |
rstaib
added a commit
that referenced
this issue
Jan 5, 2019
This issue depends on #459. |
rstaib
added a commit
that referenced
this issue
Jan 6, 2019
rstaib
added a commit
that referenced
this issue
Jan 6, 2019
rstaib
added a commit
that referenced
this issue
Jan 7, 2019
rstaib
added a commit
that referenced
this issue
Jan 7, 2019
rstaib
added a commit
that referenced
this issue
Jan 9, 2019
rstaib
added a commit
that referenced
this issue
Jan 9, 2019
7 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://github.com/apollographql/apollo-tracing
The text was updated successfully, but these errors were encountered: