FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

librato_alert

Provides a Librato Alert resource. This can be used to create and manage alerts on Librato.

Example Usage

# Create a new Librato alert
resource "librato_alert" "myalert" {
    name = "MyAlert"
    description = "A Test Alert"
    services = [ "${librato_service.myservice.id}" ]
    condition {
      type = "above"
      threshold = 10
      metric_name = "librato.cpu.percent.idle"
    }
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

Conditions (condition) support the following:

Attributes (attributes) support the following:


See the source of this document at Terraform.io