Learn R Programming

paws.management (version 0.1.9)

applicationinsights_list_configuration_history: Lists the INFO, WARN, and ERROR events for periodic configuration updates performed by Application Insights

Description

Lists the INFO, WARN, and ERROR events for periodic configuration updates performed by Application Insights. Examples of events represented are:

Usage

applicationinsights_list_configuration_history(ResourceGroupName,
  StartTime, EndTime, EventStatus, MaxResults, NextToken)

Arguments

ResourceGroupName

Resource group to which the application belongs.

StartTime

The start time of the event.

EndTime

The end time of the event.

EventStatus

The status of the configuration update event. Possible values include INFO, WARN, and ERROR.

MaxResults

The maximum number of results returned by ListConfigurationHistory in paginated output. When this parameter is used, ListConfigurationHistory returns only MaxResults in a single page along with a NextToken response element. The remaining results of the initial request can be seen by sending another ListConfigurationHistory request with the returned NextToken value. If this parameter is not used, then ListConfigurationHistory returns all results.

NextToken

The NextToken value returned from a previous paginated ListConfigurationHistory request where MaxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the NextToken value. This value is null when there are no more results to return.

Request syntax

svc$list_configuration_history(
  ResourceGroupName = "string",
  StartTime = as.POSIXct(
    "2015-01-01"
  ),
  EndTime = as.POSIXct(
    "2015-01-01"
  ),
  EventStatus = "INFO"|"WARN"|"ERROR",
  MaxResults = 123,
  NextToken = "string"
)

Details

  • INFO: creating a new alarm or updating an alarm threshold.

  • WARN: alarm not created due to insufficient data points used to predict thresholds.

  • ERROR: alarm not created due to permission errors or exceeding quotas.