Skip to content

Commit

Permalink
docs: update links to readthedocs
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Verhoog committed Sep 21, 2020
1 parent 77e9919 commit 479807b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![CircleCI](https://circleci.com/gh/DataDog/dd-trace-py/tree/master.svg?style=svg)](https://circleci.com/gh/DataDog/dd-trace-py/tree/master)
[![Pyversions](https://img.shields.io/pypi/pyversions/ddtrace.svg?style=flat)](https://pypi.org/project/ddtrace/)
[![PypiVersions](https://img.shields.io/pypi/v/ddtrace.svg)](https://pypi.org/project/ddtrace/)
[![OpenTracing Badge](https://img.shields.io/badge/OpenTracing-enabled-blue.svg)](http://pypi.datadoghq.com/trace/docs/installation_quickstart.html#opentracing)
[![OpenTracing Badge](https://img.shields.io/badge/OpenTracing-enabled-blue.svg)](https://ddtrace.readthedocs.io/en/stable/installation_quickstart.html#opentracing)

`ddtrace` is Datadog's tracing library for Python. It is used to trace requests
as they flow across web servers, databases and microservices so that developers
Expand All @@ -15,13 +15,13 @@ For a basic product overview, installation and quick start, check out our
[setup documentation][setup docs].

For more advanced usage and configuration, check out our [API
documentation][pypi docs].
documentation][api docs].

For descriptions of terminology used in APM, take a look at the [official
documentation][visualization docs].

[setup docs]: https://docs.datadoghq.com/tracing/setup/python/
[pypi docs]: http://pypi.datadoghq.com/trace/docs/
[api docs]: https://ddtrace.readthedocs.io/
[visualization docs]: https://docs.datadoghq.com/tracing/visualization/


Expand Down
2 changes: 1 addition & 1 deletion ddtrace/contrib/django/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def __getattr__(self, attr):
return val

def __check_user_settings(self, user_settings):
SETTINGS_DOC = "http://pypi.datadoghq.com/trace/docs/#module-ddtrace.contrib.django"
SETTINGS_DOC = "https://ddtrace.readthedocs.io/en/stable/integrations.html#django"
for setting in REMOVED_SETTINGS:
if setting in user_settings:
raise RuntimeError('The "{}" setting has been removed, check "{}".'.format(setting, SETTINGS_DOC))
Expand Down
2 changes: 1 addition & 1 deletion ddtrace/contrib/kombu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Note: To permit distributed tracing for the kombu integration you must enable the tracer with priority
sampling. Refer to the documentation here:
http://pypi.datadoghq.com/trace/docs/advanced_usage.html#priority-sampling
https://ddtrace.readthedocs.io/en/stable/advanced_usage.html#priority-sampling
Without enabling distributed tracing, spans within a trace generated by the kombu integration might be dropped
without the whole trace being dropped.
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ def run_tests(self):
[setup documentation][setup docs].
For more advanced usage and configuration, check out our [API
documentation][pypi docs].
documentation][api docs].
For descriptions of terminology used in APM, take a look at the [official
documentation][visualization docs].
[setup docs]: https://docs.datadoghq.com/tracing/setup/python/
[pypi docs]: http://pypi.datadoghq.com/trace/docs/
[api docs]: https://ddtrace.readthedocs.io/
[visualization docs]: https://docs.datadoghq.com/tracing/visualization/
"""

Expand Down

0 comments on commit 479807b

Please sign in to comment.