-
Notifications
You must be signed in to change notification settings - Fork 417
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
Add Recordable implementation for otprotocol exporter #49
Conversation
…try-cpp into recorder-interface
@@ -0,0 +1,28 @@ | |||
#include "src/exporter/otprotocol/recordable.h" | |||
|
|||
OPENTELEMETRY_BEGIN_NAMESPACE |
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.
Should exporters live in the internal namespace?
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.
I separated out into an exporters folder, similar to how it's done for go and java.
.circleci/config.yml
Outdated
@@ -44,7 +44,7 @@ jobs: | |||
- run: ./ci/setup_ci_environment.sh | |||
- run: ./ci/install_bazelisk.sh | |||
- run: ./ci/install_gcc48.sh | |||
- run: CC=/usr/bin/g++-4.8 ./ci/do_ci.sh bazel.test | |||
- run: CC=/usr/bin/g++-4.8 ./ci/do_ci.sh bazel.test_api |
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.
API is gcc 4.8 compatible but SDK is not?
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.
protobuf can't work with gcc-4.8.
Maybe I should exclude just some portions of the sdk from legacy compiler tests?
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.
Up to you. Sorry to hear about protobuf.
@@ -0,0 +1,33 @@ | |||
#pragma once | |||
|
|||
#include "src/trace/recordable.h" |
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.
I think headers needed to implement exporters should be placed in sdk/include
. However, this can be done in a different PR.
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.
Moved Recodable into the headers folder.
[SDK] Added reserve for spans array in BatchSpanProcessor. (open-telemetry#2724)
No description provided.