Send alert email

Send an alert email using a third party service, such as SendGrid, Amazon Simple Email Service (SES), Mailjet, or Mailgun. To send an alert email, complete the following steps:

  1. Create a check to identify the data to monitor and the status to alert on.
  2. Set up your preferred email service (sign up, retrieve API credentials, and send test email):
  3. Create an alert email task to call your email service and send an alert email.

In the procedure below, we use the Task page in the InfluxDB UI (user interface) to create a task. Explore other ways to create a task.

Create an alert email task

  1. In the InfluxDB UI, select Tasks in the navigation menu on the left.

    Tasks

    Tasks

  2. Click Create Task, and then select New Task.

  3. In the Name field, enter a descriptive name, for example, Send alert email, and then enter how often to run the task in the Every field, for example, 10m. For more detail, such as using cron syntax or including an offset, see Task configuration options.

  4. In the right panel, enter the following detail in your task script (see examples below):

    • Import the Flux HTTP package.
    • (Optional) Store your API key as a secret for reuse. First, add your API key as a secret, and then import the Flux InfluxDB Secrets package.
    • Query the statuses measurement in the _monitoring bucket to retrieve all statuses generated by your check.
    • Set the time range to monitor; use the same interval that the task is scheduled to run. For example, range (start: -task.every).
    • Set the _level to alert on, for example, crit, warn, info, or ok.
    • Use the map() function to evaluate the criteria to send an alert using http.post().
    • Specify your email service url (endpoint), include applicable request headers, and verify your request data format follows the format specified for your email service.

Examples

SendGrid AWS SES Mailjet Mailgun

The example below uses the SendGrid API to send an alert email when more than 3 critical statuses occur since the previous task run.

  1. import "http"
  2. // Import the Secrets package if you store your API key as a secret.
  3. // For detail on how to do this, see Step 4 above.
  4. import "influxdata/influxdb/secrets"
  5. // Retrieve the secret if applicable. Otherwise, skip this line
  6. // and add the API key as the Bearer token in the Authorization header.
  7. SENDGRID_APIKEY = secrets.get(key: "SENDGRID_APIKEY")
  8. numberOfCrits = from(bucket: "_monitoring")
  9. |> range(start: -task.every)
  10. |> filter(fn: (r) => r.measurement == "statuses" and r.level == "crit")
  11. |> count()
  12. numberOfCrits
  13. |> map(fn: (r) => (if r._value > 3 then {
  14. r with _value: http.post(
  15. url: "https://api.sendgrid.com/v3/mail/send",
  16. headers: {"Content-Type": "application/json", Authorization: "Bearer ${SENDGRID_APIKEY}"},
  17. data: bytes(v: "{
  18. \"personalizations\": [{
  19. \"to\": [{
  20. \"email\": \”jane.doe@example.com\"}],
  21. \"subject\": \”InfluxData critical alert\"
  22. }],
  23. \"from\": {\"email\": \"john.doe@example.com\"},
  24. \"content\": [{
  25. \"type\": \"text/plain\",
  26. \"value\": \”Example alert text\"
  27. }]
  28. }\""))} else {r with _value: 0}))

The example below uses the AWS SES API v2 to send an alert email when more than 3 critical statuses occur since the last task run.

Your AWS SES request, including the url (endpoint), authentication, and the structure of the request may vary. For more information, see Amazon SES API requests and Authenticating requests to the Amazon SES API. We recommend signing your AWS API requests using the Signature Version 4 signing process.

  1. import "http"
  2. // Import the Secrets package if you store your API credentials as secrets.
  3. // For detail on how to do this, see Step 4 above.
  4. import "influxdata/influxdb/secrets"
  5. // Retrieve the secrets if applicable. Otherwise, skip this line
  6. // and add the API key as the Bearer token in the Authorization header.
  7. AWS_AUTH_ALGORITHM = secrets.get(key: "AWS_AUTH_ALGORITHM")
  8. AWS_CREDENTIAL = secrets.get(key: "AWS_CREDENTIAL")
  9. AWS_SIGNED_HEADERS = secrets.get(key: "AWS_SIGNED_HEADERS")
  10. AWS_CALCULATED_SIGNATURE = secrets.get(key: "AWS_CALCULATED_SIGNATURE")
  11. numberOfCrits = from(bucket: "_monitoring")
  12. |> range(start: -task.every)
  13. |> filter(fn: (r) => (r.measurement == "statuses" and r._level == "crit")
  14. |> count()
  15. numberOfCrits
  16. |> map(fn: (r) => (if r._value > 3 then {
  17. r with _value: http.post(
  18. url: "https://email.your-aws-region.amazonaws.com/sendemail/v2/email/outbound-emails",
  19. headers: {"Content-Type": "application/json", Authorization: "Bearer ${AWS_AUTH_ALGORITHM}${AWS_CREDENTIAL}${AWS_SIGNED_HEADERS}${AWS_CALCULATED_SIGNATURE}"},
  20. data: bytes(v: "{
  21. \"personalizations\": [{
  22. \"to\": [{
  23. \"email\": \”jane.doe@example.com\"}],
  24. \"subject\": \”InfluxData critical alert\"
  25. }],
  26. \"from\": {\"email\": \"john.doe@example.com\"},
  27. \"content\": [{
  28. \"type\": \"text/plain\",
  29. \"value\": \”Example alert text\"
  30. }]
  31. }\""))} else {r with _value: 0}))

For details on the request syntax, see SendEmail API v2 reference.

The example below uses the Mailjet Send API to send an alert email when more than 3 critical statuses occur since the last task run.

To view your Mailjet API credentials, sign in to Mailjet and open the API Key Management page.

  1. import "http"
  2. // Import the Secrets package if you store your API keys as secrets.
  3. // For detail on how to do this, see Step 4 above.
  4. import "influxdata/influxdb/secrets"
  5. // Retrieve the secrets if applicable. Otherwise, skip this line
  6. // and add the API keys as Basic credentials in the Authorization header.
  7. MAILJET_APIKEY = secrets.get(key: "MAILJET_APIKEY")
  8. MAILJET_SECRET_APIKEY = secrets.get(key: "MAILJET_SECRET_APIKEY")
  9. numberOfCrits = from(bucket: "_monitoring")
  10. |> range(start: -task.every)
  11. |> filter(fn: (r) => (r.measurement == "statuses" and "r.level" == "crit")
  12. |> count()
  13. numberOfCrits
  14. |> map(fn: (r) => (if r._value > 3 then {
  15. r with _value: http.post(
  16. url: "https://api.mailjet.com/v3.1/send",
  17. headers: {"Content-type": "application/json", Authorization: "Basic ${MAILJET_APIKEY}:${MAILJET_SECRET_APIKEY}"},
  18. data: bytes(v: "{
  19. \"Messages\": [{
  20. \"From\": {\"Email\": \”jane.doe@example.com\"},
  21. \"To\": [{\"Email\": \"john.doe@example.com\"]},
  22. \"Subject\": \”InfluxData critical alert\",
  23. \"TextPart\": \”Example alert text\"
  24. \"HTMLPart\": `"<h3>Hello, to review critical alerts, review your <a href=\"https://www.example-dashboard.com/\">Critical Alert Dashboard</a></h3>}]}'
  25. }\""))} else {r with _value: 0}))

The example below uses the Mailgun API to send an alert email when more than 3 critical statuses occur since the last task run.

To view your Mailgun API keys, sign in to Mailjet and open Account Security - API security. Mailgun requires that a domain be specified via Mailgun. A domain is automatically created for you when you first set up your account. You must include this domain in your url endpoint (for example, https://api.mailgun.net/v3/YOUR_DOMAIN or https://api.eu.mailgun.net/v3/YOUR_DOMAIN. If you’re using a free version of Mailgun, you can set up a maximum of five authorized recipients (to receive email alerts) for your domain. To view your Mailgun domains, sign in to Mailgun and view the Domains page.

  1. import "http"
  2. // Import the Secrets package if you store your API key as a secret.
  3. // For detail on how to do this, see Step 4 above.
  4. import "influxdata/influxdb/secrets"
  5. // Retrieve the secret if applicable. Otherwise, skip this line
  6. // and add the API key as the Bearer token in the Authorization header.
  7. MAILGUN_APIKEY = secrets.get(key: "MAILGUN_APIKEY")
  8. numberOfCrits = from(bucket: "_monitoring")
  9. |> range(start: -task.every)
  10. |> filter(fn: (r) => (r["_measurement"] == "statuses"))
  11. |> filter(fn: (r) => (r["_level"] == "crit"))
  12. |> count()
  13. numberOfCrits
  14. |> map(fn: (r) =>
  15. (if r._value > 1 then {r with _value: http.post(
  16. url: "https://api.mailgun.net/v3/YOUR_DOMAIN/messages",
  17. headers: {"Content-type": "application/json", Authorization: "Basic api:${MAILGUN_APIKEY}"},
  18. data: bytes(v: "{
  19. \"from\": \"Username <mailgun@YOUR_DOMAIN_NAME>\",
  20. \"to\"=\"YOU@YOUR_DOMAIN_NAME\",
  21. \"to\"=\"email@example.com\",
  22. \"subject\"=\"Critical InfluxData alert\",
  23. \"text\"=\"You have critical alerts to review\"
  24. }\""))} else {r with _value: 0}))

Related articles

alert email notifications check