-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split the API into a separate application (#21)
* split the API into a separate application This patch moves the API modules to another application, opentelemetry_api. This repo is now the SDK implementation and when booted will start the ot_tracer_server which is used to serialize configuration of the tracer and set the default_tracer through the API. * update ctx implementations for latest api * add http propagators for trace context * implement add_event span function * fix macro name for export interval * set default tracer on boot of sdk * small formatting changes and add sys.config for manual testing * lock to latest erlang-api * add test of baggage propagation * update implementations of context to support contextmanager state * upgrade opentelemetry api dependency
- Loading branch information
1 parent
7b0ae7f
commit 571d4af
Showing
37 changed files
with
1,187 additions
and
1,068 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
{opentelemetry, | ||
[{processors, [{ot_batch_processor, | ||
[{exporter, {ot_exporter_stdout, []}}]}] | ||
}]} | ||
]. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.