Links

Alerts

Summary

Kubecost alerts allow teams to receive updates on real-time Kubernetes spend. They are configurable via the Kubecost UI or Helm values. This resource gives an overview of how to configure Kubecost email, Slack, and Microsoft Teams using Kubecost Helm chart values. Alerts are either created to monitor specific data sets and trends, or they must be toggled on or off. The following alert types are supported:
  1. 1.
    Allocation Budget: Sends an alert when spending crosses a defined threshold
  2. 2.
    [Beta] Allocation Efficiency: Detects when a Kubernetes tenant is operating below a target cost-efficiency threshold
  3. 3.
    Allocation Recurring Update: Sends an alert with cluster spending across all or a subset of kubernetes resources.
  4. 4.
    Allocation Spend Change: Sends an alert reporting unexpected spend increases relative to moving averages
  5. 5.
    Asset Budget: Sends an alert when spend for a particular set of assets crosses a defined threshold.
  6. 6.
    Cloud Report: Sends an alert with asset spend across all or a subset of cloud resources.
  7. 7.
    Monitor Cluster Health: Used to determine if the cluster's health score changes by a specific threshold. Can only be toggled on/off.
  8. 8.
    Monitor Kubecost Health: Used for production monitoring for the health of Kubecost itself. Can only be toggled on/off.
Have questions or issues? View our troubleshooting section below.

Configuring alerts in Helm

values.yaml is a source of truth. Alerts set through values.yaml will continually overwrite any manual alert settings set through the Kubecost UI.

Global alert parameters

The alert settings, under global.notifications.alertConfigs in cost-analyzer/values.yaml, accept four global fields:
  • frontendUrl optional, your cost analyzer front end URL used for linkbacks in alert bodies
  • globalSlackWebhookUrl optional, a global Slack webhook used for alerts, enabled by default if provided
  • globalMsTeamWebhookUrl optional, a global Microsoft Teams webhook used for alerts, enabled by default if provided
  • globalAlertEmails a global list of emails for alerts
Example Helm values.yaml:
notifications:
# Kubecost alerting configuration
alertConfigs:
frontendUrl: http://localhost:9090
globalSlackWebhookUrl: https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX
globalMsTeamsWebhookUrl: https://m365x682156.webhook.office.com
globalAlertEmails:
# Alerts generated by kubecost, about cluster data
alerts:
# list of individual alerts
# ...

Configuring each alert type

In addition to all global... fields, every alert allows optional individual ownerContact (a list of email addresses), slackWebhookUrl (if different from globalSlackWebhookUrl), and msTeamsWebhookUrl (if different from globalMsTeamsWebhookUrl) fields. Alerts will default to the global settings if these optional fields are not supplied.

Type: Allocation Budget

Define spend budgets and alert on budget overruns.
Required parameters:
  • type: budget
  • threshold: <amount> -- cost threshold in configured currency units
  • aggregation: <agg-parameter> -- configurable, accepts all aggregations supported by the Allocation API
  • filter: <value> -- configurable, accepts a single filter value (comma-separated values unsupported)
  • window: <N>d or <M>h -- configurable, (1 ≤ N ≤ 7, 1 ≤ M ≤ 24)
Example Helm values.yaml:
# Daily namespace budget alert on namespace `kubecost`
- type: budget
threshold: 50
window: daily # or 1d
aggregation: namespace
filter: kubecost
# 3d cluster budget alert on cluster `cluster-one`
- type: budget
threshold: 600
window: 3d
aggregation: cluster
filter: cluster-one

Type: Allocation Efficiency

This feature is currently in Beta.
Alert when Kubernetes tenants, e.g. namespaces or label sets, are running below defined cost-efficiency thresholds.
Required parameters:
  • type: efficiency
  • efficiencyThreshold: <threshold> -- efficiency threshold ranging from 0.0 to 1.0
  • aggregation: <agg-parameter> -- configurable, accepts all aggregations supported by the Allocation API
  • window: <N>d number of days for measuring efficiency
Optional parameters:
  • filter: <value> -- limit the aggregations that this alert will cover, accepts comma-separated values
  • spendThreshold represents a minimum spend threshold for alerting
The example below sends a Slack alert when any namespace spending is running below 40% cost efficiency and has spent more than $100 during the last day.
- type: efficiency
efficiencyThreshold: 0.4 # Alert if below this percentage cost efficiency
spendThreshold: 100 # optional, alert if tenant has spend more than $100 over this window
window: 1d # measure efficiency over last
aggregation: namespace
slackWebhookUrl: ‘https://hooks.slack.com/services/TE6GRBNET/BFFK0P848/jFWmsadgfjhiBJp30p’ # optional, overrides global Slack webhook

Type: Allocation Recurring Update

Sends a recurring alert with a summary report of cost and efficiency metrics.
Required parameters:
  • type: recurringUpdate
  • aggregation: <aggregation>
  • filter: '*'
  • window: <N>d
Valid Window Parameters:
  • <N>d where N in [1, 7) for every N days
  • 7d or weekly for 0:00:00 UTC every Monday
  • 30d or monthly for 0:00:00 UTC on the first day of the month.
Valid Aggregation Parameters:
  • cluster
  • container
  • controller
  • namespace
  • pod
  • service
  • deployment
  • daemonset
  • statefulset
  • job
  • label requires the following format: label:<label_name>
  • annotation requires the following format: annotation:<annotation_name>
Required parameters (by individual namespace):
  • type: recurringUpdate
  • aggregation: namespace
  • filter: <value> -- configurable, accepts a single namespace name (comma-separated values unsupported)
  • window: 7d
Example Helm values.yaml:
# Recurring weekly namespace update on all namespaces
- type: recurringUpdate
window: weekly # or 7d
aggregation: namespace
filter: '*'
# Recurring weekly namespace update on kubecost namespace
- type: recurringUpdate
window: weekly # or 7d
aggregation: namespace
filter: kubecost
ownerContact: # optional, overrides globalAlertEmails default
slackWebhookUrl: https://hooks.slack.com/services/<different-from-global> # optional, overrides globalSlackWebhookUrl default

Type: Allocation Spend change

Detect unexpected spend increases/decreases relative to historical moving averages.
Required parameters:
  • type: spendChange
  • relativeThreshold: <N> -- configurable, N ≥ -1
  • aggregation: <agg-value> -- configurable, accepts all aggregations supported by the Allocation API
  • window: <N>d or <M>h -- configurable, (1 ≤ N ≤ 7, 1 ≤ M ≤ 24)
  • baselineWindow: <N>d -- configurable, N ≥ 1
Optional parameters:
  • filter: <value> -- limit the aggregations that this alert will cover, accepts comma-separated values
Example Helm values.yaml:
# Daily spend change alert on the
- type: spendChange
relativeThreshold: 0.20 # change relative to baseline average cost. Must be greater than -1 (can be negative).
window: 1d # accepts ‘d’, ‘h’
baselineWindow: 30d # previous window, offset by window
aggregation: namespace
filter: kubecost, default # accepts csv

Type: Asset Budget

Define asset budgets and alert when cloud or Kubernetes assets overrun the threshold set.
Required parameters:
  • type: assetBudget
  • threshold: <amount> -- cost threshold in configured currency units
  • aggregation: <agg-parameter> -- configurable, accepts all aggregations supported by the Asset API
  • filter: <value>(,<value>,...) -- configurable, accepts any 1 or more filter values which are comma seperated values
  • window: <N>d or <M>h -- configurable, (1 ≤ N ≤ 7, 1 ≤ M ≤ 24)
Valid Aggregation Parameters:
  • category
  • cluster
  • service
  • type
  • provider
  • account
  • providerid
  • label requires the following format: label:<label_name>=<label_value>
Example Helm values.yaml:
# Daily namespace budget alert on type `Node,Loadbalancer`
- type: assetBudget
threshold: 50
window: daily # or 1d
aggregation: type
filter: Node,LoadBalancer
# 3d cluster budget alert on cluster with no filter set
- type: assetBudget
threshold: 100
window: 3d
aggregation: cluster
filter: ''

Type: Cloud Report

Sends a recurring alert with a cloud and/or Kubernetes assets summary report.
Required parameters:
  • type: cloudReport
  • aggregation: <aggregation>
  • filter: ''
  • window: <N>d
Valid Window Parameters:
  • <N>d where N in [1, 7) for every N days
  • 7d or weekly for 0:00:00 UTC every Monday
  • 30d or monthly for 0:00:00 UTC on the first day of the month.
Valid Aggregation Parameters:
  • category
  • cluster
  • service
  • type
  • provider
  • account
  • providerid
  • label requires the following format: label:<label_name>=<label_value>
Example Helm values.yaml:
# Recurring weekly cloud update on all cluster
- type: cloudReport
window: weekly # or 7d
aggregation: cluster
filter: ''
# Recurring weekly cloud update on only cluster-one
- type: cloudReport
window: weekly # or 7d
aggregation: cluster
filter: cluster-one
ownerContact: # optional, overrides globalAlertEmails default
slackWebhookUrl: https://hooks.slack.com/services/<different-from-global> # optional, overrides globalSlackWebhookUrl default

Type: Monitor Cluster Health

Cluster health alerts occur when the cluster health score changes by a specific threshold. The health score is calculated based on the following criteria:
  • Low Cluster Memory
  • Low Cluster CPU
  • Too Many Pods
  • Crash Looping Pods
  • Out of Memory Pods
  • Failed Jobs
Example Helm values.yaml:
# Health Score Alert
- type: health # Alerts when health score changes by a threshold
window: 10m
threshold: 5 # Send Alert if health scores changes by 5 or more
ownerContact: # optional, overrides globalAlertEmails default
slackWebhookUrl: https://hooks.slack.com/services/<different-from-global> # optional, overrides globalSlackWebhookUrl default

Type: Monitor Kubecost Health

Enabling diagnostic alerts in Kubecost occur when an event impacts product uptime. This feature can be enabled in seconds from a values file. The following events are grouped into distinct categories that each result in a separate alert notification:
  • Prometheus is unreachable
  • Kubecost Metrics Availability:
    • Kubecost exported metrics missing over last 5 minutes
    • cAdvisor exported metrics missing over last 5 minutes
    • cAdvisor exported metrics missing expected labels in the last 5 minutes
    • Kubestate Metrics (KSM) exported metrics missing over last 5 minutes
    • Kubestate Metrics (KSM) unexpected version
    • Node Exporter metrics are missing over last 5 minutes.
    • Scrape Interval prometheus self-scraped metrics missing over last 5 minutes
    • CPU Throttling detected on cost-model in the last 10 minutes
  • Clusters Added/Removed (Enterprise Multicluster Support Only)
Required parameters:
  • type: diagnostic
  • window: <N>m -- configurable, N > 0
Optional parameters:
  • diagnostics -- object containing specific diagnostic checks to run (default is true for all). See configuration example below for options:
Example Helm values.yaml:
# Kubecost Health Diagnostic
- type: diagnostic
window: 10m
ownerContact: # optional, overrides globalAlertEmails default
slackWebhookUrl: https://hooks.slack.com/services/<different-from-global> # optional, overrides globalSlackWebhookUrl default
diagnostics:
prometheusUp: true
cAdvisor: true
ksm: true
kubecost: true
nodeExporter: true
scrapeInterval: true
cpuThrottling: true
clusterJoinLeave: true

Configuring alerts in the Kubecost UI

Cluster and Kubecost Health Alerts

Cluster Health Alerts and Kubecost Health Alerts work differently from other alert types. While other alerts monitor cost data for cost or efficiency anomalies, these two monitor the health of Kubecost itself, as well as the health of the cluster running Kubecost. For this reason, multiple of these alert types cannot be created. In the UI, switches for these alert types can be toggled either on or off, managing a single instance of each, and allowing the settings of these single instances to be adjusted.
Cluster and Kubecost Health Alerts
There is no validation around Cluster Health Alerts. If a Health Alert configuration is invalid, it will appear to save, but will not actually take effect. Please check carefully that the alert has a Window and Threshold properly specified.

Global recipients

Global recipients specify a default fallback recipient for each type of message. If an alert does not define any email recipients, its messages will be sent to any emails specified in the Global Recipients email list. Likewise, if an alert does not define a webhook, its messages will be sent to the global webhook, if one is present. Alerts that do define recipients will ignore the global setting for recipients of that type.

Budget, efficiency, spend change, and recurring update alerts

The remaining Alert types share some commonality: they all target a set of Cost Allocation data with window, aggregation and filter parameters, and trigger based on the target data. The table results can be filtered using the "Filter alerts" input at the top-right of the table. This input can be used to filter based on alert type, aggregation, window, and/or filter.
The + Create Alert button opens a window where you can insert details about a new alert.
Create Alert window
Alerts can also be edited, removed, and tested from the table. Editing opens a dialog similar to the alert creation dialog, for editing the chosen alert.
When creating an alert, you can have these alerts sent through email, Slack, or Microsoft Teams. You can customize the subject field for an email, and attach multiple recipients. Alerts sent via email will contain a PDF of your report which shows the Kubecost UI for your Allocation/Asset page(s). This can be helpful for distributing visual information to those without immediate access to Kubecost.

Testing alerts

The Test arrow icons, as well as a separate Test Alert button in the Edit Alert window, can be used to issue a "test" alert. This can be useful to ensure that alerting infrastructure is working correctly and that an alert is properly configured. Issuing a test from the alert edit modal tests the alert with any modifications that have not yet been saved.

Alerts scheduler

All times in UTC. Alert send times are determined by parsing the supplied window parameter. Alert diagnostics with next and last scheduled run times are available via <your-kubecost-url>/model/alerts/status.
Supported: weekly and daily special cases, <N>d, <M>h (1 ≤ N ≤ 7, 1 ≤ M ≤ 24) Currently Unsupported: time zone adjustments, windows greater than 7d, windows less than 1h

Scheduler behavior

An <N>d alert sends at 00:00 UTC N day(s) from now, i.e., N days from now rounded down to midnight.
For example, a 5d alert scheduled on Monday will send on Saturday at 00:00, and subsequently the next Thursday at 00:00
An <N>h alert sends at the earliest time of day after now that is a multiple of N.
For example, a 6h alert scheduled at any time between 12 pm and 6 pm will send next at 6 pm and subsequently at 12 am the next day.
If 24 is not divisible by the hourly window, schedule at next multiple of <N>h after now, starting from the current day at 00:00.
For example, a 7h alert scheduled at 22:00 checks 00:00, 7:00, 14:00, and 21:00, before arriving at the next send time of 4:00 tomorrow.

Troubleshooting

Review these steps to verify alerts are being passed to the Kubecost application correctly.
  • Check /model/alerts/configs to ensure the alerts system has been configured properly.
  • Check /model/alerts/status to ensure alerts have been scheduled correctly.
    • The status endpoint returns all of the running alerts including schedule metadata:
      • scheduledOn: The date and time (UTC) that the alert was scheduled.
      • lastRun: The date and time (UTC) that the alert last ran checks (will be set to 0001-01-01T00:00:00Z if the alert has never run).
      • nextRun: The date and time (UTC) that the alert will next run checks.
      • lastError: If running the alert checks fails for unexpected reasons, this field will contain the error message.
If using Helm:
  • Run kubectl get configmap alert-configs -n kubecost -o json to view alerts configmap.
  • Ensure that the Helm values are successfully read into the configmap under alerts.json under the data field.
  • Example:
{
"apiVersion": "v1",
"data": {
"alerts.json": "{\"globalAlertEmails\":[\"[email protected]\",\"[email protected]\"],\"frontendUrl\":\"http://localhost:3000\",\"globalSlackWebhookUrl\":\"\",\"alerts\":[{\"type\":\"budget\",\"threshold\":50,\"window\":\"1d\",\"aggregation\":\"namespace\",\"filter\":\"kubecost\"},{\"type\":\"spendChange\",\"relativeThreshold\":0.2,\"window\":\"1d\",\"baselineWindow\":\"30d\",\"aggregation\":\"namespace\",\"filter\":\"kubecost, default\"},{\"type\":\"budget\",\"threshold\":202.1,\"window\":\"1d\",\"aggregation\":\"cluster\",\"filter\":\"cluster-one\"},{\"type\":\"recurringUpdate\",\"window\":\"7d\",\"aggregation\":\"namespace\",\"filter\":\"*\"}]}\n"
},
"kind": "ConfigMap",
"metadata": {
"creationTimestamp": "2022-01-05T23:43:27Z",
"labels": {
"app": "cost-analyzer",
"app.kubernetes.io/instance": "kubecost-stage",
"app.kubernetes.io/managed-by": "Helm",
...
},
"name": "alert-configs",
"namespace": "kubecost",
...
}
}
  • Ensure that the JSION string is successfully mapped to the appropriate configs
Confirm that Kubecost product has received configuration data:
  • Go to <your-kubecost-url>/alerts.html in the Kubecost UI to view configured alert settings as well as any of the alerts configured from Helm.
    • Note that alerts setup via the UI will be overwritten by Helm values.yaml if the pod restarts.
Additionally, confirm that the alerts scheduler has properly parsed and scheduled a next run for each alert by visiting <your-kubecost-url>/model/alerts/status to view individual alert parameters as well as next and last scheduled run times for individual alerts.
Confirm that nextRun has been updated from "0001-01-01T00:00:00Z"
If nextRun fails to update, or alerts are not sending at the nextRun time, check pod logs by running kubectl logs $(kubectl get pods -n kubecost | awk '{print $1}' | grep "^kubecost-cost-analyzer.\{16\}") -n kubecost -c cost-model > kubecost-logs.txt
Common causes of misconfiguration include the following:
  • Unsupported csv filters: spendChange alerts accept filter as comma-separated values; other alert types do not.
  • Unsupported alert type: all alert type names are in camelCase. Check spelling and capitalization for all alert parameters.
  • Unsupported aggregation parameters: see the Allocation API doc for details.