次の方法で共有


LogsQueryClient.QueryWorkspaceAsync メソッド

定義

オーバーロード

QueryWorkspaceAsync(String, String, QueryTimeRange, LogsQueryOptions, CancellationToken)

ログ クエリを実行します。

QueryWorkspaceAsync<T>(String, String, QueryTimeRange, LogsQueryOptions, CancellationToken)

ログ クエリを実行します。 クエリが 1 つの列を返す場合は、結果を厳密に型指定されたモデル クラスまたはプリミティブ型に逆シリアル化します。

モデルのクエリの例:

Response<IReadOnlyList<MyLogEntryModel>> response = await client.QueryWorkspaceAsync<MyLogEntryModel>(
    workspaceId,
    "AzureActivity | summarize Count = count() by ResourceGroup | top 10 by Count",
    new QueryTimeRange(TimeSpan.FromDays(1)));

プリミティブのクエリの例:

Response<IReadOnlyList<string>> response = await client.QueryWorkspaceAsync<string>(
    workspaceId,
    "AzureActivity | summarize Count = count() by ResourceGroup | top 10 by Count | project ResourceGroup",
    new QueryTimeRange(TimeSpan.FromDays(1)));

QueryWorkspaceAsync(String, String, QueryTimeRange, LogsQueryOptions, CancellationToken)

ソース:
LogsQueryClient.cs
ソース:
LogsQueryClient.cs

ログ クエリを実行します。

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Monitor.Query.Models.LogsQueryResult>> QueryWorkspaceAsync (string workspaceId, string query, Azure.Monitor.Query.QueryTimeRange timeRange, Azure.Monitor.Query.LogsQueryOptions options = default, System.Threading.CancellationToken cancellationToken = default);
abstract member QueryWorkspaceAsync : string * string * Azure.Monitor.Query.QueryTimeRange * Azure.Monitor.Query.LogsQueryOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Monitor.Query.Models.LogsQueryResult>>
override this.QueryWorkspaceAsync : string * string * Azure.Monitor.Query.QueryTimeRange * Azure.Monitor.Query.LogsQueryOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Monitor.Query.Models.LogsQueryResult>>
Public Overridable Function QueryWorkspaceAsync (workspaceId As String, query As String, timeRange As QueryTimeRange, Optional options As LogsQueryOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of LogsQueryResult))

パラメーター

workspaceId
String

クエリに含めるワークスペース ID (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)。

query
String

ログをフェッチする Kusto クエリ。

timeRange
QueryTimeRange

ログを検索する必要がある期間。

options
LogsQueryOptions

LogsQueryOptionsクエリを構成する 。

cancellationToken
CancellationToken

使用する CancellationToken

戻り値

LogsQueryResultクエリ結果を含む 。

注釈

引数が timeRangeAll 、引数に query 時間範囲フィルターが含まれている場合、基になるサービスは で query指定された時間範囲を使用します。

適用対象

QueryWorkspaceAsync<T>(String, String, QueryTimeRange, LogsQueryOptions, CancellationToken)

ソース:
LogsQueryClient.cs
ソース:
LogsQueryClient.cs

ログ クエリを実行します。 クエリが 1 つの列を返す場合は、結果を厳密に型指定されたモデル クラスまたはプリミティブ型に逆シリアル化します。

モデルのクエリの例:

Response<IReadOnlyList<MyLogEntryModel>> response = await client.QueryWorkspaceAsync<MyLogEntryModel>(
    workspaceId,
    "AzureActivity | summarize Count = count() by ResourceGroup | top 10 by Count",
    new QueryTimeRange(TimeSpan.FromDays(1)));

プリミティブのクエリの例:

Response<IReadOnlyList<string>> response = await client.QueryWorkspaceAsync<string>(
    workspaceId,
    "AzureActivity | summarize Count = count() by ResourceGroup | top 10 by Count | project ResourceGroup",
    new QueryTimeRange(TimeSpan.FromDays(1)));
public virtual System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<T>>> QueryWorkspaceAsync<T> (string workspaceId, string query, Azure.Monitor.Query.QueryTimeRange timeRange, Azure.Monitor.Query.LogsQueryOptions options = default, System.Threading.CancellationToken cancellationToken = default);
abstract member QueryWorkspaceAsync : string * string * Azure.Monitor.Query.QueryTimeRange * Azure.Monitor.Query.LogsQueryOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<'T>>>
override this.QueryWorkspaceAsync : string * string * Azure.Monitor.Query.QueryTimeRange * Azure.Monitor.Query.LogsQueryOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<System.Collections.Generic.IReadOnlyList<'T>>>
Public Overridable Function QueryWorkspaceAsync(Of T) (workspaceId As String, query As String, timeRange As QueryTimeRange, Optional options As LogsQueryOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of IReadOnlyList(Of T)))

型パラメーター

T

パラメーター

workspaceId
String

クエリに含めるワークスペース ID (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)。

query
String

ログをフェッチする Kusto クエリ。

timeRange
QueryTimeRange

ログを検索する必要がある期間。

options
LogsQueryOptions

LogsQueryOptionsクエリを構成する 。

cancellationToken
CancellationToken

使用する CancellationToken

戻り値

Tにマップされたクエリ結果。

注釈

引数が timeRangeAll 、引数に query 時間範囲フィルターが含まれている場合、基になるサービスは で query指定された時間範囲を使用します。

適用対象