diff --git a/CHANGELOG.md b/CHANGELOG.md index 2dde23f..7f6c724 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,6 +48,8 @@ ([#246](https://github.com/microsoft/ApplicationInsights-Python/pull/246)) - Change namespace to `azure.monitor.opentelemtry` ([#247](https://github.com/microsoft/ApplicationInsights-Python/pull/247)) +- Updating documents for new namespace + ([#249](https://github.com/microsoft/ApplicationInsights-Python/pull/249)) ## [1.0.0b8](https://github.com/microsoft/ApplicationInsights-Python/releases/tag/v1.0.0b8) - 2022-09-26 diff --git a/README.md b/README.md index 50a1c06..26e582a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This repository holds components that enable telemetry scenarios for your Python Below is the list of components that are within this repository: -[Azure Monitor OpenTelemetry Distro][azure-monitor-opentelemetry-distro]. +[Azure Monitor OpenTelemetry Distro][azure-monitor-opentelemetry]. ## Contributing @@ -12,4 +12,4 @@ For information about contributing to this repository, see [CONTRIBUTING.md](CON [azure_application_insights]: https://azure.microsoft.com/documentation/articles/app-insights-overview/ -[azure-monitor-opentelemetry-distro]: https://github.com/microsoft/ApplicationInsights-Python/blob/main/azure-monitor-opentelemetry-distro/README.md +[azure-monitor-opentelemetry]: https://github.com/microsoft/ApplicationInsights-Python/blob/main/azure-monitor-opentelemetry/README.md diff --git a/azure-monitor-opentelemetry/README.md b/azure-monitor-opentelemetry/README.md index 231b63a..b704e78 100644 --- a/azure-monitor-opentelemetry/README.md +++ b/azure-monitor-opentelemetry/README.md @@ -34,7 +34,7 @@ To use this package, you must have: Install the Azure Monitor Opentelemetry Distro with [pip][pip]: ```Bash -pip install azure-monitor-opentelemetry-distro --pre +pip install azure-monitor-opentelemetry --pre ``` ### Usage @@ -119,4 +119,4 @@ Samples are available [here][samples] to demonstrate how to utilize the above co [opentelemetry_spec_view]: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/sdk.md#view [python]: https://www.python.org/downloads/ [pip]: https://pypi.org/project/pip/ -[samples]: https://github.com/microsoft/ApplicationInsights-Python/tree/main/azure-monitor-opentelemetry-distro/samples +[samples]: https://github.com/microsoft/ApplicationInsights-Python/tree/main/azure-monitor-opentelemetry/samples diff --git a/azure-monitor-opentelemetry/setup.py b/azure-monitor-opentelemetry/setup.py index 6bd6a2b..0c886b1 100644 --- a/azure-monitor-opentelemetry/setup.py +++ b/azure-monitor-opentelemetry/setup.py @@ -56,7 +56,7 @@ setup( license="MIT License", author="Microsoft Corporation", author_email="ascl@microsoft.com", - url="https://github.com/microsoft/ApplicationInsights-Python/tree/main/azure-monitor-opentelemetry-distro", + url="https://github.com/microsoft/ApplicationInsights-Python/tree/main/azure-monitor-opentelemetry", classifiers=[ "Development Status :: 4 - Beta", "Programming Language :: Python", diff --git a/scripts/build.sh b/scripts/build.sh index b08ac71..5850135 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -16,7 +16,7 @@ DISTDIR=dist mkdir -p $DISTDIR rm -rf $DISTDIR/* - for d in azure-monitor-opentelemetry-distro; do + for d in azure-monitor-opentelemetry; do ( echo "building $d" cd "$d"