Monitoring and alerting with Kapacitor now available on InfluxData InfluxDB Cloud

Navigate to:

Today we’ve made Kapacitor, the project for monitoring and alerting on time series data, available on our AWS backed InfluxData InfluxDB Cloud offering. Existing and new InfluxDB Cloud customers can now add a fully managed instance of Kapacitor starting at $200 per month.

Using Kapacitor’s API, users can create and enable TICKscripts on our cloud. Here’s an example that will send an alert to Slack if CPU utilization is > 95% for more than two minutes. It performs this check every 10 seconds.

```
stream
    |from()
        .measurement('cpu')
    |window()
        .period(2m)
        .every(10s)
    |alert()
        .crit(lambda: "value" > 95)
        // Only alert if all points in the window match the criteria.
        .all()
        .slack()
        .channel('#alerts')
```

Alerts can be configured based on moving averages, outliers, missing data (known as a dead man’s switch) and many other criteria. See the Kapacitor documentation for more examples and details on how it works.

What's next

  • Deploy on the Cloud: Get started with a FREE trial of InfluxData InfluxDB Cloud featuring fully-managed clusters, Kapacitor and Grafana.
  • Check out our videos: We have videos on a number of topics, including Kapacitor on the Cloud
  • Tell Your Story: Over 100 companies have shared their story on how InfluxDB is helping them succeed. Submit your testimonial and get a limited edition InfluxDB hoodie as a thank you.