--- title: Recording rules sort_rank: 6 --- A consistent naming scheme for [recording rules](/docs/prometheus/latest/configuration/recording_rules/) makes it easier to interpret the meaning of a rule at a glance. It also avoids mistakes by making incorrect or meaningless calculations stand out. This page documents proper naming conventions and aggregation for recording rules. ## Naming * Recording rules should be of the general form `level:metric:operations`. * `level` represents the aggregation level and labels of the rule output. * `metric` is the metric name and should be unchanged other than stripping `_total` off counters when using `rate()` or `irate()`. * `operations` is a list of operations that were applied to the metric, newest operation first. Keeping the metric name unchanged makes it easy to know what a metric is and easy to find in the codebase. To keep the operations clean, `_sum` is omitted if there are other operations, as `sum()`. Associative operations can be merged (for example `min_min` is the same as `min`). If there is no obvious operation to use, use `sum`. When taking a ratio by doing division, separate the metrics using `_per_` and call the operation `ratio`. ## Aggregation * When aggregating up ratios, aggregate up the numerator and denominator separately and then divide. * Do not take the average of a ratio or average of an average, as that is not statistically valid. * When aggregating up the `_count` and `_sum` of a Summary and dividing to calculate average observation size, treating it as a ratio would be unwieldy. Instead keep the metric name without the `_count` or `_sum` suffix and replace the `rate` in the operation with `mean`. This represents the average observation size over that time period. * Always specify a `without` clause with the labels you are aggregating away. This is to preserve all the other labels such as `job`, which will avoid conflicts and give you more useful metrics and alerts. ## Examples _Note the indentation style with outdented operators on their own line between two vectors. To make this style possible in Yaml, [block quotes with an indentation indicator](https://yaml.org/spec/1.2/spec.html#style/block/scalar) (e.g. `|2`) are used._ Aggregating up requests per second that has a `path` label: ``` - record: instance_path:requests:rate5m expr: rate(requests_total{job="myjob"}[5m]) - record: path:requests:rate5m expr: sum without (instance)(instance_path:requests:rate5m{job="myjob"}) ``` Calculating a request failure ratio and aggregating up to the job-level failure ratio: ``` - record: instance_path:request_failures:rate5m expr: rate(request_failures_total{job="myjob"}[5m]) - record: instance_path:request_failures_per_requests:ratio_rate5m expr: |2 instance_path:request_failures:rate5m{job="myjob"} / instance_path:requests:rate5m{job="myjob"} # Aggregate up numerator and denominator, then divide to get path-level ratio. - record: path:request_failures_per_requests:ratio_rate5m expr: |2 sum without (instance)(instance_path:request_failures:rate5m{job="myjob"}) / sum without (instance)(instance_path:requests:rate5m{job="myjob"}) # No labels left from instrumentation or distinguishing instances, # so we use 'job' as the level. - record: job:request_failures_per_requests:ratio_rate5m expr: |2 sum without (instance, path)(instance_path:request_failures:rate5m{job="myjob"}) / sum without (instance, path)(instance_path:requests:rate5m{job="myjob"}) ``` Calculating average latency over a time period from a Summary: ``` - record: instance_path:request_latency_seconds_count:rate5m expr: rate(request_latency_seconds_count{job="myjob"}[5m]) - record: instance_path:request_latency_seconds_sum:rate5m expr: rate(request_latency_seconds_sum{job="myjob"}[5m]) - record: instance_path:request_latency_seconds:mean5m expr: |2 instance_path:request_latency_seconds_sum:rate5m{job="myjob"} / instance_path:request_latency_seconds_count:rate5m{job="myjob"} # Aggregate up numerator and denominator, then divide. - record: path:request_latency_seconds:mean5m expr: |2 sum without (instance)(instance_path:request_latency_seconds_sum:rate5m{job="myjob"}) / sum without (instance)(instance_path:request_latency_seconds_count:rate5m{job="myjob"}) ``` Calculating the average query rate across instances and paths is done using the `avg()` function: ``` - record: job:request_latency_seconds_count:avg_rate5m expr: avg without (instance, path)(instance_path:request_latency_seconds_count:rate5m{job="myjob"}) ``` Notice that when aggregating that the labels in the `without` clause are removed from the level of the output metric name compared to the input metric names. When there is no aggregation, the levels always match. If this is not the case a mistake has likely been made in the rules.