import type { FunctionDefinition } from '../../definition_types'; /** * Calculates the idelta of a gauge. idelta is the absolute change between the last two data points (it ignores all but the last two data points in each time period). This function is very similar to delta, but is more responsive to recent changes. * * @example * TS k8s * | STATS events = SUM(IDELTA(events_received)) by pod, time_bucket = TBUCKET(10minute) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=idelta.d.ts.map