14 lines
389 B
Makefile
14 lines
389 B
Makefile
|
BEAT_TYPE = metricbeat
|
||
|
PREPARE_COMMAND = MODULE=elastic METRICSET=test make create-metricset;
|
||
|
|
||
|
include ../common/Makefile
|
||
|
|
||
|
.PHONY: prepare-test
|
||
|
prepare-test:: python-env
|
||
|
mkdir -p ${BEAT_PATH}/scripts
|
||
|
rsync -a --exclude=build ${PWD}/../../metricbeat/scripts/generate_imports_helper.py ${BEAT_PATH}/scripts
|
||
|
|
||
|
# Collects all dependencies and then calls update
|
||
|
.PHONY: collect
|
||
|
collect:
|