content/flux/v0/stdlib/internal/promql/extrapolatedrate.md
promql.extrapolatedRate() is a helper function that calculates extrapolated rates over
counters and is used to implement PromQL's
rate(),
delta(),
and increase() functions.
Important: The internal/promql package is not meant for external use.
(
<-tables: stream[{A with _value: float, _time: time, _stop: time, _start: time}],
?isCounter: bool,
?isRate: bool,
) => stream[{B with _value: float}]
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
Input data. Default is piped-forward data (<-).
Data represents a counter.
Data represents a rate.