List Configuration History
| applicationinsights_list_configuration_history | R Documentation |
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:
-
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.
Usage¶
applicationinsights_list_configuration_history(ResourceGroupName,
StartTime, EndTime, EventStatus, MaxResults, NextToken, AccountId)
Arguments¶
ResourceGroupNameResource group to which the application belongs.
StartTimeThe start time of the event.
EndTimeThe end time of the event.
EventStatusThe status of the configuration update event. Possible values include INFO, WARN, and ERROR.
MaxResultsThe maximum number of results returned by
list_configuration_historyin paginated output. When this parameter is used,list_configuration_historyreturns onlyMaxResultsin a single page along with aNextTokenresponse element. The remaining results of the initial request can be seen by sending anotherlist_configuration_historyrequest with the returnedNextTokenvalue. If this parameter is not used, thenlist_configuration_historyreturns all results.NextTokenThe
NextTokenvalue returned from a previous paginatedlist_configuration_historyrequest whereMaxResultswas used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned theNextTokenvalue. This value isnullwhen there are no more results to return.AccountIdThe AWS account ID for the resource group owner.
Value¶
A list with the following syntax:
list(
EventList = list(
list(
ResourceGroupName = "string",
AccountId = "string",
MonitoredResourceARN = "string",
EventStatus = "INFO"|"WARN"|"ERROR",
EventResourceType = "CLOUDWATCH_ALARM"|"CLOUDWATCH_LOG"|"CLOUDFORMATION"|"SSM_ASSOCIATION",
EventTime = as.POSIXct(
"2015-01-01"
),
EventDetail = "string",
EventResourceName = "string"
)
),
NextToken = "string"
)