Skip to content

Commit 979e507

Browse files
committed
Updating Readme, scripts, and setup for new namespace
1 parent cd26b12 commit 979e507

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@
4848
([#246](https://github.com/microsoft/ApplicationInsights-Python/pull/246))
4949
- Change namespace to `azure.monitor.opentelemtry`
5050
([#247](https://github.com/microsoft/ApplicationInsights-Python/pull/247))
51+
- Updating documents for new namespace
52+
([#249](https://github.com/microsoft/ApplicationInsights-Python/pull/249))
5153

5254
## [1.0.0b8](https://github.com/microsoft/ApplicationInsights-Python/releases/tag/v1.0.0b8) - 2022-09-26
5355

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ This repository holds components that enable telemetry scenarios for your Python
44

55
Below is the list of components that are within this repository:
66

7-
[Azure Monitor OpenTelemetry Distro][azure-monitor-opentelemetry-distro].
7+
[Azure Monitor OpenTelemetry Distro][azure-monitor-opentelemetry].
88

99
## Contributing
1010

1111
For information about contributing to this repository, see [CONTRIBUTING.md](CONTRIBUTING.md).
1212

1313
<!-- LINKS -->
1414
[azure_application_insights]: https://azure.microsoft.com/documentation/articles/app-insights-overview/
15-
[azure-monitor-opentelemetry-distro]: https://github.com/microsoft/ApplicationInsights-Python/blob/main/azure-monitor-opentelemetry-distro/README.md
15+
[azure-monitor-opentelemetry]: https://github.com/microsoft/ApplicationInsights-Python/blob/main/azure-monitor-opentelemetry/README.md

azure-monitor-opentelemetry/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To use this package, you must have:
3434
Install the Azure Monitor Opentelemetry Distro with [pip][pip]:
3535

3636
```Bash
37-
pip install azure-monitor-opentelemetry-distro --pre
37+
pip install azure-monitor-opentelemetry --pre
3838
```
3939

4040
### Usage
@@ -119,4 +119,4 @@ Samples are available [here][samples] to demonstrate how to utilize the above co
119119
[opentelemetry_spec_view]: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/sdk.md#view
120120
[python]: https://www.python.org/downloads/
121121
[pip]: https://pypi.org/project/pip/
122-
[samples]: https://github.com/microsoft/ApplicationInsights-Python/tree/main/azure-monitor-opentelemetry-distro/samples
122+
[samples]: https://github.com/microsoft/ApplicationInsights-Python/tree/main/azure-monitor-opentelemetry/samples

azure-monitor-opentelemetry/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
license="MIT License",
5757
author="Microsoft Corporation",
5858
author_email="[email protected]",
59-
url="https://github.com/microsoft/ApplicationInsights-Python/tree/main/azure-monitor-opentelemetry-distro",
59+
url="https://github.com/microsoft/ApplicationInsights-Python/tree/main/azure-monitor-opentelemetry",
6060
classifiers=[
6161
"Development Status :: 4 - Beta",
6262
"Programming Language :: Python",

scripts/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DISTDIR=dist
1616
mkdir -p $DISTDIR
1717
rm -rf $DISTDIR/*
1818

19-
for d in azure-monitor-opentelemetry-distro; do
19+
for d in azure-monitor-opentelemetry; do
2020
(
2121
echo "building $d"
2222
cd "$d"

0 commit comments

Comments
 (0)