Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mezmo-9a59581a-mintlify-926f893d.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Description

This processor renders any JSON object into a single string. You can only apply this processor to the entire event rather than fields within the event.

Use

This processor is used for cases when a subsequent processing step requires a string as input. This can include destinations such as Mezmo Log Analysis, or Processors such as the Encrypt processor. The output of this processor takes any structured input event and outputs it as a text string.

Example

BeforeAfter
{\n\n\n\n "host": "localhost", \n\n\n\n\n\n"port": 3030,\n\n\n\n"public": "../public/",\n\n\n\n"paginate": {\n\n\n\n"default": 10,\n\n\n\n"max": 50\n\n\n\n},\n\n\n\n"mongodb": "mongodb://localhost:27017/api"\n\n\n\n}{\n\n "host": "localhost",\n\n "port": 3030,\n\n "public": "../public/",\n\n "paginate": {\n\n "default": 10,\n\n "max": 50\n\n },\n\n "mongodb": "mongodb://localhost:27017/api"\n\n}