You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/monitor/Azure.Monitor.Query/src/LogsQueryClient.cs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -101,7 +101,7 @@ protected LogsQueryClient()
101
101
/// </code>
102
102
/// </summary>
103
103
/// <param name="workspaceId">The workspace id to include in the query (<c>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</c>).</param>
104
-
/// <param name="query">The query text to execute.</param>
104
+
/// <param name="query">The Kusto query to execute.</param>
105
105
/// <param name="timeRange">The timespan over which to query data. Logs will be filtered to include entries produced starting at <c>Now - timeSpan</c>. </param>
106
106
/// <param name="options">The <see cref="LogsQueryOptions"/> to configure the query.</param>
107
107
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to use.</param>
/// <param name="workspaceId">The workspace id to include in the query (<c>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</c>).</param>
136
-
/// <param name="query">The query text to execute.</param>
136
+
/// <param name="query">The Kusto query to execute.</param>
137
137
/// <param name="timeRange">The timespan over which to query data. Logs will be filtered to include entries produced starting at <c>Now - timeSpan</c>. </param>
138
138
/// <param name="options">The <see cref="LogsQueryOptions"/> to configure the query.</param>
139
139
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to use.</param>
@@ -149,7 +149,7 @@ public virtual async Task<Response<IReadOnlyList<T>>> QueryAsync<T>(string works
149
149
/// Executes the logs query.
150
150
/// </summary>
151
151
/// <param name="workspaceId">The workspace id to include in the query (<c>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</c>).</param>
152
-
/// <param name="query">The query text to execute.</param>
152
+
/// <param name="query">The Kusto query to execute.</param>
153
153
/// <param name="timeRange">The timespan over which to query data. Logs will be filtered to include entries produced starting at <c>Now - timeSpan</c>. </param>
154
154
/// <param name="options">The <see cref="LogsQueryOptions"/> to configure the query.</param>
155
155
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to use.</param>
/// <param name="workspaceId">The workspace id to include in the query (<c>xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx</c>).</param>
176
-
/// <param name="query">The query text to execute.</param>
176
+
/// <param name="query">The Kusto query to execute.</param>
177
177
/// <param name="timeRange">The timespan over which to query data. Logs will be filtered to include entries produced starting at <c>Now - timeSpan</c>. </param>
178
178
/// <param name="options">The <see cref="LogsQueryOptions"/> to configure the query.</param>
179
179
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to use.</param>
@@ -278,7 +278,7 @@ public virtual Response<LogsBatchQueryResults> QueryBatch(LogsBatchQuery batch,
278
278
/// }
279
279
/// </code>
280
280
/// </summary>
281
-
/// <param name="batch">The batch of queries to send.</param>
281
+
/// <param name="batch">The batch of Kusto queries to send.</param>
282
282
/// <param name="cancellationToken">The <see cref="CancellationToken"/> to use.</param>
283
283
/// <returns>The <see cref="LogsBatchQueryResults"/> that allows retrieving query results.</returns>
0 commit comments