v0.0.19
This release has breaking changes in the CloudWatch query definition. The type of the query must be specified, it's either metrics or logs.
Before:
cloudwatch {
uid = "cloudwatch"
namespace = "AWS/ApplicationELB"
metric_name = "HTTPCode_Target_2XX_Count"
statistic = "Sum"
match_exact = true
}After:
cloudwatch {
metrics {
uid = "cloudwatch"
namespace = "AWS/ApplicationELB"
metric_name = "HTTPCode_Target_2XX_Count"
statistic = "Sum"
match_exact = true
}
}What's Changed
Full Changelog: v0.0.18...v0.0.19