Skip to content
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

Sync repository #2

Merged
merged 42 commits into from
Aug 12, 2019
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
0869961
Mention an existent .NET Framework version (#112)
bruno-garcia Jun 19, 2019
27d9b98
Zipkin/refactor (#114)
bruno-garcia Jun 21, 2019
f6e400e
dhere to coding style (#116)
bruno-garcia Jun 21, 2019
cfd233c
moved Stats away to SDK (#121)
SergeyKanzhelev Jun 26, 2019
0554756
Change open census to OpenTelemetry in readme file + Update prometheu…
ysma500 Jun 26, 2019
3538e05
Reroute urls to fix 404 on sample links (#126)
ysma500 Jun 27, 2019
42e9566
Metrics interfaces (#127)
SergeyKanzhelev Jun 30, 2019
843fc3e
Code Cleanups (#131)
enzian Jul 9, 2019
023e861
Align with spec on ISpanBuilder and ITracer (#133)
Jul 9, 2019
e511e84
Add prerequisites to CONTRIBUTING (#141)
Jul 10, 2019
9523c31
Use ActivityTraceId and ActivitySpanId (#136)
Jul 11, 2019
4b273d4
Dev/twegner/issue 18 (#111)
trwegner Jul 12, 2019
a14967f
Remove RandomGenerator again (#143)
Jul 12, 2019
1ae543c
Refactor AttributeValue Abstraction (#88)
austinlparker Jul 12, 2019
c5f33e1
Support .NET Activities (#140)
Jul 13, 2019
4952219
Remove remains of AttributeValue (#148)
Jul 14, 2019
1eef24f
More Attributes improvements (#149)
Jul 14, 2019
8aae2c0
Clean up (#147)
Jul 15, 2019
156c400
nit: Event name mispelled: ResponseReceived (#150)
bruno-garcia Jul 15, 2019
2183c42
TimedEvents clean up (#152)
Jul 16, 2019
799da6d
Addressing perf concern raised in issue #83 and replacing string lite…
trwegner Jul 22, 2019
d053e75
Add LoggingTracer sample (#92)
discostu105 Jul 23, 2019
4b0b2c2
Disable code coverage in CI: reportgenerator does not work (#159)
Jul 24, 2019
8e1d8fa
Jaeger exporter implementation (#132)
EGHornbostel Jul 24, 2019
b02f312
review use of lists (#151)
bruno-garcia Jul 24, 2019
d1e66e1
Build all targets in all platforms. (#155)
bruno-garcia Jul 24, 2019
175ae3b
Dev/twegner/issue 139 (#153)
trwegner Jul 25, 2019
487f358
Update to DiagnosticSource preview 7 and leverage Activity.SetIdForma…
Jul 25, 2019
64d9fbf
Improvements in http in and out auto-collectors (#162)
Jul 26, 2019
e00bccb
Make samples projects not packable (#165)
Jul 30, 2019
b94fc10
Do not export zipkin exporter calls to zipkin endpoint (#167)
Jul 30, 2019
a4447ad
Don't POST to zipkin if there are no spans to send (#171)
johnduhart Jul 30, 2019
f6fc8d7
ApplicationInsights exporter improvements (#172)
Aug 2, 2019
5d30391
Add Azure collector (#161)
pakrym Aug 2, 2019
fbdd3a1
Multiple calls to DiagnosticSourceSubscriber::Dispose throw nullref (…
pcwiese Aug 7, 2019
ca3c881
clean up some OpenCensus mentions in exporters (#174)
Aug 7, 2019
b9db143
Make Thrift project not packable (#169)
Aug 7, 2019
ff8f7b6
Better Assert (with error message) for timestampt range (#168)
Aug 7, 2019
333484d
Fixing a bad Event definition in the OpenTelemetry.Collector.Dependen…
pcwiese Aug 7, 2019
4cbc55c
Remove redundant Thread.Sleep(minute) (#179)
Aug 8, 2019
fccdad2
Update README.md (#180)
Aug 8, 2019
0900aa9
Merge remote-tracking branch 'upstream/master'
z1c0 Aug 12, 2019
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
Prev Previous commit
Next Next commit
Better Assert (with error message) for timestampt range (open-telemet…
  • Loading branch information
Liudmila Molkova authored Aug 7, 2019
commit ff8f7b6d44c3c4a85054546077b91999e1f585d8
3 changes: 1 addition & 2 deletions test/OpenTelemetry.Tests/Impl/Trace/SpanTest.cs
Original file line number Diff line number Diff line change
@@ -699,8 +699,7 @@ public void Dispose()
private void AssertApproxSameTimestamp(DateTime one, DateTime two)
{
var timeShift = Math.Abs((one - two).TotalMilliseconds);
Assert.True(timeShift > 0);
Assert.True(timeShift < 10);
Assert.InRange(timeShift, double.Epsilon, 10);
}
}
}