Skip to content

Commit 412f130

Browse files
authored
Merge branch 'main' into grpc
2 parents 9428e50 + 638988c commit 412f130

File tree

30 files changed

+564
-234
lines changed

30 files changed

+564
-234
lines changed

.flake8

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
[flake8]
22
ignore =
3-
E501 # line too long, defer to black
4-
W503 # allow line breaks before binary ops
5-
W504 # allow line breaks after binary ops
6-
E203 # allow whitespace before ':' (https://github.com/psf/black#slices)
3+
# line too long, defer to black
4+
E501
5+
6+
# allow line breaks before binary ops
7+
W503
8+
9+
# allow line breaks after binary ops
10+
W504
11+
12+
# allow whitespace before ':' (https://github.com/psf/black#slices)
13+
E203
14+
715
exclude =
816
.bzr
917
.git

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
- Add url decode values from OTEL_RESOURCE_ATTRIBUTES
11+
([#3046](https://github.com/open-telemetry/opentelemetry-python/pull/3046))
1012
- Fixed circular dependency issue with custom samplers
1113
([#3026](https://github.com/open-telemetry/opentelemetry-python/pull/3026))
1214
- Add missing entry points for OTLP/HTTP exporter
1315
([#3027](https://github.com/open-telemetry/opentelemetry-python/pull/3027))
16+
- Update logging to include logging api as per specification
17+
([#3038](https://github.com/open-telemetry/opentelemetry-python/pull/3038))
1418
- Fix: Avoid generator in metrics _ViewInstrumentMatch.collect()
1519
([#3035](https://github.com/open-telemetry/opentelemetry-python/pull/3035)
1620
- [exporter-otlp-proto-grpc] add user agent string

docs/api/_logs.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
opentelemetry._logs package
2+
=============================
3+
4+
Submodules
5+
----------
6+
7+
.. toctree::
8+
9+
_logs.severity
10+
11+
Module contents
12+
---------------
13+
14+
.. automodule:: opentelemetry._logs

docs/api/_logs.severity.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
opentelemetry._logs.severity
2+
============================
3+
4+
.. automodule:: opentelemetry._logs.severity

docs/api/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ OpenTelemetry Python API
66
.. toctree::
77
:maxdepth: 1
88

9+
_logs
910
baggage
1011
context
1112
propagate

docs/sdk/_logs.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
opentelemetry.sdk._logs package
2+
===============================
3+
4+
.. automodule:: opentelemetry.sdk._logs
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

docs/sdk/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ OpenTelemetry Python SDK
66
.. toctree::
77
:maxdepth: 1
88

9+
_logs
910
resources
1011
trace
1112
metrics
12-
logs
1313
error_handler
1414
environment_variables

docs/sdk/logs.export.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

docs/sdk/logs.rst

Lines changed: 0 additions & 22 deletions
This file was deleted.

docs/sdk/logs.severity.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)