# Unit Sizes

Certain configuration directives in Fluent Bit refer to unit sizes such as when defining the size of a buffer or specific limits, we can find these in plugins like [Tail Input](https://docs.fluentbit.io/manual/1.3/input/tail), [Forward Input](https://docs.fluentbit.io/manual/1.3/input/forward) or in generic properties like [Mem\_Buf\_Limit](https://docs.fluentbit.io/manual/1.3/configuration/backpressure).

Starting from [Fluent Bit](http://fluentbit.io) v0.11.10, all unit sizes have been standardized across the core and plugins, the following table describes the options that can be used and what they mean:

| Suffix       | Description                                                                                      | Example                                        |
| ------------ | ------------------------------------------------------------------------------------------------ | ---------------------------------------------- |
|              | When a suffix is **not** specified, it's assumed that the value given is a bytes representation. | Specifying a value of 32000, means 32000 bytes |
| k, K, KB, kb | Kilobyte: a unit of memory equal to 1,000 bytes.                                                 | 32k means 32000 bytes.                         |
| m, M, MB, mb | Megabyte: a unit of memory equal to 1,000,000 bytes                                              | 1M means 1000000 bytes                         |
| g, G, GB, gb | Gigabyte: a unit of memory equal to 1,000,000,000 bytes                                          | 1G means 1000000000 bytes                      |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.fluentbit.io/manual/1.3/configuration/unit_sizes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
