Skip to content

Commit

Permalink
default additional stats
Browse files Browse the repository at this point in the history
  • Loading branch information
ryantanjunming committed Jul 24, 2023
1 parent 95eb1eb commit 6aa0ed8
Showing 1 changed file with 38 additions and 1 deletion.
39 changes: 38 additions & 1 deletion modules/firehose/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,44 @@ variable "metric_statistics_configurations" {
metric_name = string
namespace = string
}))
default = []
default = [
{
additional_statistics = ["p99", "p95"],
metric_name = "VolumeTotalReadTime",
namespace = "AWS/EBS"
},
{
additional_statistics = ["p99", "p95"],
metric_name = "VolumeTotalWriteTime",
namespace = "AWS/EBS"
},
{
additional_statistics = ["p99", "p95"],
metric_name = "Latency",
namespace = "AWS/ELB"
},
{
additional_statistics = ["p99", "p95"],
metric_name = "Duration",
namespace = "AWS/ELB"
},
{
additional_statistics = ["p99", "p95"],
metric_name = "PostRuntimeExtensionsDuration",
namespace = "AWS/Lambda"
},
{
additional_statistics = ["p99", "p95"],
metric_name = "FirstByteLatency",
namespace = "AWS/S3"
},
{
additional_statistics = ["p99", "p95"],
metric_name = "TotalRequestLatency",
namespace = "AWS/S3"
}
# Add more configurations as needed
]
}

variable "enable_cloudwatch_metricstream" {
Expand Down

0 comments on commit 6aa0ed8

Please sign in to comment.