Merge pull request #249 from jeremydvoss/release-1.0.0b9

Updating Readme, scripts, and setup for new namespace
This commit is contained in:
Jeremy Voss 2023-02-22 14:08:28 -08:00 коммит произвёл GitHub
Родитель dd514657c7 5901f5cd34
Коммит 6343bb7596
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 8 добавлений и 6 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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
<!-- LINKS -->
[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

Просмотреть файл

@ -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

Просмотреть файл

@ -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",

Просмотреть файл

@ -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"