Skip to content

Commit b1cb937

Browse files
committed
Remove opentelemetry-instrumentation
Fixes #592
1 parent 08daa9d commit b1cb937

31 files changed

+17
-1812
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- 'release/*'
77
pull_request:
88
env:
9-
CORE_REPO_SHA: c4cdffd0c8bd47b2e5c4f4a823722ca514f10db3
9+
CORE_REPO_SHA: e78c9c460c1f1f062032a31f46245d7b1f9cdcd0
1010

1111
jobs:
1212
build:

CHANGELOG.md

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

88
## [Unreleased](https://github.com/open-telemetry/opentelemetry-python/compare/v1.3.0-0.22b0...HEAD)
99

10+
### Removed
11+
- Move `opentelemetry-instrumentation` to the core repo.
12+
([#595](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/595))
13+
1014
### Changed
1115
- `opentelemetry-instrumentation-tornado` properly instrument work done in tornado on_finish method.
1216
([#499](https://github.com/open-telemetry/opentelemetry-python-contrib/pull/499))

docs-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sphinx-autodoc-typehints
66
# doesn't work for pkg_resources.
77
-e "git+https://github.com/open-telemetry/opentelemetry-python.git#egg=opentelemetry-api&subdirectory=opentelemetry-api"
88
-e "git+https://github.com/open-telemetry/opentelemetry-python.git#egg=opentelemetry-semantic-conventions&subdirectory=opentelemetry-semantic-conventions"
9-
-e "git+https://github.com/open-telemetry/opentelemetry-python-contrib.git#egg=opentelemetry-instrumentation&subdirectory=opentelemetry-instrumentation"
9+
-e "git+https://github.com/open-telemetry/opentelemetry-python.git#egg=opentelemetry-instrumentation&subdirectory=opentelemetry-instrumentation"
1010
-e "git+https://github.com/open-telemetry/opentelemetry-python.git#egg=opentelemetry-sdk&subdirectory=opentelemetry-sdk"
1111
-e "git+https://github.com/open-telemetry/opentelemetry-python-contrib.git#egg=opentelemetry-util-http&subdirectory=util/opentelemetry-util-http"
1212

docs/conf.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
settings.configure()
2626

2727
source_dirs = [
28-
os.path.abspath("../opentelemetry-instrumentation/src/"),
28+
os.path.abspath(
29+
"../opentelemetry-python-core/opentelemetry-instrumentation/src/"
30+
),
2931
]
3032

3133
exp = "../exporter"

opentelemetry-instrumentation/MANIFEST.in

-7
This file was deleted.

opentelemetry-instrumentation/README.rst

-120
This file was deleted.

opentelemetry-instrumentation/setup.cfg

-56
This file was deleted.

opentelemetry-instrumentation/setup.py

-27
This file was deleted.

opentelemetry-instrumentation/src/opentelemetry/instrumentation/auto_instrumentation/__init__.py

-109
This file was deleted.

0 commit comments

Comments
 (0)