- Filebeat Reference: other versions:
- Overview
- Getting Started With Filebeat
- Upgrading Filebeat
- How Filebeat Works
- Configuring Filebeat
- Configuration Options (Reference)
- Filebeat Prospectors Configuration
- Filebeat Global Configuration
- General Configuration
- Elasticsearch Output Configuration
- Logstash Output Configuration
- Kafka Output Configuration
- Redis Output Configuration
- File Output Configuration
- Console Output Configuration
- SSL Configuration
- Paths Configuration
- Logging Configuration
- Processors
- Filtering and Enhancing the Exported Data
- Managing Multiline Messages
- Configuring Filebeat to Use Ingest Node
- Using Environment Variables in the Configuration
- Specifying Multiple Prospectors
- Load Balancing
- YAML Tips and Gotchas
- Regular Expression Support
- Configuration Options (Reference)
- Exported Fields
- Securing Filebeat
- Troubleshooting
- Migrating from Logstash Forwarder to Filebeat
WARNING: Version 5.2 of Filebeat has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Command Line Options
editCommand Line Options
editFilebeat does not have any Filebeat-specific command line options. Instead, you configure the behaviour of Filebeat by specifying options in the configuration file.
The following command line options from libbeat are also available for Filebeat. To use these options, you need to start Filebeat in the foreground.
To start Filebeat, you must use the -c config/path
option to specify the path to the
configuration file.
Run ./filebeat -h
to see the full list of options from the command line.
-
-E <setting>=<value>
-
Override a specific configuration setting. For example:
sudo ./filebeat -c filebeat.yml -E name=mybeat
This setting is applied to the currently running Filebeat process. The Filebeat configuration file is not changed.
-
-N
- Disable the publishing of events to the defined output. This option is useful only for testing the Beat.
-
-c <file>
- Pass the location of a configuration file for the Beat.
-
-configtest
- Test the configuration file and then exit. This option is useful for troubleshooting the configuration of a Beat.
-
-cpuprofile <output file>
- Write CPU profile data to the specified file. This option is useful for troubleshooting the Beat.
-
-d <selectors>
-
Enable debugging for the specified selectors. For the selectors, you can specify a comma-separated
list of components, or you can use
-d "*"
to enable debugging for all components. For example,-d "publish"
displays all the "publish" related messages. -
-e
- Log to stderr and disable syslog/file output.
-
-httpprof [<host>]:<port>
- Start http server for profiling. This option is useful for troubleshooting and profiling the Beat.
-
-memprofile <output file>
- Write memory profile data to the specified output file. This option is useful for troubleshooting the Beat.
-
-path.config
- Set the default location for configuration (e.g. the Elasticsearch template). See the Directory Layout section for details.
-
-path.data
- Set the default location for data files. See the Directory Layout section for details.
-
-path.home
- Set the default location for miscellaneous files. See the Directory Layout section for details.
-
-path.logs
- Set the default location for log files. See the Directory Layout section for details.
-
-v
- Enable verbose output to show INFO-level messages.
-
-version
- Display the Beat version and exit.