次の方法で共有


Events.GetTraceEventsWithHttpMessagesAsync メソッド

定義

トレース イベントに対して OData クエリを実行する

public System.Threading.Tasks.Task<Microsoft.Rest.HttpOperationResponse<Microsoft.Azure.ApplicationInsights.Query.Models.EventsResults<Microsoft.Azure.ApplicationInsights.Query.Models.EventsTraceResult>>> GetTraceEventsWithHttpMessagesAsync (string appId, string timespan = default, string filter = default, string search = default, string orderby = default, string select = default, int? skip = default, int? top = default, string format = default, bool? count = default, string apply = default, System.Collections.Generic.Dictionary<string,System.Collections.Generic.List<string>> customHeaders = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetTraceEventsWithHttpMessagesAsync : string * string * string * string * string * string * Nullable<int> * Nullable<int> * string * Nullable<bool> * string * System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Rest.HttpOperationResponse<Microsoft.Azure.ApplicationInsights.Query.Models.EventsResults<Microsoft.Azure.ApplicationInsights.Query.Models.EventsTraceResult>>>
override this.GetTraceEventsWithHttpMessagesAsync : string * string * string * string * string * string * Nullable<int> * Nullable<int> * string * Nullable<bool> * string * System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Rest.HttpOperationResponse<Microsoft.Azure.ApplicationInsights.Query.Models.EventsResults<Microsoft.Azure.ApplicationInsights.Query.Models.EventsTraceResult>>>
Public Function GetTraceEventsWithHttpMessagesAsync (appId As String, Optional timespan As String = Nothing, Optional filter As String = Nothing, Optional search As String = Nothing, Optional orderby As String = Nothing, Optional select As String = Nothing, Optional skip As Nullable(Of Integer) = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional format As String = Nothing, Optional count As Nullable(Of Boolean) = Nothing, Optional apply As String = Nothing, Optional customHeaders As Dictionary(Of String, List(Of String)) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of HttpOperationResponse(Of EventsResults(Of EventsTraceResult)))

パラメーター

appId
String
timespan
String

省略可能。 イベントを取得する期間。 これは ISO8601 期間の値です。 この期間は、Odata 式で指定されているに加えて適用されます。

filter
String

返されたイベントをフィルター処理するために使用される式

search
String

特定のイベントを返す必要があるかどうかを照合するフリーテキスト検索式

orderby
String

返されるイベントの順序を制御する "asc" (既定値) または "desc" を持つプロパティのコンマ区切りのリスト

select
String

プロパティを、返される各イベントで要求されたプロパティのみに制限します

skip
Nullable<Int32>

イベントを返す前にスキップする項目の数

top
Nullable<Int32>

返されるイベントの数

format
String

返されるイベントの形式

count
Nullable<Boolean>

返されたイベントに含まれる一致する項目の数を要求する

apply
String

返されたイベントの集計に使用される式

customHeaders
Dictionary<String,List<String>>

要求に追加されるヘッダー。

cancellationToken
CancellationToken

キャンセル トークン。

戻り値

実装

注釈

トレース イベントの OData クエリを実行します

適用対象