import type { FunctionDefinition } from '../../definition_types'; /** * Calculates the absolute increase of a counter field in a time window. * * @example * TS k8s * | WHERE pod == "one" * | STATS increase_bytes_in = SUM(INCREASE(network.total_bytes_in)) BY cluster, time_bucket = TBUCKET(10minute) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=increase.d.ts.map