你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

MonitorExtensions.GetActivityLogs 方法

定义

提供活动日志中的记录列表。

  • Request Path/subscriptions/{subscriptionId}/providers/Microsoft.Insights/eventtypes/management/values
  • 操作IdActivityLogs_List
public static Azure.Pageable<Azure.ResourceManager.Monitor.Models.EventDataInfo> GetActivityLogs (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, string filter, string select = default, System.Threading.CancellationToken cancellationToken = default);
static member GetActivityLogs : Azure.ResourceManager.Resources.SubscriptionResource * string * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Monitor.Models.EventDataInfo>
<Extension()>
Public Function GetActivityLogs (subscriptionResource As SubscriptionResource, filter As String, Optional select As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of EventDataInfo)

参数

subscriptionResource
SubscriptionResource

方法 SubscriptionResource 将对其执行的实例。

filter
String

减少收集的数据集。<br>此参数是必需的,并且还需要至少开始日期/时间。<br>$filter 参数非常受限,仅允许以下模式。<br>- 列出资源组的事件:$filter=eventTimestamp ge '2014-07-16T04:36:37.6407898Z' and eventTimestamp le '2014-07-20T04:36:37.6407898Z' and resourceGroupName eq 'resourceGroupName'.<br>- 列出资源的事件:$filter=eventTimestamp ge '2014-07-16T04:36:37.6407898Z' 和 eventTimestamp le '2014-07-20T04:36:37.6407898Z' 和 resourceUri eq 'resourceURI'。<br>- 列出时间范围内的订阅事件:$filter=eventTimestamp ge '2014-07-16T04:36:37.6407898Z' 和 eventTimestamp le '2014-07-20T04:36:37.6407898Z'。<br>- 列出资源提供程序的事件:$filter=eventTimestamp ge '2014-07-16T04:36:37.6407898Z' and eventTimestamp le '2014-07-20T04:36:37.6407898Z' and resourceProvider eq 'resourceProviderName'.<br>- 列出相关 ID 的事件:$filter=eventTimestamp ge '2014-07-16T04:36:37.6407898Z' 和 eventTimestamp le '2014-07-20T04:36:37.6407898Z' 和 correlationId eq 'correlationID'。<br><br>注意:不允许使用其他语法。

select
String

用于提取仅具有给定属性的事件。<br>$select 参数是要返回的属性名称的逗号分隔列表。 可能的值包括: authorizationclaimscorrelationIddescriptioneventDataIdeventNameeventTimestamphttpRequestleveloperationIdoperationNamepropertiesresourceGroupNameresourceProviderNameresourceIdstatussubmissionTimestampsubStatussubscriptionId

cancellationToken
CancellationToken

要使用的取消标记。

返回

可能需要多个服务请求来循环访问的 的 EventDataInfo 集合。

例外

filter 为 null。

适用于