Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#5120](https://github.com/open-telemetry/opentelemetry-python/pull/5120))
- Add WeaverLiveCheck test util
([#5088](https://github.com/open-telemetry/opentelemetry-python/pull/5088))
- Add missing .rst files to Sphinx documentation build for SDK logs, propagators, and exporter submodules
([#5017](https://github.com/open-telemetry/opentelemetry-python/pull/5017))
- Fix incorrect type annotation on `detectors` parameter of `get_aggregated_resources`
([#5135](https://github.com/open-telemetry/opentelemetry-python/pull/5135))
- ci: wait for tracecontext server readiness instead of a fixed sleep in `scripts/tracecontext-integration-test.sh`
Expand Down
7 changes: 7 additions & 0 deletions docs/api/attributes.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
opentelemetry.attributes
========================

.. automodule:: opentelemetry.attributes
:members:
:undoc-members:
:show-inheritance:
1 change: 1 addition & 0 deletions docs/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ For the concrete implementation of these interfaces, see the
:maxdepth: 1

_logs
attributes
baggage
context
propagate
Expand Down
7 changes: 7 additions & 0 deletions docs/api/trace.propagation.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
opentelemetry.trace.propagation
===============================

.. automodule:: opentelemetry.trace.propagation
:members:
:undoc-members:
:show-inheritance:
1 change: 1 addition & 0 deletions docs/api/trace.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Submodules

trace.status
trace.span
trace.propagation

Module contents
---------------
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@
"py:class",
"AnyValue",
),
("py:class", "Token"),
]

# Add any paths that contain templates here, relative to this directory.
Expand Down
7 changes: 7 additions & 0 deletions docs/sdk/_logs.export.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
opentelemetry.sdk._logs.export
==============================

.. automodule:: opentelemetry.sdk._logs.export
:members:
:undoc-members:
:show-inheritance:
10 changes: 10 additions & 0 deletions docs/sdk/_logs.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
opentelemetry.sdk._logs package
===============================

Submodules
----------

.. toctree::

_logs.export

Module contents
---------------

.. automodule:: opentelemetry.sdk._logs
:members:
:undoc-members:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class InMemoryLogRecordExporter(LogRecordExporter):
This class can be used for testing purposes. It stores the exported logs
in a list in memory that can be retrieved using the
:func:`.get_finished_logs` method.
:meth:`.get_finished_logs` method.
"""

def __init__(self):
Expand Down