Create an index threshold rule
editCreate an index threshold rule
editThe index threshold rule type runs an Elasticsearch query. It aggregates field values from documents, compares them to threshold values, and schedules actions to run when the thresholds are met.
In Stack Management > Rules, click Create rule, fill in the name and optional tags, then select Index threshold.
Define the conditions
editWhen you create an index threshold rule, you must define the conditions for the rule to detect. For example:
- Specify the indices to query and a time field that will be used for the time window.
-
In the
WHEN
clause, specify how to calculate the value that is compared to the threshold. The value is calculated by aggregating a numeric field in a time window. The aggregation options are: count, average, sum, min, and max. When using count the document count is used and an aggregation field is not necessary. -
In the
OVER
orGROUPED OVER
clause, specify whether the aggregation is applied over all documents or split into groups using a grouping field. If grouping is used, an alert will be created for each group when it exceeds the threshold. To limit the number of alerts on high cardinality fields, you must specify the number of groups to check against the threshold. Only the top groups are checked. -
Choose a threshold value and a comparison operator (
is above
,is above or equals
,is below
,is below or equals
, oris between
). The result of the aggregation is compared to this threshold. -
In the
FOR THE LAST
clause, specify a time window. It determines how far back to search for documents and uses the time field set in the index clause. - Optionally add a KQL expression to further refine the conditions that the rule detects.
- Set the check interval, which defines how often to evaluate the rule conditions. Generally this value should be set to a value that is smaller than the time window, to avoid gaps in detection.
-
In the advanced options, you can change the number of consecutive runs that must meet the rule conditions before an alert occurs.
The default value is
1
.
If data is available and all clauses have been defined, a preview chart will render the threshold value and display a line chart showing the value for the last 30 intervals. This can provide an indication of recent values and their proximity to the threshold, and help you tune the clauses.
Add actions
editYou can optionally send notifications when the rule conditions are met and when they are no longer met. In particular, this rule type supports:
- alert summaries
- actions that run when the threshold is met
- recovery actions that run when the rule conditions are no longer met
For each action, you must choose a connector, which provides connection information for a Kibana service or third party integration. For more information about all the supported connectors, go to Connectors.
After you select a connector, you must set the action frequency. You can choose to create a summary of alerts on each check interval or on a custom interval. For example, summarize the new, ongoing, and recovered alerts at a custom interval:
Alternatively, you can set the action frequency such that actions run for each alert. Choose how often the action runs (at each check interval, only when the alert status changes, or at a custom action interval). You must also choose an action group, which indicates whether the action runs when the threshold is met or when the alert is recovered. Each connector supports a specific set of actions for each action group. For example:
You can further refine the conditions under which actions run by specifying that actions only run when they match a KQL query or when an alert occurs within a specific time frame.
Add action variables
editThe following action variables are specific to the index threshold rule. You can also specify variables common to all rules.
-
context.conditions
-
A description of the threshold condition. Example:
count greater than 4
-
context.date
-
The date, in ISO format, that the rule met the threshold condition. Example:
2020-01-01T00:00:00.000Z
. -
context.group
-
The name of the action group associated with the threshold condition. Example:
threshold met
. -
context.message
-
A preconstructed message for the rule. Example:
rule 'kibana sites - high egress' is active for group 'threshold met':
- Value: 42
- Conditions Met: count greater than 4 over 5m
- Timestamp: 2020-01-01T00:00:00.000Z
-
context.title
-
A preconstructed title for the rule. Example:
rule kibana sites - high egress met threshold
. -
context.value
- The value for the rule that met the threshold condition.
Example
editIn this example, you will use the Kibana sample weblog data set to set up and tune the conditions on an index threshold rule. For this example, you want to detect when any of the top four sites serve more than 420,000 bytes over a 24 hour period.
- Open the main menu, then click Stack Management > Rules.
-
Create a new rule.
-
Provide a rule name and select the Index threshold rule type.
-
Select an index. Click Index, and set Indices to query to
kibana_sample_data_logs
. Set the Time field to@timestamp
. -
To detect the number of bytes served during the time window, click When and select
sum
as the aggregation, andbytes
as the field to aggregate. -
To detect the four sites that have the most traffic, click Over and select
top
, enter4
, and selecthost.keyword
as the field. -
To trigger the rule when any of the top four sites exceeds 420,000 bytes over a 24 hour period, select
is above
and enter420000
. Then click For the last, enter24
, and selecthours
. -
Schedule the rule to check every four hours.
The preview chart will render showing the 24 hour sum of bytes at 4 hours intervals for the past 120 hours (the last 30 intervals).
- Change the time window and observe the effect it has on the chart. Compare a 24 window to a 12 hour window. Notice the variability in the sum of bytes, due to different traffic levels during the day compared to at night. This variability would result in noisy rules, so the 24 hour window is better. The preview chart can help you find the right values for your rule.
-
Define the actions for your rule.
You can add one or more actions to your rule to generate notifications when its conditions are met and when they are no longer met. For each action, you must select a connector, set the action frequency, and compose the notification details. For example, add an action that uses a server log connector to write an entry to the Kibana server log:
The unique action variables that you can use in the notification are listed in Add action variables. For more information, refer to Actions and Connectors.
- Save the rule.
-
-
Find the rule and view its details in Stack Management > Rules. For example, you can see the status of the rule and its alerts:
- Delete or disable this example rule when it’s no longer useful. In the detailed rule view, select Delete rule from the actions menu.