次の方法で共有


MonitorExtensions.GetTenantActivityLogsAsync メソッド

定義

テナントのアクティビティ ログを取得します。<br>サブスクリプションのアクティビティ ログを取得するために API に適用できるすべてのものは、この API (パラメーター、$filterなど) に<適用されます。ここで>指摘する点の 1 つは、この API はテナントの個々のサブスクリプションでログを取得 するのではなく 、テナント レベルで生成されたログのみを表示することです。

  • 要求パス/プロバイダー/Microsoft.Insights/eventtypes/management/values
  • 操作IdTenantActivityLogs_List
public static Azure.AsyncPageable<Azure.ResourceManager.Monitor.Models.EventDataInfo> GetTenantActivityLogsAsync (this Azure.ResourceManager.Resources.TenantResource tenantResource, string filter = default, string select = default, System.Threading.CancellationToken cancellationToken = default);
static member GetTenantActivityLogsAsync : Azure.ResourceManager.Resources.TenantResource * string * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Monitor.Models.EventDataInfo>
<Extension()>
Public Function GetTenantActivityLogsAsync (tenantResource As TenantResource, Optional filter As String = Nothing, Optional select As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of EventDataInfo)

パラメーター

tenantResource
TenantResource

TenantResourceメソッドが実行されるインスタンス。

filter
String

収集されるデータのセットを減らします。 <br>$filterは非常に制限されており、次のパターンのみを許可します。<br>- リソース グループのイベントを一覧表示する: $filter=eventTimestamp ge '<Start Time>' と eventTimestamp le '<End Time>' and eventChannels eq '管理, Operation' and resourceGroupName eq '<ResourceGroupName>'<br>- リソースのイベントを一覧表示する: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le '<End Time>' and eventChannels eq '管理, Operation' and resourceUri eq '<ResourceURI>'<br>- サブスクリプションのイベントを一覧表示する: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le '<End Time>' and eventChannels eq '管理, Operation'<br>- リソース プロバイダーのイベントを一覧表示する: $filter=eventTimestamp ge '<Start Time>' and eventTimestamp le '<End Time>' and eventChannels eq '管理, Operation' and resourceProvider eq '<ResourceProviderName>'<br>- 関連付け ID のイベントを一覧表示する: api-version=2014-04-01&$filter=eventTimestamp ge '2014-07-16T04:36:37.640789 8Z' と eventTimestamp le '2014-07-20T04:36:37.6407898Z' と eventChannels eq '管理, Operation' と correlationId eq '<CorrelationID>'<br>NOTE: 他の構文は使用できません。

select
String

指定されたプロパティのみを使用してイベントをフェッチするために使用されます。<br>$select 引数は、返されるプロパティ名のコンマ区切りのリストです。 指定できる値は、authorizationclaimscorrelationIddescriptioneventDataIdeventNameeventTimestamphttpRequestleveloperationIdoperationNamepropertiesresourceGroupName、resourceProviderNameresourceIdstatussubmissionTimestampsubStatussubscriptionId です。

cancellationToken
CancellationToken

使用する取り消しトークン。

戻り値

反復処理するために複数の EventDataInfo サービス要求を受け取る可能性がある の非同期コレクション。

適用対象