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

     1  ---
     2  title: rate_limit
     3  type: processor
     4  status: stable
     5  categories: ["Utility"]
     6  ---
     7  
     8  <!--
     9       THIS FILE IS AUTOGENERATED!
    10  
    11       To make changes please edit the contents of:
    12       lib/processor/rate_limit.go
    13  -->
    14  
    15  import Tabs from '@theme/Tabs';
    16  import TabItem from '@theme/TabItem';
    17  
    18  
    19  Throttles the throughput of a pipeline according to a specified
    20  [`rate_limit`](/docs/components/rate_limits/about) resource. Rate limits are
    21  shared across components and therefore apply globally to all processing
    22  pipelines.
    23  
    24  ```yaml
    25  # Config fields, showing default values
    26  label: ""
    27  rate_limit:
    28    resource: ""
    29  ```
    30  
    31  ## Fields
    32  
    33  ### `resource`
    34  
    35  The target [`rate_limit` resource](/docs/components/rate_limits/about).
    36  
    37  
    38  Type: `string`  
    39  Default: `""`  
    40  
    41