github.com/Jeffail/benthos/v3@v3.65.0/website/docs/components/processors/msgpack.md (about)

     1  ---
     2  title: msgpack
     3  type: processor
     4  status: experimental
     5  categories: ["Parsing"]
     6  ---
     7  
     8  <!--
     9       THIS FILE IS AUTOGENERATED!
    10  
    11       To make changes please edit the contents of:
    12       lib/processor/msgpack.go
    13  -->
    14  
    15  import Tabs from '@theme/Tabs';
    16  import TabItem from '@theme/TabItem';
    17  
    18  :::caution EXPERIMENTAL
    19  This component is experimental and therefore subject to change or removal outside of major version releases.
    20  :::
    21  Converts messages to or from the [MessagePack](https://msgpack.org/) format.
    22  
    23  Introduced in version 3.59.0.
    24  
    25  ```yaml
    26  # Config fields, showing default values
    27  label: ""
    28  msgpack:
    29    operator: ""
    30  ```
    31  
    32  ## Fields
    33  
    34  ### `operator`
    35  
    36  The operation to perform on messages.
    37  
    38  
    39  Type: `string`  
    40  
    41  | Option | Summary |
    42  |---|---|
    43  | `from_json` | Convert JSON messages to MessagePack format |
    44  | `to_json` | Convert MessagePack messages to JSON format |
    45  
    46  
    47