Description Usage Arguments Value Request syntax
View source: R/applicationinsights_operations.R
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.
1 2 | applicationinsights_list_configuration_history(ResourceGroupName,
StartTime, EndTime, EventStatus, MaxResults, NextToken)
|
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
|
NextToken |
The |
A list with the following syntax:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | list(
EventList = list(
list(
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"
)
|
1 2 3 4 5 6 7 8 9 10 11 12 | 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"
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.