2018-04-19 12:07:10 +03:00
# Copyright 2018 The Prometheus Authors
2012-11-26 20:11:34 +01:00
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
2013-02-07 11:38:01 +01:00
#
2012-11-26 20:11:34 +01:00
# http://www.apache.org/licenses/LICENSE-2.0
2013-02-07 11:38:01 +01:00
#
2012-11-26 20:11:34 +01:00
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
2019-04-15 14:27:00 +02:00
# Needs to be defined before including Makefile.common to auto-generate targets
2020-03-29 10:11:22 -03:00
DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le s390x
2019-04-15 14:27:00 +02:00
2019-10-17 14:38:09 +02:00
REACT_APP_PATH = web/ui/react-app
2020-11-03 14:51:48 +01:00
REACT_APP_SOURCE_FILES = $( shell find $( REACT_APP_PATH) /public/ $( REACT_APP_PATH) /src/ $( REACT_APP_PATH) /tsconfig.json)
2019-10-28 10:45:53 +01:00
REACT_APP_OUTPUT_DIR = web/ui/static/react
2019-10-17 14:38:09 +02:00
REACT_APP_NODE_MODULES_PATH = $( REACT_APP_PATH) /node_modules
REACT_APP_NPM_LICENSES_TARBALL = "npm_licenses.tar.bz2"
2020-11-03 14:51:48 +01:00
REACT_APP_BUILD_SCRIPT = ./scripts/build_react_app.sh
2019-10-17 14:38:09 +02:00
2020-07-23 14:35:50 -04:00
PROMTOOL = ./promtool
2019-08-13 14:04:14 +05:30
TSDB_BENCHMARK_NUM_METRICS ?= 1000
2020-07-23 14:35:50 -04:00
TSDB_BENCHMARK_DATASET ?= ./tsdb/testdata/20kseries.json
TSDB_BENCHMARK_OUTPUT_DIR ?= ./benchout
2019-08-13 14:04:14 +05:30
2021-02-10 22:02:26 +09:00
GOLANGCI_LINT_OPTS ?= --timeout 2m
2018-04-19 12:07:10 +03:00
i n c l u d e M a k e f i l e . c o m m o n
2015-11-11 15:44:15 +01:00
2018-04-19 12:07:10 +03:00
DOCKER_IMAGE_NAME ?= prometheus
2015-10-10 00:49:08 +02:00
2019-10-17 14:38:09 +02:00
$(REACT_APP_NODE_MODULES_PATH) : $( REACT_APP_PATH ) /package .json $( REACT_APP_PATH ) /yarn .lock
cd $( REACT_APP_PATH) && yarn --frozen-lockfile
2020-11-03 14:51:48 +01:00
$(REACT_APP_OUTPUT_DIR) : $( REACT_APP_NODE_MODULES_PATH ) $( REACT_APP_SOURCE_FILES ) $( REACT_APP_BUILD_SCRIPT )
2019-10-17 14:38:09 +02:00
@echo ">> building React app"
2020-11-03 14:51:48 +01:00
@$( REACT_APP_BUILD_SCRIPT)
2019-10-17 14:38:09 +02:00
2018-06-11 17:51:28 +02:00
.PHONY : assets
2019-10-17 14:38:09 +02:00
assets : $( REACT_APP_OUTPUT_DIR )
2015-09-18 17:03:26 +02:00
@echo ">> writing assets"
2019-10-17 14:38:09 +02:00
# Un-setting GOOS and GOARCH here because the generated Go code is always the same,
# but the cached object code is incompatible between architectures and OSes (which
# breaks cross-building for different combinations on CI in the same container).
cd web/ui && GO111MODULE = $( GO111MODULE) GOOS = GOARCH = $( GO) generate -x -v $( GOOPTS)
2018-11-09 11:31:36 +01:00
@$( GOFMT) -w ./web/ui
2019-10-28 14:02:42 +00:00
.PHONY : react -app -lint
2020-11-03 14:51:48 +01:00
react-app-lint :
2019-10-28 14:02:42 +00:00
@echo ">> running React app linting"
cd $( REACT_APP_PATH) && yarn lint:ci
.PHONY : react -app -lint -fix
2020-11-03 14:51:48 +01:00
react-app-lint-fix :
2020-01-02 09:54:09 -05:00
@echo ">> running React app linting and fixing errors where possible"
2019-10-28 14:02:42 +00:00
cd $( REACT_APP_PATH) && yarn lint
2019-10-17 14:38:09 +02:00
.PHONY : react -app -test
2019-10-28 14:02:42 +00:00
react-app-test : | $( REACT_APP_NODE_MODULES_PATH ) react -app -lint
2019-10-17 14:38:09 +02:00
@echo ">> running React app tests"
2019-10-28 11:09:48 -06:00
cd $( REACT_APP_PATH) && yarn test --no-watch --coverage
2019-10-17 14:38:09 +02:00
.PHONY : test
test : common -test react -app -test
.PHONY : npm_licenses
npm_licenses : $( REACT_APP_NODE_MODULES_PATH )
@echo ">> bundling npm licenses"
rm -f $( REACT_APP_NPM_LICENSES_TARBALL)
find $( REACT_APP_NODE_MODULES_PATH) -iname "license*" | tar cfj $( REACT_APP_NPM_LICENSES_TARBALL) --transform 's/^/npm_licenses\//' --files-from= -
.PHONY : tarball
tarball : npm_licenses common -tarball
.PHONY : docker
docker : npm_licenses common -docker
.PHONY : build
build : assets common -build
2019-08-13 14:04:14 +05:30
2019-10-15 09:33:38 +02:00
.PHONY : bench_tsdb
2020-07-23 14:35:50 -04:00
bench_tsdb : $( PROMU )
@echo ">> building promtool"
@GO111MODULE= $( GO111MODULE) $( PROMU) build --prefix $( PREFIX) promtool
2019-08-13 14:04:14 +05:30
@echo " >> running benchmark, writing result to $( TSDB_BENCHMARK_OUTPUT_DIR) "
2020-07-23 14:35:50 -04:00
@$( PROMTOOL) tsdb bench write --metrics= $( TSDB_BENCHMARK_NUM_METRICS) --out= $( TSDB_BENCHMARK_OUTPUT_DIR) $( TSDB_BENCHMARK_DATASET)
@$( GO) tool pprof -svg $( PROMTOOL) $( TSDB_BENCHMARK_OUTPUT_DIR) /cpu.prof > $( TSDB_BENCHMARK_OUTPUT_DIR) /cpuprof.svg
@$( GO) tool pprof --inuse_space -svg $( PROMTOOL) $( TSDB_BENCHMARK_OUTPUT_DIR) /mem.prof > $( TSDB_BENCHMARK_OUTPUT_DIR) /memprof.inuse.svg
@$( GO) tool pprof --alloc_space -svg $( PROMTOOL) $( TSDB_BENCHMARK_OUTPUT_DIR) /mem.prof > $( TSDB_BENCHMARK_OUTPUT_DIR) /memprof.alloc.svg
@$( GO) tool pprof -svg $( PROMTOOL) $( TSDB_BENCHMARK_OUTPUT_DIR) /block.prof > $( TSDB_BENCHMARK_OUTPUT_DIR) /blockprof.svg
@$( GO) tool pprof -svg $( PROMTOOL) $( TSDB_BENCHMARK_OUTPUT_DIR) /mutex.prof > $( TSDB_BENCHMARK_OUTPUT_DIR) /mutexprof.svg