@@ -55,8 +55,8 @@ async def query(
55
55
:param workspace_id: ID of the workspace. This is Workspace ID from the Properties blade in the
56
56
Azure portal.
57
57
:type workspace_id: str
58
- :param query: The Analytics query. Learn more about the `Analytics query syntax
59
- <https://azure .microsoft.com/documentation/articles/app-insights-analytics-reference />`_.
58
+ :param query: The Kusto query. Learn more about the `Kusto query syntax
59
+ <https://docs .microsoft.com/azure/data-explorer/kusto/query />`_.
60
60
:type query: str
61
61
:param timespan: The timespan for which to query the data. This can be a timedelta,
62
62
a timedelta and a start datetime, or a start datetime/end datetime.
@@ -69,7 +69,7 @@ async def query(
69
69
visualization options. By default, the API does not return information regarding the type of
70
70
visualization to show. If your client requires this information, specify the preference
71
71
:keyword additional_workspaces: A list of workspaces that are included in the query.
72
- These can be qualified workspace names, workspsce Ids or Azure resource Ids.
72
+ These can be qualified workspace names, workspace Ids or Azure resource Ids.
73
73
:paramtype additional_workspaces: list[str]
74
74
:return: QueryResults, or the result of cls(response)
75
75
:rtype: ~azure.monitor.query.LogsQueryResult
@@ -121,7 +121,7 @@ async def query_batch(
121
121
122
122
The response is returned in the same order as that of the requests sent.
123
123
124
- :param queries: The list of queries that should be processed
124
+ :param queries: The list of Kusto queries to execute.
125
125
:type queries: list[dict] or list[~azure.monitor.query.LogsBatchQuery]
126
126
:return: list of LogsQueryResult objects, or the result of cls(response)
127
127
:rtype: list[~azure.monitor.query.LogsQueryResult]
0 commit comments