Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions azure_monitor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

## Unreleased

## 0.2.0
Released 2020-03-31

- Initial beta release

## 0.1.0
Released 2019-11-06

- Initial alpha release
6 changes: 3 additions & 3 deletions README.md → azure_monitor/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# OpenTelemetry Azure Monitor SDKs and Exporters

[![Gitter chat](https://img.shields.io/gitter/room/Microsoft/azure-monitor-python)](https://gitter.im/Microsoft/azure-monitor-python)
[![Build status](https://travis-ci.org/microsoft/opentelemetry-azure-monitor-python.svg?branch=master)](https://travis-ci.org/microsoft/opentelemetry-exporters-python)
[![PyPI version](https://badge.fury.io/py/opentelemetry-azure-monitor-exporter.svg)](https://badge.fury.io/py/opentelemetry-azure-monitor-exporter)
[![Build status](https://travis-ci.org/microsoft/opentelemetry-azure-monitor-python.svg?branch=master)](https://travis-ci.org/microsoft/opentelemetry-azure-monitor-python)
[![PyPI version](https://badge.fury.io/py/opentelemetry-azure-monitor.svg)](https://badge.fury.io/py/opentelemetry-azure-monitor)

## Installation

```sh
pip install opentelemetry-azure-monitor-exporter
pip install opentelemetry-azure-monitor
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion azure_monitor/examples/traces/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
## Installation

```sh
$ pip install opentelemetry-azure-monitor-exporter
$ pip install opentelemetry-azure-monitor
```

## Run the Applications
Expand Down
12 changes: 6 additions & 6 deletions azure_monitor/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
[metadata]
name = opentelemetry-azure-monitor-exporter
description = Azure Monitor integration for OpenTelemetry
long_description = file: README.rst
long_description_content_type = text/x-rst
name = opentelemetry-azure-monitor
description = Azure Monitor SDKs and Exporters for OpenTelemetry
long_description = file: README.md
long_description_content_type = text/markdown
author = Microsoft
author_email = appinsightssdk@microsoft.com
url = https://github.com/microsoft/opentelemetry-exporters-python
url = https://github.com/microsoft/opentelemetry-azure-monitor-python
platforms = any
license = MIT
classifiers =
Development Status :: 3 - Alpha
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Expand Down
2 changes: 1 addition & 1 deletion azure_monitor/src/azure_monitor/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
__version__ = "0.2.dev0"
__version__ = "0.3.dev0"
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
author = "Microsoft"

# The full version, including alpha/beta/rc tags
release = "0.0.1b"
release = "0.2b.0"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The package is available on PyPI, and can installed via pip:

.. code-block:: sh

pip install opentelemetry-azure-monitor-exporter
pip install opentelemetry-azure-monitor

.. toctree::
:maxdepth: 1
Expand Down