ApplicationInsights / Client / list_configuration_history
list_configuration_history#
- ApplicationInsights.Client.list_configuration_history(**kwargs)#
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.
See also: AWS API Documentation
Request Syntax
response = client.list_configuration_history( ResourceGroupName='string', StartTime=datetime(2015, 1, 1), EndTime=datetime(2015, 1, 1), EventStatus='INFO'|'WARN'|'ERROR', MaxResults=123, NextToken='string', AccountId='string' )
- Parameters:
ResourceGroupName (string) – Resource group to which the application belongs.
StartTime (datetime) – The start time of the event.
EndTime (datetime) – The end time of the event.
EventStatus (string) – The status of the configuration update event. Possible values include INFO, WARN, and ERROR.
MaxResults (integer) – The maximum number of results returned by
ListConfigurationHistory
in paginated output. When this parameter is used,ListConfigurationHistory
returns onlyMaxResults
in a single page along with aNextToken
response element. The remaining results of the initial request can be seen by sending anotherListConfigurationHistory
request with the returnedNextToken
value. If this parameter is not used, thenListConfigurationHistory
returns all results.NextToken (string) – The
NextToken
value returned from a previous paginatedListConfigurationHistory
request whereMaxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned theNextToken
value. This value isnull
when there are no more results to return.AccountId (string) – The AWS account ID for the resource group owner.
- Return type:
dict
- Returns:
Response Syntax
{ 'EventList': [ { 'ResourceGroupName': 'string', 'AccountId': 'string', 'MonitoredResourceARN': 'string', 'EventStatus': 'INFO'|'WARN'|'ERROR', 'EventResourceType': 'CLOUDWATCH_ALARM'|'CLOUDWATCH_LOG'|'CLOUDFORMATION'|'SSM_ASSOCIATION', 'EventTime': datetime(2015, 1, 1), 'EventDetail': 'string', 'EventResourceName': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
EventList (list) –
The list of configuration events and their corresponding details.
(dict) –
The event information.
ResourceGroupName (string) –
The name of the resource group of the application to which the configuration event belongs.
AccountId (string) –
The AWS account ID for the owner of the application to which the configuration event belongs.
MonitoredResourceARN (string) –
The resource monitored by Application Insights.
EventStatus (string) –
The status of the configuration update event. Possible values include INFO, WARN, and ERROR.
EventResourceType (string) –
The resource type that Application Insights attempted to configure, for example, CLOUDWATCH_ALARM.
EventTime (datetime) –
The timestamp of the event.
EventDetail (string) –
The details of the event in plain text.
EventResourceName (string) –
The name of the resource Application Insights attempted to configure.
NextToken (string) –
The
NextToken
value to include in a futureListConfigurationHistory
request. When the results of aListConfigurationHistory
request exceedMaxResults
, this value can be used to retrieve the next page of results. This value isnull
when there are no more results to return.
Exceptions
ApplicationInsights.Client.exceptions.ValidationException
ApplicationInsights.Client.exceptions.ResourceNotFoundException
ApplicationInsights.Client.exceptions.InternalServerException