Enabling Performance insights allows for greater depth in monitoring data.
For example, information about active sessions could help diagose a compromise or assist in the investigation
Impact
Without adequate monitoring, performance related issues may go unreported and potentially lead to compromise.
Recommended Actions
Follow the appropriate remediation steps below to resolve the issue.
Enable Performance Insights to detect potential problems
1
2
3
4
5
6
7
8
9
10
|
---
AWSTemplateFormatVersion: "2010-09-09"
Description: A sample template
AWSTemplateFormatVersion: 2010-09-09
Description: Good example
Resources:
Queue:
Type: AWS::RDS::DBInstance
Properties:
EnablePerformanceInsights: true
|
Enable Performance Insights to detect potential problems
1
2
3
4
|
resource "aws_rds_cluster_instance" "good_example" {
name = "bar"
performance_insights_enabled = true
}
|
Links