-
Notifications
You must be signed in to change notification settings - Fork 850
Adding docs for sdk and integrations #319
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
Changes from all commits
bd2198c
af8ce59
1ccb31a
cda8232
d7b74ce
4e32f9b
4d8e95a
5145ef1
c29b51f
2a4d1b0
2ed2e10
9fbac6d
fc7e0bb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| opentelemetry.ext.flask package | ||
| ========================================== | ||
|
|
||
| Module contents | ||
| --------------- | ||
|
|
||
| .. automodule:: opentelemetry.ext.flask | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| opentelemetry.ext.http_requests package | ||
| ========================================== | ||
|
|
||
| Module contents | ||
| --------------- | ||
|
|
||
| .. automodule:: opentelemetry.ext.http_requests | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| opentelemetry.ext.jaeger.gen.jaeger.ttypes | ||
| ========================================== | ||
|
|
||
|
|
||
| Module contents | ||
| --------------- | ||
|
|
||
| .. automodule:: opentelemetry.ext.jaeger.gen.jaeger.ttypes | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| opentelemetry.ext.jaeger package | ||
| ========================================== | ||
|
|
||
|
|
||
| Submodules | ||
| ---------- | ||
|
|
||
| .. toctree:: | ||
|
|
||
| opentelemetry.ext.jaeger.gen.jaeger.ttypes | ||
|
|
||
|
|
||
| Module contents | ||
| --------------- | ||
|
|
||
| .. automodule:: opentelemetry.ext.jaeger | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| opentelemetry.ext.pymongo package | ||
| ========================================== | ||
|
|
||
| Module contents | ||
| --------------- | ||
|
|
||
| .. automodule:: opentelemetry.ext.pymongo | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| opentelemetry.ext.wsgi package | ||
| ========================================== | ||
|
|
||
| Module contents | ||
| --------------- | ||
|
|
||
| .. automodule:: opentelemetry.ext.wsgi | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| opentelemetry.sdk.context | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. does it make sense for these to be a top level section? rather than a sub-section under something like sdk/? Just thinking that there will be strong relationships between sdk.context, sdk.metrics, and sdk.trace. Or at least sdk.context with metrics and trace.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't have a strong preference either ways, we can change it in a future PR if it makes more sense |
||
| ========================================== | ||
|
|
||
| .. automodule:: opentelemetry.sdk.context | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| opentelemetry.sdk.metrics package | ||
| ========================================== | ||
|
|
||
| .. automodule:: opentelemetry.sdk.metrics | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| opentelemetry.sdk.trace.export | ||
| ========================================== | ||
|
|
||
| .. automodule:: opentelemetry.sdk.trace.export | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| opentelemetry.sdk.trace package | ||
| ========================================== | ||
|
|
||
| Submodules | ||
| ---------- | ||
|
|
||
| .. toctree:: | ||
|
|
||
| opentelemetry.sdk.trace.export | ||
|
|
||
| .. automodule:: opentelemetry.sdk.trace | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| opentelemetry.trace.sampling | ||
| ============================ | ||
|
|
||
| .. automodule:: opentelemetry.trace.sampling | ||
| :members: | ||
| :undoc-members: | ||
| :show-inheritance: |
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.
As an aside, it might be a good idea to document everything that someone has to touch when adding a new package. I may not be fully aware of them myself anymore, and this one is easily missed.