Skip to content

v0.0.19

Choose a tag to compare

@github-actions github-actions released this 23 Feb 15:00
· 8 commits to main since this release
90fe9c4

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