Skip to content

Commit 4680594

Browse files
authored
Update docs (open-telemetry#1312)
1 parent 397f228 commit 4680594

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ install](https://pip.pypa.io/en/stable/reference/pip_install/#editable-installs)
8484
```sh
8585
pip install -e ./opentelemetry-api
8686
pip install -e ./opentelemetry-sdk
87-
pip install -e ./ext/opentelemetry-instrumentation-{instrumentation}
87+
pip install -e ./instrumentation/opentelemetry-instrumentation-{instrumentation}
8888
```
8989

9090
## Documentation

docs/examples/opentelemetry-example-app/src/opentelemetry_example_app/grpc/hello_world_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
to run these examples. To run this script in the context of the example app,
2222
install ``opentelemetry-example-app``::
2323
24-
pip install -e ext/opentelemetry-instrumentation-grpc/
24+
pip install -e instrumentation/opentelemetry-instrumentation-grpc/
2525
pip install -e docs/examples/opentelemetry-example-app
2626
2727
Then run the server in one shell::

docs/examples/opentelemetry-example-app/src/opentelemetry_example_app/grpc/hello_world_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
to run these examples. To run this script in the context of the example app,
2222
install ``opentelemetry-example-app``::
2323
24-
pip install -e ext/opentelemetry-instrumentation-grpc/
24+
pip install -e instrumentation/opentelemetry-instrumentation-grpc/
2525
pip install -e docs/examples/opentelemetry-example-app
2626
2727
Then run the server in one shell::

docs/examples/opentelemetry-example-app/src/opentelemetry_example_app/grpc/route_guide_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
to run these examples. To run this script in the context of the example app,
2222
install ``opentelemetry-example-app``::
2323
24-
pip install -e ext/opentelemetry-instrumentation-grpc/
24+
pip install -e instrumentation/opentelemetry-instrumentation-grpc/
2525
pip install -e docs/examples/opentelemetry-example-app
2626
2727
Then run the server in one shell::

docs/examples/opentelemetry-example-app/src/opentelemetry_example_app/grpc/route_guide_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
to run these examples. To run this script in the context of the example app,
2323
install ``opentelemetry-example-app``::
2424
25-
pip install -e ext/opentelemetry-instrumentation-grpc/
25+
pip install -e instrumentation/opentelemetry-instrumentation-grpc/
2626
pip install -e docs/examples/opentelemetry-example-app
2727
2828
Then run the server in one shell::

docs/getting-started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ The above is a great example, but it's very manual. Within the telemetry space,
150150
* Database calls
151151

152152
To help instrument common scenarios, opentelemetry also has the concept of "instrumentations": packages that are designed to interface
153-
with a specific framework or library, such as Flask and psycopg2. A list of the currently curated extension packages can be found :scm_web:`here <ext/>`.
153+
with a specific framework or library, such as Flask and psycopg2. A list of the currently curated extension packages can be found :scm_web:`here <instrumentation/>`.
154154

155155
We will now instrument a basic Flask application that uses the requests library to send HTTP requests. First, install the instrumentation packages themselves:
156156

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In addition, there are several extension packages which can be installed separat
3030
pip install opentelemetry-instrumentation-{instrumentation}
3131

3232
These are for exporter and instrumentation packages respectively.
33-
The packages can be found in :scm_web:`instrumentation/ directory of the repository <exporter/>`.
33+
The packages can be found in :scm_web:`instrumentation <instrumentation/>` and :scm_web:`exporter <exporter/>` directory of the repository.
3434

3535
Extensions
3636
----------

exporter/opentelemetry-exporter-zipkin/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ long_description = file: README.rst
1919
long_description_content_type = text/x-rst
2020
author = OpenTelemetry Authors
2121
author_email = cncf-opentelemetry-contributors@lists.cncf.io
22-
url = https://github.com/open-telemetry/opentelemetry-python/tree/master/ext/opentelemetry-exporter-zipkin
22+
url = https://github.com/open-telemetry/opentelemetry-python/tree/master/exporter/opentelemetry-exporter-zipkin
2323
platforms = any
2424
license = Apache-2.0
2525
classifiers =

instrumentation/opentelemetry-instrumentation-celery/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@ accomplish this as shown in the example above.
6363

6464
References
6565
----------
66-
* `OpenTelemetry Celery Instrumentation <https://opentelemetry-python.readthedocs.io/en/latest/ext/celery/celery.html>`_
66+
* `OpenTelemetry Celery Instrumentation <https://opentelemetry-python.readthedocs.io/en/latest/instrumentation/celery/celery.html>`_
6767
* `OpenTelemetry Project <https://opentelemetry.io/>`_
6868

instrumentation/opentelemetry-instrumentation-redis/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ Installation
1919
References
2020
----------
2121

22-
* `OpenTelemetry Redis Instrumentation <https://opentelemetry-python.readthedocs.io/en/latest/ext/opentelemetry-instrumentation-redis/opentelemetry-instrumentation-redis.html>`_
22+
* `OpenTelemetry Redis Instrumentation <https://opentelemetry-python.readthedocs.io/en/latest/instrumentation/opentelemetry-instrumentation-redis/opentelemetry-instrumentation-redis.html>`_
2323
* `OpenTelemetry Project <https://opentelemetry.io/>`_

0 commit comments

Comments
 (0)