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 @@ -18,6 +18,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
([#5034](https://github.com/open-telemetry/opentelemetry-python/pull/5034))
- Fix `BatchLogRecordProcessor` default `schedule_delay_millis` from 5000ms to 1000ms to comply with the OTel specification. Note: logs may be exported 5x more frequently by default (e.g. for users who don't explicitly set the `OTEL_BLRP_SCHEDULE_DELAY` env var).
([#4998](https://github.com/open-telemetry/opentelemetry-python/pull/4998))
- 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))
- `opentelemetry-sdk`: Add `process` resource detector support to declarative file configuration via `detection_development.detectors[].process`
([#5001](https://github.com/open-telemetry/opentelemetry-python/pull/5001))
- `opentelemetry-sdk`: Add shared `_parse_headers` helper for declarative config OTLP exporters
Expand Down
10 changes: 10 additions & 0 deletions docs/api/_events.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
opentelemetry._events package
=============================

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

.. automodule:: opentelemetry._events
:members:
:undoc-members:
:show-inheritance:
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:
2 changes: 2 additions & 0 deletions docs/api/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ For the concrete implementation of these interfaces, see the
.. toctree::
:maxdepth: 1

_events
_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
6 changes: 6 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,12 @@
"py:class",
"AnyValue",
),
(
"py:class",
"Event",
),
("py:func", "get_finished_logs"),
("py:class", "Token"),
]

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

.. automodule:: opentelemetry.sdk._events
:members:
:undoc-members:
:show-inheritance:
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
1 change: 1 addition & 0 deletions docs/sdk/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ processed, and exported.
.. toctree::
:maxdepth: 1

_events
_logs
resources
trace
Expand Down