import type { FunctionDefinition } from '../../definition_types'; /** * Groups text messages into categories of similarly formatted text values. * * @example * FROM sample_data * | STATS count=COUNT() BY category=CATEGORIZE(message) * * @example * FROM sample_data * | STATS count = COUNT(*) BY category = CATEGORIZE(message), time_bucket = BUCKET(@timestamp, 1 HOUR) * | SORT time_bucket DESC, count DESC, category * * @example * FROM sample_data * | STATS sample_message = SAMPLE(message, 1) BY category = CATEGORIZE(message) * | SORT category */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=categorize.d.ts.map