Created
June 16, 2020 04:31
-
-
Save mumoshu/e42e8a319aab6885916270cd3c4d0c35 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
metric { | |
provider = "cloudwatch" | |
max = 10 | |
query = <<EOS | |
[ | |
{ | |
"Id": "e1", | |
"Expression": "m1", | |
"Label": "ErrorCount" | |
}, | |
{ | |
"Id": "m1", | |
"MetricStat": { | |
"Metric": { | |
"MetricName": "HTTPCode_Target_5XX_Count", | |
"Dimensions": [ | |
{ | |
"Name": "TargetGroup", | |
"Value": "${.TargetGroupARN}" | |
}, | |
{ | |
"Name": "LoadBalancer", | |
"Value": "${.LoadBalancerARN}" | |
} | |
] | |
}, | |
"Period": 300, | |
"Stat": "Sum", | |
"Unit": "Count" | |
}, | |
"ReturnData": false | |
} | |
] | |
EOS | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment