Skip to content
Merged

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
* {applies_to}`stack: preview 9.2` {applies_to}`serverless: preview` [`AVG_OVER_TIME`](../../functions-operators/time-series-aggregation-functions.md#esql-avg_over_time)
* {applies_to}`stack: preview 9.2` {applies_to}`serverless: preview` [`COUNT_OVER_TIME`](../../functions-operators/time-series-aggregation-functions.md#esql-count_over_time)
* {applies_to}`stack: preview 9.2` {applies_to}`serverless: preview` [`COUNT_DISTINCT_OVER_TIME`](../../functions-operators/time-series-aggregation-functions.md#esql-count_distinct_over_time)
* {applies_to}`stack: preview 9.2` {applies_to}`serverless: preview` [`DELTA`](../../functions-operators/time-series-aggregation-functions.md#esql-rate)
* {applies_to}`stack: preview 9.2` {applies_to}`serverless: preview` [`FIRST_OVER_TIME`](../../functions-operators/time-series-aggregation-functions.md#esql-first_over_time)
* {applies_to}`stack: preview 9.2` {applies_to}`serverless: preview` [`INCREASE`](../../functions-operators/time-series-aggregation-functions.md#esql-rate)
* {applies_to}`stack: preview 9.2` {applies_to}`serverless: preview` [`IDELTA`](../../functions-operators/time-series-aggregation-functions.md#esql-rate)
* {applies_to}`stack: preview 9.2` {applies_to}`serverless: preview` [`IRATE`](../../functions-operators/time-series-aggregation-functions.md#esql-rate)
* {applies_to}`stack: preview 9.2` {applies_to}`serverless: preview` [`LAST_OVER_TIME`](../../functions-operators/time-series-aggregation-functions.md#esql-last_over_time)
* {applies_to}`stack: preview 9.2` {applies_to}`serverless: preview` [`MAX_OVER_TIME`](../../functions-operators/time-series-aggregation-functions.md#esql-max_over_time)
* {applies_to}`stack: preview 9.2` {applies_to}`serverless: preview` [`MIN_OVER_TIME`](../../functions-operators/time-series-aggregation-functions.md#esql-min_over_time)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,21 @@ supports the following time series aggregation functions:
:::{include} ../_snippets/functions/layout/count_distinct_over_time.md
:::

:::{include} ../_snippets/functions/layout/delta.md
:::

:::{include} ../_snippets/functions/layout/first_over_time.md
:::

:::{include} ../_snippets/functions/layout/increase.md
:::

:::{include} ../_snippets/functions/layout/idelta.md
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same nitty alphabetization question 😄

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah good call, thought to group the i* functions together.. fixed.

:::

:::{include} ../_snippets/functions/layout/irate.md
:::

:::{include} ../_snippets/functions/layout/last_over_time.md
:::

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ public class Delta extends TimeSeriesAggregateFunction implements OptionalArgume
description = "Calculates the absolute change of a gauge field in a time window.",
appliesTo = { @FunctionAppliesTo(lifeCycle = FunctionAppliesToLifecycle.PREVIEW, version = "9.2.0") },
preview = true,
examples = { @Example(file = "k8s-timeseries-delta", tag = "delta") },
note = "Available with the [TS](/reference/query-languages/esql/commands/source-commands.md#esql-ts) command"
examples = { @Example(file = "k8s-timeseries-delta", tag = "delta") }
)
public Delta(Source source, @Param(name = "field", type = { "long", "integer", "double" }) Expression field) {
this(source, field, new UnresolvedAttribute(source, "@timestamp"));
Expand Down
Loading