项目作者: hanjm

项目描述 :
Natsbeat is a beat based on
高级语言: Go
项目地址: git://github.com/hanjm/natsbeat.git
创建时间: 2018-04-07T15:10:20Z
项目社区:https://github.com/hanjm/natsbeat

开源协议:Other

下载


Natsbeat

Natsbeat is a beat based on

image

Welcome to Natsbeat.
Ensure that this folder is at the following location:
${GOPATH}/src/github.com/hanjm/natsbeat

Getting Started with Natsbeat

Requirements

Init Project

To get running with Natsbeat and also install the
dependencies, run the following command:

  1. 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 Natsbeat in the git repository, run the following commands:

  1. git remote set-url origin https://github.com/hanjm/natsbeat
  2. git push origin master

For further development, check out the beat developer guide.

Build

To build the binary for Natsbeat run the command below. This will generate a binary
in the same directory with the name natsbeat.

  1. make

Run

To run Natsbeat with debugging output enabled, run:

  1. ./natsbeat -c natsbeat.yml -e -d "*"

Test

To test Natsbeat, run the following command:

  1. make testsuite

alternatively:

  1. make unit-tests
  2. make system-tests
  3. make integration-tests
  4. make coverage-report

The test coverage is reported in the folder ./build/coverage/

Update

Each beat has a template for the mapping in elasticsearch and a documentation for the fields
which is automatically generated based on fields.yml by running the following command.

  1. make update

Cleanup

To clean Natsbeat source code, run the following commands:

  1. make fmt
  2. make simplify

To clean up the build directory and generated artifacts, run:

  1. make clean

Clone

To clone Natsbeat from the git repository, run the following commands:

  1. mkdir -p ${GOPATH}/src/github.com/hanjm/natsbeat
  2. git clone https://github.com/hanjm/natsbeat ${GOPATH}/src/github.com/hanjm/natsbeat

For further development, check out the beat developer guide.

Packaging

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:

  1. make package

This will fetch and create all images required for the build process. The hole process to finish can take several minutes.