60 lines
2.3 KiB
Makefile
60 lines
2.3 KiB
Makefile
BEAT_NAME?=filebeat
|
|
BEAT_TITLE?=Filebeat
|
|
SYSTEM_TESTS?=true
|
|
TEST_ENVIRONMENT?=true
|
|
GOX_FLAGS=-arch="amd64 386 arm ppc64 ppc64le"
|
|
ES_BEATS?=..
|
|
FIELDS_FILE_PATH=module
|
|
|
|
include ${ES_BEATS}/libbeat/scripts/Makefile
|
|
|
|
# Collects all module dashboards
|
|
.PHONY: kibana
|
|
kibana:
|
|
@rm -rf _meta/kibana.generated
|
|
@mkdir -p _meta/kibana.generated
|
|
@-cp -pr module/*/_meta/kibana/* _meta/kibana.generated
|
|
|
|
# Collects all module configs
|
|
.PHONY: configs
|
|
configs: python-env
|
|
@cp ${ES_BEATS}/filebeat/_meta/common.p1.yml _meta/beat.yml
|
|
@cat ${ES_BEATS}/filebeat/_meta/common.p2.yml >> _meta/beat.yml
|
|
@cat ${ES_BEATS}/filebeat/_meta/common.reference.p1.yml > _meta/beat.reference.yml
|
|
@${PYTHON_ENV}/bin/python ${ES_BEATS}/script/config_collector.py --beat ${BEAT_NAME} --full $(PWD) >> _meta/beat.reference.yml
|
|
@cat ${ES_BEATS}/filebeat/_meta/common.reference.p2.yml >> _meta/beat.reference.yml
|
|
@rm -rf modules.d && mkdir -p modules.d
|
|
@for MODULE in `find module -type d -maxdepth 1 -mindepth 1 -exec basename {} \;`; do cp -a $(PWD)/module/$$MODULE/_meta/config.yml modules.d/$$MODULE.yml.disabled; done
|
|
@chmod go-w modules.d/*
|
|
|
|
# Collects all module docs
|
|
.PHONY: collect-docs
|
|
collect-docs: python-env
|
|
@rm -rf docs/modules
|
|
@mkdir -p docs/modules
|
|
@${PYTHON_ENV}/bin/python ${ES_BEATS}/filebeat/scripts/docs_collector.py --beat ${BEAT_NAME}
|
|
|
|
# Generate imports for prospectors
|
|
.PHONY: imports
|
|
imports: python-env
|
|
@mkdir -p include
|
|
@${PYTHON_ENV}/bin/python ${ES_BEATS}/script/generate_imports.py ${BEAT_PATH}
|
|
|
|
# Runs all collection steps and updates afterwards
|
|
.PHONY: collect
|
|
collect: kibana configs collect-docs imports
|
|
|
|
# Creates a new module. Requires the params MODULE
|
|
.PHONY: create-module
|
|
create-module:
|
|
@go run ${ES_BEATS}/filebeat/scripts/generator/module/main.go --path=$(PWD) --beats_path=$(BEAT_GOPATH)/src/$(BEAT_PATH) --module=$(MODULE)
|
|
|
|
# Creates a new fileset. Requires the params MODULE and FILESET
|
|
.PHONY: create-fileset
|
|
create-fileset:
|
|
@go run ${ES_BEATS}/filebeat/scripts/generator/fileset/main.go --path=$(PWD) --beats_path=$(BEAT_GOPATH)/src/$(BEAT_PATH) --module=$(MODULE) --fileset=$(FILESET)
|
|
|
|
# Creates a fields.yml based on a pipeline.json file. Requires the params MODULE and FILESET
|
|
.PHONY: create-fields
|
|
create-fields:
|
|
@go run ${ES_BEATS}/filebeat/scripts/generator/fields/main.go --beats_path=$(BEAT_GOPATH)/src/$(BEAT_PATH) --module=$(MODULE) --fileset=$(FILESET)
|