# Dummy

The *Dummy* input plugin generates dummy events. Use this plugin for testing, debugging, benchmarking and getting started with Fluent Bit.

## Configuration parameters

The plugin supports the following configuration parameters:

| Key                | Description                                                                                                             | Default               |
| ------------------ | ----------------------------------------------------------------------------------------------------------------------- | --------------------- |
| `Dummy`            | Dummy JSON record.                                                                                                      | `{"message":"dummy"}` |
| `Metadata`         | Dummy JSON metadata.                                                                                                    | `{}`                  |
| `Start_time_sec`   | Dummy base timestamp, in seconds.                                                                                       | `0`                   |
| `Start_time_nsec`  | Dummy base timestamp, in nanoseconds.                                                                                   | `0`                   |
| `Rate`             | Rate at which messages are generated expressed in how many times per second.                                            | `1`                   |
| `Interval_sec`     | Set time interval, in seconds, at which every message is generated. If set, `Rate` configuration is ignored.            | `0`                   |
| `Interval_nsec`    | Set time interval, in nanoseconds, at which every message is generated. If set, `Rate` configuration is ignored.        | `0`                   |
| `Samples`          | If set, the events number will be limited. For example, if Samples=3, the plugin generates only three events and stops. | *none*                |
| `Copies`           | Number of messages to generate each time messages generate.                                                             | `1`                   |
| `Flush_on_startup` | If set to `true`, the first dummy event is generated at startup.                                                        | `false`               |
| `Threaded`         | Indicates whether to run this input in its own [thread](/manual/4.0/administration/multithreading.md#inputs).           | `false`               |

## Get started

You can run the plugin from the command line or through the configuration file:

### Command line

Run the plugin from the command line using the following command:

```shell
fluent-bit -i dummy -o stdout
```

which returns results like the following:

```
...
[0] dummy.0: [[1686451466.659962491, {}], {"message"=>"dummy"}]
[0] dummy.0: [[1686451467.659679509, {}], {"message"=>"dummy"}]
...
```

### Configuration file

In your main configuration file append the following:

{% tabs %}
{% tab title="fluent-bit.yaml" %}

```yaml
pipeline:
  inputs:
    - name: dummy
      dummy: '{"message": "custom dummy"}'

  outputs:
    - name: stdout
      match: '*'
```

{% endtab %}

{% tab title="fluent-bit.conf" %}

```
[INPUT]
  Name   dummy
  Dummy {"message": "custom dummy"}

[OUTPUT]
  Name   stdout
  Match  *
```

{% endtab %}
{% endtabs %}


---

# 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/4.0/data-pipeline/inputs/dummy.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.
