This application is intended as a replacement for udplogbeat. Although quite similar, it does have some improvements and allows you to start up via either UDP or TCP. It can act accept plain-text or JSON logs and also act as a syslog destination replacement.
Ensure that this folder is at the following location:
${GOPATH}/github.com/harfordfive
protologbeat.protocol
: Either tcp or udp (Default: udp)protologbeat.address
: The address on which the process will lisen (Deafult: 127.0.0.1)protologbeat.port
: The port on which the process will listen (Default = 5000)protologbeat.max_message_size
: The maximum accepted message size (Default = 4096)protologbeat.json_mode
: Enable logging of only JSON formated messages (Default = false)protolog.merge_fields_to_root
: When json_mode enabled, wether to merge parsed fields to the root level. (Default = false)protologbeat.default_es_log_type
: Elasticsearch type to assign to an event if one isn't specified (Default: protologbeat)protologbeat.enable_syslog_format_only
: Boolean value indicating if only syslog messages should be accepted. (Default = false)protologbeat.enable_gelf
: Boolean value indiciating if process should in mode to only accept GELF formated messagesprotologbeat.enable_json_validation
: Boolean value indicating if JSON schema validation should be applied forjson
format messages (Default = false)protologbeat.validate_all_json_types
: When json_mode enabled, indicates if ALL types must have a schema specified. Log entries with types that have no schema will not be published. (Default = false)protologbeat.json_schema
: A hash consisting of the Elasticsearch type as the key, and the absolute local schema file path as the value.
The following are examples of configuration blocks for the protologbeat
section.
- Configuration block for plain-text logging
- Configuration block that enforces JSON schema only for indicated Elasticsearch types
- Configuration block that enforces JSON schema for all Elasticsearch types
- Configuration block for a syslog replacement, with custom ES type of 'myapp'
JSON schemas can be automatically generated from an object here: http://jsonschema.net/. You can also view the email_contact and stock_item schemas as examples.
- If you intend on using this as a drop-in replacement to logging with Rsyslog, this method will not persist your data to a file on disk.
- If protologbeat is down for any given reason, messages sent to the configured UDP port will never be processed or sent to your ELK cluster.
- If you need 100% guarantee each message will be delivered at least once, this may not be the best solution for you.
- If some potential loss of log events is acceptable for you, than this may be a reasonable solution for you.
- This application is intended for scenarios where your application can log to protologbeat running on the same physical host. It's discouraged to use this for cross-server/cross-region/cross-datacenter logging.
- The current date/time is automatically added to each log entry once it is received by protologbeat.
- Considering this could log data with any type of fields, it's suggested that you add your necessary field names and types to the protologbeat.template-es2x.json or protologbeat.template.json (ES 5.x) index templates.
Please see the _samples/
directory for examples of clients in various languages.
- Golang 1.7
To get running with Protologbeat and also install the dependencies, run the following command:
make setup
It will create a clean git history for each major step. Note that you can always rewrite the history if you wish before pushing your changes.
To push Protologbeat in the git repository, run the following commands:
git remote set-url origin https://github.com/harfordfive/protologbeat
git push origin master
For further development, check out the beat developer guide.
To build the binary for Protologbeat run the command below. This will generate a binary in the same directory with the name protologbeat.
make
If you'd like to build the binary for OSX, Linux and/or Windows, you can run the following:
./build-bin [TAG_VERSION]
The resulting binaries will be placed in the bin/
directory
To run Protologbeat with debugging output enabled, run:
./protologbeat -c protologbeat.yml -e -d "*"
To test Protologbeat, run the following command:
make testsuite
alternatively:
make unit-tests
make system-tests
make integration-tests
make coverage-report
The test coverage is reported in the folder ./build/coverage/
Each beat has a template for the mapping in elasticsearch and a documentation for the fields
which is automatically generated based on etc/fields.yml
.
To generate etc/protologbeat.template.json and etc/protologbeat.asciidoc
make update
To clean Protologbeat source code, run the following commands:
make fmt
make simplify
To clean up the build directory and generated artifacts, run:
make clean
To clone Protologbeat from the git repository, run the following commands:
mkdir -p ${GOPATH}/github.com/harfordfive
cd ${GOPATH}/github.com/harfordfive
git clone https://github.com/harfordfive/protologbeat
For further development, check out the beat developer guide.
You can find the Docker images for this beat here. Please take note the container starts with a basic config that listens on the default protocol/address/port and accepts plain-text messages. For any customizations, please modify the sample protologbeat.full.yml config and create your own Docker file that overwrites the original.
The beat frameworks provides tools to crosscompile and package your beat for different platforms. This requires docker and vendoring as described above. To build packages of your beat, run the following command:
make package
This will fetch and create all images required for the build process. The hole process to finish can take several minutes.