-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Updated SAPM exporter dependencies #59
Updated SAPM exporter dependencies #59
Conversation
github.com/stretchr/testify v1.4.0 | ||
go.uber.org/atomic v1.5.1 // indirect | ||
go.uber.org/multierr v1.4.0 // indirect | ||
go.uber.org/zap v1.13.0 | ||
google.golang.org/genproto v0.0.0-20191115221424-83cc0476cb11 // indirect |
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.
go mod tidy added this. Go is seeing this as a dependency of sapm-proto. This is not a big deal but I'll look into it later. For sapm-proto, this should really be a build dependency and not pulled in here.
Can someone please merge this? @tigrannajaryan @pjanotti |
We need one more review to merge this. |
@owais please rebase and resolve merge conflicts. |
Done |
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
* initial def of aws xray exporter * initial dev of xray data structures and converters * initial dev of xray data structures and converters * initial dev of xray data structures and converters * initial dev of xray data structures and converters * initial dev of xray data structures and converters * initial dev of xray data structures and converters * initial dev of xray data structures and converters * initial dev of export handler * fix formatting and lint errors * initial dev of export handler * added to component list * fix issues raised during code review * switch user attribute name to constant * fixed additional code review issues * fixed additional code review issues * temporarily change package name * temporarily change package name * revert temporarily change package name * fixed additional code review issues * switched to constants defined in collector * switched to status conversion functions defined in collector * fix latest code review issues * fix new static check issues * fix test that breaks if no valid aws session available * Update Collector Core dependency to latest `master` (#61) - Updated go.mod and testbed/go.mod to point to latest `master` commit for github.com/open-telemetry/opentelemetry-collector dependencies and fixed the code as needed. - Run `go mod tidy` on both go.mod files. * Ported kinesis exporter from Omnition (#60) Porting the existing kinesis exporter from Omnition's Otel distribution to contrib. Porting from: https://github.com/Omnition/omnition-opentelemetry-collector/tree/master/exporter/kinesis * fix pull request issues * Updated SAPM exporter dependencies (#59) * Add E2E test for SAPM Receiver (#63) - Added DataSender for SAPM protocol. - Added SAPM protocol receiver test to TestTrace10K scenario. * Updated component dependencies (#64) * Fix build for go 1.13 (#65) * Add E2E test for SAPM Exporter (#66) SAPM trace test was using SAPM Receiver and Jaeger Exporter. Now SAPM is used for both ends. * initial def of aws xray exporter * initial dev of xray data structures and converters * initial dev of xray data structures and converters * initial dev of xray data structures and converters * initial dev of xray data structures and converters * initial dev of xray data structures and converters * initial dev of xray data structures and converters * initial dev of xray data structures and converters * initial dev of export handler * fix formatting and lint errors * initial dev of export handler * added to component list * fix issues raised during code review * switch user attribute name to constant * fixed additional code review issues * fixed additional code review issues * temporarily change package name * temporarily change package name * revert temporarily change package name * fixed additional code review issues * switched to constants defined in collector * switched to status conversion functions defined in collector * fix latest code review issues * fix new static check issues * fix test that breaks if no valid aws session available * fix pull request issues
This is to make tag.Map an immutable type, so it is safe to use concurrently. The safety is not yet fully achieved because of the functions returning contents of the map (Value and Foreach). The functions give callers an access to core.Value objects, which contain a byte slice, which has pointer like semantics. So to avoid accidental changes, we will need to copy the value if it is of BYTES type. Fixes #59
update readme with suggested ClusterRole rules
* Add output verification to TestDatadogMetricsV1_EndToEnd Signed-off-by: Federico Torres <[email protected]> * Add output verification to TestDatadogMetricsV2_EndToEnd Signed-off-by: Federico Torres <[email protected]> * Add output verification to TestDatadogSketches_EndToEnd Signed-off-by: Federico Torres <[email protected]> * Add output verification to TestDatadogServices_EndToEnd Signed-off-by: Federico Torres <[email protected]> * fmt Signed-off-by: Federico Torres <[email protected]> * Refactor output verifications in E2E receiver tests Signed-off-by: Federico Torres <[email protected]> * Add TestConvertBucketLayout Signed-off-by: Federico Torres <[email protected]> * Add TestMapSketchBucketsToHistogramBuckets Signed-off-by: Federico Torres <[email protected]> --------- Signed-off-by: Federico Torres <[email protected]>
No description provided.