Skip to content

Commit 364d9df

Browse files
committed
Update docs metadata
1 parent 7e84f7d commit 364d9df

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

docs-ref-services/latest/monitor-query-readme.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: Azure Monitor Query client library for Python
33
keywords: Azure, python, SDK, API, azure-monitor-query, monitor
44
author: pvaneck
55
ms.author: paulvaneck
6-
ms.date: 02/08/2023
6+
ms.date: 02/14/2023
77
ms.topic: reference
88
ms.devlang: python
99
ms.service: monitor
1010
---
11-
# Azure Monitor Query client library for Python - version 1.1.0
11+
# Azure Monitor Query client library for Python - version 1.1.1
1212

1313

1414
The Azure Monitor Query client library is used to execute read-only queries against [Azure Monitor][azure_monitor_overview]'s two data platforms:
@@ -198,7 +198,7 @@ for table in response:
198198
df = pd.DataFrame(table.rows, columns=[col.name for col in table.columns])
199199
```
200200

201-
A full sample can be found [here](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/sample_logs_single_query.py).
201+
A full sample can be found [here](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/sample_logs_single_query.py).
202202

203203
In a similar fashion, to handle a batch logs query response:
204204

@@ -210,7 +210,7 @@ for result in response:
210210
print(df)
211211
```
212212

213-
A full sample can be found [here](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/sample_batch_query.py).
213+
A full sample can be found [here](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/sample_batch_query.py).
214214

215215
### Batch logs query
216216

@@ -308,7 +308,7 @@ client.query_workspace(
308308
)
309309
```
310310

311-
A full sample can be found [here](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/sample_log_query_multiple_workspaces.py).
311+
A full sample can be found [here](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/sample_log_query_multiple_workspaces.py).
312312

313313
#### Include statistics
314314

@@ -510,18 +510,18 @@ The following code samples show common scenarios with the Azure Monitor Query cl
510510

511511
#### Logs query samples
512512

513-
- [Send a single query with LogsQueryClient and handle the response as a table](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/sample_logs_single_query.py) ([async sample](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/async_samples/sample_log_query_async.py))
514-
- [Send a single query with LogsQueryClient and handle the response in key-value form](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/sample_logs_query_key_value_form.py)
515-
- [Send a single query with LogsQueryClient without pandas](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/sample_single_log_query_without_pandas.py)
516-
- [Send a single query with LogsQueryClient across multiple workspaces](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/sample_log_query_multiple_workspaces.py)
517-
- [Send multiple queries with LogsQueryClient](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/sample_batch_query.py)
518-
- [Send a single query with LogsQueryClient using server timeout](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/sample_server_timeout.py)
513+
- [Send a single query with LogsQueryClient and handle the response as a table](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/sample_logs_single_query.py) ([async sample](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/async_samples/sample_log_query_async.py))
514+
- [Send a single query with LogsQueryClient and handle the response in key-value form](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/sample_logs_query_key_value_form.py)
515+
- [Send a single query with LogsQueryClient without pandas](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/sample_single_log_query_without_pandas.py)
516+
- [Send a single query with LogsQueryClient across multiple workspaces](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/sample_log_query_multiple_workspaces.py)
517+
- [Send multiple queries with LogsQueryClient](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/sample_batch_query.py)
518+
- [Send a single query with LogsQueryClient using server timeout](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/sample_server_timeout.py)
519519

520520
#### Metrics query samples
521521

522-
- [Send a query using MetricsQueryClient](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/sample_metrics_query.py) ([async sample](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/async_samples/sample_metrics_query_async.py))
523-
- [Get a list of metric namespaces](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/sample_metric_namespaces.py) ([async sample](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/async_samples/sample_metric_namespaces_async.py))
524-
- [Get a list of metric definitions](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/sample_metric_definitions.py) ([async sample](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples/async_samples/sample_metric_definitions_async.py))
522+
- [Send a query using MetricsQueryClient](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/sample_metrics_query.py) ([async sample](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/async_samples/sample_metrics_query_async.py))
523+
- [Get a list of metric namespaces](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/sample_metric_namespaces.py) ([async sample](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/async_samples/sample_metric_namespaces_async.py))
524+
- [Get a list of metric definitions](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/sample_metric_definitions.py) ([async sample](https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples/async_samples/sample_metric_definitions_async.py))
525525

526526
## Contributing
527527

@@ -538,14 +538,14 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con
538538
[azure_monitor_create_using_portal]: https://learn.microsoft.com/azure/azure-monitor/logs/quick-create-workspace
539539
[azure_monitor_overview]: https://learn.microsoft.com/azure/azure-monitor/
540540
[azure_subscription]: https://azure.microsoft.com/free/python/
541-
[changelog]: https://github.com/Azure/azure-sdk-for-python/tree/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/CHANGELOG.md
541+
[changelog]: https://github.com/Azure/azure-sdk-for-python/tree/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/CHANGELOG.md
542542
[kusto_query_language]: https://learn.microsoft.com/azure/data-explorer/kusto/query/
543543
[package]: https://aka.ms/azsdk-python-monitor-query-pypi
544544
[pip]: https://pypi.org/project/pip/
545545
[python_logging]: https://docs.python.org/3/library/logging.html
546546
[python-query-ref-docs]: https://aka.ms/azsdk/python/monitor-query/docs
547-
[samples]: https://github.com/Azure/azure-sdk-for-python/tree/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/samples
548-
[source]: https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.0/sdk/monitor/azure-monitor-query/
547+
[samples]: https://github.com/Azure/azure-sdk-for-python/tree/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/samples
548+
[source]: https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_1.1.1/sdk/monitor/azure-monitor-query/
549549

550550
[cla]: https://cla.microsoft.com
551551
[code_of_conduct]: https://opensource.microsoft.com/codeofconduct/
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "azure-monitor-query",
3-
"Version": "1.1.0",
3+
"Version": "1.1.1",
44
"DevVersion": null,
55
"DirectoryPath": "sdk/monitor/azure-monitor-query",
66
"ServiceDirectory": "monitor",
@@ -10,5 +10,5 @@
1010
"SdkType": "client",
1111
"IsNewSdk": true,
1212
"ArtifactName": "azure-monitor-query",
13-
"ReleaseStatus": "2023-02-07"
13+
"ReleaseStatus": "2023-02-13"
1414
}

0 commit comments

Comments
 (0)