-
Notifications
You must be signed in to change notification settings - Fork 60
Conversation
Codecov Report
@@ Coverage Diff @@
## master #436 +/- ##
==========================================
+ Coverage 63.21% 63.27% +0.05%
==========================================
Files 42 42
Lines 3379 3379
==========================================
+ Hits 2136 2138 +2
+ Misses 1090 1089 -1
+ Partials 153 152 -1
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, please leave a TODO or file a new issue for adding numbers on receiving OpenCensus span protos.
Filed #438 |
@@ -48,7 +48,7 @@ lint: | |||
|
|||
.PHONY: install-tools | |||
install-tools: | |||
go get -u golang.org/x/lint/golint |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The -u flag instructs get to use the network to update the named packages and their dependencies. By default, get uses the network to check out missing packages but does not use it to look for updates to existing packages.
I don't think removing this is necessary good. Maybe we should file an issue to restore this after lint fixes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, the idea is that this is a temporary workaround.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi all, Can we get a pprof sample while we run the loadtests. I am very interested to see where we have the performance problems - if possible get cpu/block/mutex (all would be great). |
We did not have pprof initially, but when we run the next set of tests we will. |
Upgrading go version and fixing census-instrumentation#436
* Add initial performance numbers
* Use go 1.12.5 and update go lint Upgrading go version and fixing #436 * Update .travis.yml and CONTRIBUTING.md
Addresses #276