Collecting Logs from Linux
Filebeat is the recommended way to ship log files to CLA.
Prerequisites:
Filebeat 6.3 (or higher) installed on your system. Please see the installation instructions
Allow outgoing traffic to destination port 5044 for Logstash and port 9200 for elastic search.
Either port
5044
or9200
should be open not both.
Installation on Linux / Mac
Step 1: Download the certificate
Step 2: Copy the certificate to desired location
Step 3: Configure Filebeat
On Linux file systems, the configuration should be placed user
Either you can use configuration wizard to create the configuration file or you can manually edit the configuration file. Always make sure that you have taken backup of original configuration file.
The file contains two main sections:
prospectors
: define the files that needs to be monitoredoutputs
: responsible for sending the data in JSON format
Note 1:
There is a difference when configuring a prospector that harvests JSON files vs a prospector that harvests simple text line logs. Please follow the following guidelines.
When harvesting JSON files, please add cfxDLAio_codec
equals to json
to the fields object.
When harvesting text files, please add cfxDLAio_codec
equals to plain
to the fields object.
Note 2:
The fields_under_root
property should always set to be true.
Note 3:
The type
property should be defined, it is used to identify the type of log data and provide you with a richer logging experience. For complete list of known types, please click here. If the type you are looking for is not listed, please select the type that is closer or best describes your data.
The sample configuration file will look like the following:
You can add as many file entries as you like. All file entries should contain the cfxDLA
token.
Last updated