All Projects → consulthys → springbeat

consulthys / springbeat

Licence: other
Simple Beat for collecting metrics from Spring Boot apps

Programming Languages

go
31211 projects - #10 most used programming language
Makefile
30231 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to springbeat

beats-playground
Web UI for testing Elastic Beats processors
Stars: ✭ 15 (-42.31%)
Mutual labels:  beats
chef-filebeat
Chef Cookbook to Manage Elastic Filebeat https://supermarket.chef.io/cookbooks/filebeat
Stars: ✭ 31 (+19.23%)
Mutual labels:  beats
hsbeat
Beat for Java HotSpot VM
Stars: ✭ 24 (-7.69%)
Mutual labels:  beats
execbeat
Elastic beat to call commands in a regular interval and send the result to Logstash, Elasticsearch
Stars: ✭ 54 (+107.69%)
Mutual labels:  beats
docker-metricbeat-example
Elasticsearch Metricbeat example configuration to monitor Host and Services with docker
Stars: ✭ 80 (+207.69%)
Mutual labels:  beats
cloudwatchmetricbeat
A beat for AWS CloudWatch Metrics. Located in NYC? We are hiring: https://www.narmi.com/careers/
Stars: ✭ 17 (-34.62%)
Mutual labels:  beats
factbeat
Ship Facter facts to Elasticsearch or Logstash.
Stars: ✭ 13 (-50%)
Mutual labels:  beats
elastic-stax
elastic-stax Docker Compose projects => for learning/training purposes only!
Stars: ✭ 13 (-50%)
Mutual labels:  beats
graylog-beats-plugin
Graylog input plugin for Elastic Beats
Stars: ✭ 19 (-26.92%)
Mutual labels:  beats
awesome-elastic-stack
Awesome Elastic Stack
Stars: ✭ 29 (+11.54%)
Mutual labels:  beats
LogiEM
面向Elasticsearch研发与运维人员,围绕集群、索引构建的零侵入、多租户的Elasticsearch GUI管控平台
Stars: ✭ 209 (+703.85%)
Mutual labels:  beats
EnterpriseApplicationLog
Enterprise Application Log with RabbitMQ, LogStash, ElasticSearch and Kibana
Stars: ✭ 88 (+238.46%)
Mutual labels:  beats
elastic-stack-testing
Elastic Stack Testing Framework (ESTF) 🤖
Stars: ✭ 47 (+80.77%)
Mutual labels:  beats
pubsubbeat
An Elastic Beat to ingest data from Google Pub/Sub
Stars: ✭ 40 (+53.85%)
Mutual labels:  beats
mqttbeat
Elasticsearch beat to save messages received with the MQTT protocol.
Stars: ✭ 18 (-30.77%)
Mutual labels:  beats
kafkabeat
Kafka event forwarder build on top of Elastic Beats platform
Stars: ✭ 13 (-50%)
Mutual labels:  beats
icingabeat
Elastic Beat fetching events & status from Icinga 2
Stars: ✭ 36 (+38.46%)
Mutual labels:  beats
MixingBear
Package for automatic beat-mixing of music files in Python 🐻🎚
Stars: ✭ 73 (+180.77%)
Mutual labels:  beats

Springbeat

Welcome to Springbeat.

Important Notes:

  1. For now, only two endpoints are supported, namely /metrics and /health. We'll add more endpoints as we go
  2. This plugin will only work if your Spring Boot application has the spring-boot-starter-actuator dependency
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
		</dependency>

Ensure that this folder is at the following location: ${GOPATH}/github.com/consulthys

Getting Started with Springbeat

Requirements

Init Project

To get running with Springbeat, run the following command:

make init

To commit the first version before you modify it, run:

make commit

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

git remote set-url origin https://github.com/consulthys/springbeat
git push origin master

For further development, check out the beat developer guide.

Build

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

make

Run

To run Springbeat with debugging output enabled, run:

./springbeat -c springbeat.yml -e -d "*"

Test

To test Springbeat, 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/

Package

To be able to package Springbeat the requirements are as follows:

  • Docker Environment >= 1.10
  • $GOPATH/bin must be part of $PATH: export PATH=${PATH}:${GOPATH}/bin

To cross-compile and package Springbeat for all supported platforms, run the following commands:

cd dev-tools/packer
make deps
make images
make

Update

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/springbeat.template.json and etc/springbeat.asciidoc

make update

Cleanup

To clean Springbeat source code, run the following commands:

make fmt
make simplify

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

make clean

Clone

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

mkdir -p ${GOPATH}/github.com/consulthys
cd ${GOPATH}/github.com/consulthys
git clone https://github.com/consulthys/springbeat

For further development, check out the beat developer guide.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].