你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
MonitorExtensions.GetTenantActivityLogsAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取租户的活动日志。<br>适用于 API 以获取订阅的活动日志的所有内容都适用于此 API, (参数、$filter等) 。<此处>需要指出的一点是,此 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>' and 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.6407898Z 和 eventTimestamp le '2014-07-20T04:36:37.6407898Z' 和 eventChannels eq '管理员, Operation' and correlationId eq '<CorrelationID>'。<br>注意:不允许使用其他语法。
- select
- String
用于提取仅具有给定属性的事件。<br>$select 参数是要返回的属性名称的逗号分隔列表。 可能的值包括: authorization、 claims、 correlationId、 description、 eventDataId、 eventName、 eventTimestamp、 httpRequest、 level、 operationId、 operationName、 properties、 resourceGroupName、 resourceProviderName、 resourceId、 status、 submissionTimestamp、 subStatus、 subscriptionId。
- cancellationToken
- CancellationToken
要使用的取消标记。
返回
的异步集合 EventDataInfo ,可能需要循环访问多个服务请求。