Skip to content

Commit 3508a34

Browse files
pvaneckscottaddie
andauthored
[Monitor][Ingestion] Readme updates (Azure#28614)
Also updating changelog to reflect the version number of the next release. Signed-off-by: Paul Van Eck <paulvaneck@microsoft.com> Co-authored-by: Scott Addie <10702007+scottaddie@users.noreply.github.com>
1 parent f8315ad commit 3508a34

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

sdk/monitor/azure-monitor-ingestion/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release History
22

3-
## 1.0.0b2 (Unreleased)
3+
## 1.0.0 (Unreleased)
44

55
### Features Added
66
- Added new `on_error` parameter to the `upload` method to allow users to handle errors in their own way.

sdk/monitor/azure-monitor-ingestion/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Azure Monitor Ingestion client library for Python
22

3-
The Azure Monitor Ingestion client library is used to send custom logs to [Azure Monitor][azure_monitor_overview].
3+
The Azure Monitor Ingestion client library is used to send custom logs to [Azure Monitor][azure_monitor_overview] using the [Logs Ingestion API][ingestion_overview].
44

55
This library allows you to send data from virtually any source to supported built-in tables or to custom tables that you create in Log Analytics workspace. You can even extend the schema of built-in tables with custom columns.
66

@@ -75,7 +75,7 @@ Data collection rules (DCR) define data collected by Azure Monitor and specify h
7575

7676
The DCR must understand the structure of the input data and the structure of the target table. If the two don't match, it can use a transformation to convert the source data to match the target table. You may also use the transform to filter source data and perform any other calculations or conversions.
7777

78-
For more details, refer to [Data collection rules in Azure Monitor](https://learn.microsoft.com/azure/azure-monitor/essentials/data-collection-rule-overview).
78+
For more details, see [Data collection rules in Azure Monitor][data_collection_rule]. For information on how to retrieve a DCR ID, see [this tutorial][data_collection_rule_tutorial].
7979

8080
### Log Analytics workspace tables
8181

@@ -196,6 +196,8 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con
196196
[changelog]: https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-ingestion/CHANGELOG.md
197197
[data_collection_endpoint]: https://learn.microsoft.com/azure/azure-monitor/essentials/data-collection-endpoint-overview
198198
[data_collection_rule]: https://learn.microsoft.com/azure/azure-monitor/essentials/data-collection-rule-overview
199+
[data_collection_rule_tutorial]: https://learn.microsoft.com/azure/azure-monitor/logs/tutorial-logs-ingestion-portal#collect-information-from-the-dcr
200+
[ingestion_overview]: https://learn.microsoft.com/azure/azure-monitor/logs/logs-ingestion-api-overview
199201
[package]: https://aka.ms/azsdk-python-monitor-ingestion-pypi
200202
[pip]: https://pypi.org/project/pip/
201203
[python_logging]: https://docs.python.org/3/library/logging.html

sdk/monitor/azure-monitor-ingestion/azure/monitor/ingestion/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "1.0.0b2"
12+
VERSION = "1.0.0"

0 commit comments

Comments
 (0)