Skip to content

Commit

Permalink
Merge pull request #93 from last9/add-latency_max-1
Browse files Browse the repository at this point in the history
Fix Latency max.
  • Loading branch information
imrankhan-b authored Sep 13, 2022
2 parents 0d19ff7 + c740fc8 commit 98d0b49
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions modules/aws/elb_cloudwatch.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ ingester aws_elb_cloudwatch module {
source cloudwatch "latency_max" {
query {
aggregator = "p99"
namespace = "AWS/ApplicationELB"
metric_name = "TargetResponseTime"
namespace = "AWS/ELB"
metric_name = "Latency"

dimensions = {
"LoadBalancerName" = "$input{LoadBalancerName}"
Expand Down Expand Up @@ -499,8 +499,8 @@ ingester aws_elb_internal_cloudwatch module {
source cloudwatch "latency_max" {
query {
aggregator = "p99"
namespace = "AWS/ApplicationELB"
metric_name = "TargetResponseTime"
namespace = "AWS/ELB"
metric_name = "Latency"

dimensions = {
"LoadBalancerName" = "$input{LoadBalancerName}"
Expand Down Expand Up @@ -656,8 +656,8 @@ ingester aws_elb_endpoint_cloudwatch module {
source cloudwatch "latency_max" {
query {
aggregator = "p99"
namespace = "AWS/ApplicationELB"
metric_name = "TargetResponseTime"
namespace = "AWS/ELB"
metric_name = "Latency"

dimensions = {
"LoadBalancerName" = "$input{LoadBalancerName}"
Expand Down Expand Up @@ -916,8 +916,8 @@ ingester aws_elb_internal_endpoint_cloudwatch module {
source cloudwatch "latency_max" {
query {
aggregator = "p99"
namespace = "AWS/ApplicationELB"
metric_name = "TargetResponseTime"
namespace = "AWS/ELB"
metric_name = "Latency"

dimensions = {
"LoadBalancerName" = "$input{LoadBalancerName}"
Expand Down

0 comments on commit 98d0b49

Please sign in to comment.