2019-05-22 21:16:55 +00:00
PKG_PREFIX := github.com/VictoriaMetrics/VictoriaMetrics
2023-11-20 22:55:19 +00:00
MAKE_CONCURRENCY ?= $( shell cat /proc/cpuinfo | grep -c processor)
MAKE_PARALLEL := $( MAKE) -j $( MAKE_CONCURRENCY)
2021-04-10 12:46:53 +00:00
DATEINFO_TAG ?= $( shell date -u +'%Y%m%d-%H%M%S' )
2019-05-22 21:16:55 +00:00
BUILDINFO_TAG ?= $( shell echo $$ ( git describe --long --all | tr '/' '-' ) $$ ( \
2022-12-01 15:09:36 +00:00
git diff-index --quiet HEAD -- || echo '-dirty-' $$ ( git diff-index -u HEAD | openssl sha1 | cut -d' ' -f2 | cut -c 1-8) ) )
2022-12-20 18:37:59 +00:00
LATEST_TAG ?= cluster-latest
2019-05-22 21:16:55 +00:00
PKG_TAG ?= $( shell git tag -l --points-at HEAD)
i f e q ( $( PKG_TAG ) , )
PKG_TAG := $( BUILDINFO_TAG)
e n d i f
2021-04-10 12:46:53 +00:00
GO_BUILDINFO = -X '$(PKG_PREFIX)/lib/buildinfo.Version=$(APP_NAME)-$(DATEINFO_TAG)-$(BUILDINFO_TAG)'
2019-05-22 21:16:55 +00:00
2020-12-18 10:20:01 +00:00
.PHONY : $( MAKECMDGOALS )
2022-07-13 13:44:39 +00:00
i n c l u d e a p p / * / M a k e f i l e
i n c l u d e d e p l o y m e n t / * / M a k e f i l e
2023-08-29 09:06:55 +00:00
i n c l u d e d a s h b o a r d s / M a k e f i l e
2022-08-30 23:27:24 +00:00
i n c l u d e p a c k a g e / r e l e a s e / M a k e f i l e
2022-07-13 13:44:39 +00:00
2019-05-22 21:16:55 +00:00
all : \
2019-05-22 21:23:23 +00:00
vminsert \
vmselect \
2020-12-18 16:27:04 +00:00
vmstorage
2019-05-22 21:16:55 +00:00
2019-07-23 16:54:50 +00:00
all-pure : \
vminsert-pure \
vmselect-pure \
2020-12-18 16:27:04 +00:00
vmstorage-pure
2019-07-23 16:54:50 +00:00
2019-05-22 21:16:55 +00:00
clean :
rm -rf bin/*
2022-07-13 13:44:39 +00:00
vmcluster-linux-amd64 : \
vminsert-linux-amd64 \
vmselect-linux-amd64 \
vmstorage-linux-amd64
vmcluster-linux-arm64 : \
vminsert-linux-arm64 \
vmselect-linux-arm64 \
vmstorage-linux-arm64
vmcluster-linux-arm : \
vminsert-linux-arm \
vmselect-linux-arm \
vmstorage-linux-arm
vmcluster-linux-ppc64le : \
vminsert-linux-ppc64le \
vmselect-linux-ppc64le \
vmstorage-linux-ppc64le
vmcluster-linux-386 : \
vminsert-linux-386 \
vmselect-linux-386 \
vmstorage-linux-386
vmcluster-freebsd-amd64 : \
vminsert-freebsd-amd64 \
vmselect-freebsd-amd64 \
vmstorage-freebsd-amd64
vmcluster-openbsd-amd64 : \
vminsert-openbsd-amd64 \
vmselect-openbsd-amd64 \
vmstorage-openbsd-amd64
2023-03-25 22:33:41 +00:00
vmcluster-windows-amd64 : \
vminsert-windows-amd64 \
vmselect-windows-amd64 \
vmstorage-windows-amd64
2023-11-20 20:51:33 +00:00
crossbuild : vmcluster -crossbuild
vmcluster-crossbuild :
$( MAKE_PARALLEL) vmcluster-linux-amd64 \
vmcluster-linux-arm64 \
vmcluster-linux-arm \
vmcluster-linux-ppc64le \
vmcluster-linux-386 \
vmcluster-freebsd-amd64 \
vmcluster-openbsd-amd64
2022-07-13 13:44:39 +00:00
2023-11-15 11:22:37 +00:00
publish : \
2019-11-07 19:05:39 +00:00
publish-vminsert \
2020-02-16 14:55:28 +00:00
publish-vmselect \
2020-12-18 16:27:04 +00:00
publish-vmstorage
2019-05-22 21:23:23 +00:00
package : \
2019-11-07 19:05:39 +00:00
package-vminsert \
2020-02-16 14:55:28 +00:00
package-vmselect \
2020-12-18 16:27:04 +00:00
package-vmstorage
2019-05-22 21:16:55 +00:00
2021-11-08 10:29:10 +00:00
publish-release :
2023-08-29 11:10:27 +00:00
rm -rf bin/*
2023-11-20 20:51:33 +00:00
git checkout $( TAG) && $( MAKE) release && LATEST_TAG = stable $( MAKE) publish && \
git checkout $( TAG) -cluster && $( MAKE) release && LATEST_TAG = cluster-stable $( MAKE) publish && \
git checkout $( TAG) -enterprise && $( MAKE) release && LATEST_TAG = enterprise-stable $( MAKE) publish && \
git checkout $( TAG) -enterprise-cluster && $( MAKE) release && LATEST_TAG = enterprise-cluster-stable $( MAKE) publish
2021-11-08 10:29:10 +00:00
2023-11-20 20:51:33 +00:00
release :
$( MAKE_PARALLEL) release-vmcluster
2019-11-07 19:05:39 +00:00
release-vmcluster : \
2022-07-13 12:42:48 +00:00
release-vmcluster-linux-amd64 \
2022-07-13 13:44:39 +00:00
release-vmcluster-linux-arm64 \
release-vmcluster-freebsd-amd64 \
2023-03-19 08:36:05 +00:00
release-vmcluster-openbsd-amd64 \
release-vmcluster-windows-amd64
2021-04-05 20:01:45 +00:00
2022-07-13 12:42:48 +00:00
release-vmcluster-linux-amd64 :
GOOS = linux GOARCH = amd64 $( MAKE) release-vmcluster-goos-goarch
2021-04-05 20:01:45 +00:00
2022-07-13 12:42:48 +00:00
release-vmcluster-linux-arm64 :
2022-07-13 13:44:39 +00:00
GOOS = linux GOARCH = arm64 $( MAKE) release-vmcluster-goos-goarch
release-vmcluster-freebsd-amd64 :
GOOS = freebsd GOARCH = amd64 $( MAKE) release-vmcluster-goos-goarch
release-vmcluster-openbsd-amd64 :
GOOS = openbsd GOARCH = amd64 $( MAKE) release-vmcluster-goos-goarch
2021-04-05 20:01:45 +00:00
2023-03-19 08:36:05 +00:00
release-vmcluster-windows-amd64 :
GOARCH = amd64 $( MAKE) release-vmcluster-windows-goarch
2022-07-13 12:42:48 +00:00
release-vmcluster-goos-goarch : \
vminsert-$( GOOS) -$( GOARCH) -prod \
vmselect-$( GOOS) -$( GOARCH) -prod \
vmstorage-$( GOOS) -$( GOARCH) -prod
2021-04-05 20:01:45 +00:00
cd bin && \
2022-07-13 12:42:48 +00:00
tar --transform= " flags=r;s|- $( GOOS) - $( GOARCH) || " -czf victoria-metrics-$( GOOS) -$( GOARCH) -$( PKG_TAG) .tar.gz \
vminsert-$( GOOS) -$( GOARCH) -prod \
vmselect-$( GOOS) -$( GOARCH) -prod \
vmstorage-$( GOOS) -$( GOARCH) -prod \
&& sha256sum victoria-metrics-$( GOOS) -$( GOARCH) -$( PKG_TAG) .tar.gz \
vminsert-$( GOOS) -$( GOARCH) -prod \
vmselect-$( GOOS) -$( GOARCH) -prod \
vmstorage-$( GOOS) -$( GOARCH) -prod \
| sed s/-$( GOOS) -$( GOARCH) -prod/-prod/ > victoria-metrics-$( GOOS) -$( GOARCH) -$( PKG_TAG) _checksums.txt
2022-07-13 13:44:39 +00:00
cd bin && rm -rf \
vminsert-$( GOOS) -$( GOARCH) -prod \
vmselect-$( GOOS) -$( GOARCH) -prod \
vmstorage-$( GOOS) -$( GOARCH) -prod
2019-08-15 11:05:17 +00:00
2023-03-19 08:36:05 +00:00
release-vmcluster-windows-goarch : \
vminsert-windows-$( GOARCH) -prod \
vmselect-windows-$( GOARCH) -prod \
vmstorage-windows-$( GOARCH) -prod
cd bin && \
zip victoria-metrics-windows-$( GOARCH) -$( PKG_TAG) .zip \
vminsert-windows-$( GOARCH) -prod.exe \
vmselect-windows-$( GOARCH) -prod.exe \
vmstorage-windows-$( GOARCH) -prod.exe \
&& sha256sum victoria-metrics-windows-$( GOARCH) -$( PKG_TAG) .zip \
vminsert-windows-$( GOARCH) -prod.exe \
vmselect-windows-$( GOARCH) -prod.exe \
vmstorage-windows-$( GOARCH) -prod.exe \
> victoria-metrics-windows-$( GOARCH) -$( PKG_TAG) _checksums.txt
cd bin && rm -rf \
vminsert-windows-$( GOARCH) -prod.exe \
vmselect-windows-$( GOARCH) -prod.exe \
vmstorage-windows-$( GOARCH) -prod.exe
2019-11-04 10:43:26 +00:00
pprof-cpu :
go tool pprof -trim_path= github.com/VictoriaMetrics/VictoriaMetrics@ $( PPROF_FILE)
2019-05-22 21:16:55 +00:00
fmt :
2022-07-13 13:44:39 +00:00
gofmt -l -w -s ./lib
gofmt -l -w -s ./app
2019-05-22 21:16:55 +00:00
vet :
2022-08-07 17:39:05 +00:00
go vet ./lib/...
go vet ./app/...
2019-05-22 21:16:55 +00:00
2023-07-13 18:51:56 +00:00
check-all : fmt vet golangci -lint govulncheck
2019-06-20 11:52:48 +00:00
2019-05-22 21:16:55 +00:00
test :
2022-08-07 17:39:05 +00:00
go test ./lib/... ./app/...
2019-06-20 11:52:48 +00:00
2020-03-05 10:02:06 +00:00
test-race :
2022-08-07 17:39:05 +00:00
go test -race ./lib/... ./app/...
2020-03-05 10:02:06 +00:00
2019-07-23 16:26:39 +00:00
test-pure :
2022-08-07 17:39:05 +00:00
CGO_ENABLED = 0 go test ./lib/... ./app/...
2019-07-23 16:54:50 +00:00
test-full :
2022-08-07 17:39:05 +00:00
go test -coverprofile= coverage.txt -covermode= atomic ./lib/... ./app/...
2019-07-23 16:26:39 +00:00
2019-10-17 15:22:56 +00:00
test-full-386 :
2022-08-07 17:39:05 +00:00
GOARCH = 386 go test -coverprofile= coverage.txt -covermode= atomic ./lib/... ./app/...
2019-10-17 15:22:56 +00:00
2019-05-22 21:16:55 +00:00
benchmark :
2022-08-07 17:39:05 +00:00
go test -bench= . ./lib/...
go test -bench= . ./app/...
2019-05-22 21:16:55 +00:00
2019-07-23 16:26:39 +00:00
benchmark-pure :
2022-08-07 17:39:05 +00:00
CGO_ENABLED = 0 go test -bench= . ./lib/...
CGO_ENABLED = 0 go test -bench= . ./app/...
2019-07-23 16:26:39 +00:00
2019-05-22 21:16:55 +00:00
vendor-update :
2022-07-13 13:44:39 +00:00
go get -u -d ./lib/...
go get -u -d ./app/...
2023-09-07 10:13:03 +00:00
go mod tidy -compat= 1.20
2022-07-13 13:44:39 +00:00
go mod vendor
2019-05-22 21:16:55 +00:00
2019-05-22 21:23:23 +00:00
app-local :
2022-08-07 17:39:05 +00:00
CGO_ENABLED = 1 go build $( RACE) -ldflags " $( GO_BUILDINFO) " -o bin/$( APP_NAME) $( RACE) $( PKG_PREFIX) /app/$( APP_NAME)
2019-07-23 16:54:50 +00:00
app-local-pure :
2022-08-07 17:39:05 +00:00
CGO_ENABLED = 0 go build $( RACE) -ldflags " $( GO_BUILDINFO) " -o bin/$( APP_NAME) -pure$( RACE) $( PKG_PREFIX) /app/$( APP_NAME)
2019-05-22 21:23:23 +00:00
2022-07-13 13:44:39 +00:00
app-local-goos-goarch :
2022-08-07 17:39:05 +00:00
CGO_ENABLED = $( CGO_ENABLED) GOOS = $( GOOS) GOARCH = $( GOARCH) go build $( RACE) -ldflags " $( GO_BUILDINFO) " -o bin/$( APP_NAME) -$( GOOS) -$( GOARCH) $( RACE) $( PKG_PREFIX) /app/$( APP_NAME)
2020-07-31 10:42:09 +00:00
2022-07-13 13:44:39 +00:00
app-local-windows-goarch :
2022-08-07 17:39:05 +00:00
CGO_ENABLED = 0 GOOS = windows GOARCH = $( GOARCH) go build $( RACE) -ldflags " $( GO_BUILDINFO) " -o bin/$( APP_NAME) -windows-$( GOARCH) $( RACE) .exe $( PKG_PREFIX) /app/$( APP_NAME)
2021-03-16 18:49:07 +00:00
2019-05-22 21:16:55 +00:00
quicktemplate-gen : install -qtc
qtc
install-qtc :
2022-09-08 15:43:02 +00:00
which qtc || go install github.com/valyala/quicktemplate/qtc@latest
2019-06-20 11:30:55 +00:00
golangci-lint : install -golangci -lint
2023-01-06 00:58:55 +00:00
golangci-lint run
2019-06-20 11:30:55 +00:00
install-golangci-lint :
2023-11-02 20:37:49 +00:00
which golangci-lint || curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $( shell go env GOPATH) /bin v1.55.1
2020-06-02 16:12:07 +00:00
2022-09-08 15:35:31 +00:00
govulncheck : install -govulncheck
govulncheck ./...
install-govulncheck :
which govulncheck || go install golang.org/x/vuln/cmd/govulncheck@latest
2021-05-10 08:54:35 +00:00
install-wwhrd :
2022-09-08 15:43:02 +00:00
which wwhrd || go install github.com/frapposelli/wwhrd@latest
2021-05-10 08:54:35 +00:00
check-licenses : install -wwhrd
wwhrd check -f .wwhrd.yml
2021-04-07 10:39:16 +00:00
copy-docs :
2023-07-04 09:38:39 +00:00
# The 'printf' function is used instead of 'echo' or 'echo -e' to handle line breaks (e.g. '\n') in the same way on different operating systems (MacOS/Ubuntu Linux/Arch Linux) and their shells (bash/sh/zsh/fish).
# For details, see https://github.com/VictoriaMetrics/VictoriaMetrics/pull/4548#issue-1782796419 and https://stackoverflow.com/questions/8467424/echo-newline-in-bash-prints-literal-n
2023-05-25 19:26:36 +00:00
echo "---" > ${ DST }
2022-10-03 11:13:07 +00:00
@if [ ${ ORDER } -ne 0 ] ; then \
2023-05-25 19:26:36 +00:00
echo " sort: ${ ORDER } " >> ${ DST } ; \
echo " weight: ${ ORDER } " >> ${ DST } ; \
2023-07-04 09:38:39 +00:00
printf " menu:\n docs:\n parent: 'victoriametrics'\n weight: ${ ORDER } \n " >> ${ DST } ; \
2022-10-03 11:13:07 +00:00
fi
2023-05-25 19:26:36 +00:00
echo " title: ${ TITLE } " >> ${ DST }
@if [ ${ OLD_URL } ] ; then \
2023-07-04 09:38:39 +00:00
printf " aliases:\n - ${ OLD_URL } \n " >> ${ DST } ; \
2023-05-25 19:26:36 +00:00
fi
echo "---" >> ${ DST }
2021-04-07 10:39:16 +00:00
cat ${ SRC } >> ${ DST }
2022-10-06 12:06:39 +00:00
sed -i= '.tmp' 's/<img src=\"docs\//<img src=\"/' ${ DST }
2022-10-06 12:24:56 +00:00
rm -rf docs/*.tmp
2021-04-07 10:39:16 +00:00
2023-05-25 19:26:36 +00:00
# Copies docs for all components and adds the order/weight tag, title, menu position and alias with the backward compatible link for the old site.
# For ORDER=0 it adds no order tag/weight tag.
2023-05-26 08:22:29 +00:00
# FOR OLD_URL - relative link, used for backward compatibility with the link from documentation based on GitHub pages (old one)
2023-07-06 18:01:19 +00:00
# FOR OLD_URL='' it adds no alias, it should be empty for every new page, don't change it for already existing links.
2022-10-03 11:13:07 +00:00
# Images starting with <img src="docs/ are replaced with <img src="
2023-05-25 19:29:39 +00:00
# Cluster docs are supposed to be ordered as 2nd.
2022-10-03 11:13:07 +00:00
# The rest of docs is ordered manually.
2020-06-02 16:12:07 +00:00
docs-sync :
2023-05-25 19:26:36 +00:00
SRC = README.md DST = docs/Cluster-VictoriaMetrics.md OLD_URL = '/Cluster-VictoriaMetrics.html' ORDER = 2 TITLE = 'Cluster version' $( MAKE) copy-docs
SRC = app/vmagent/README.md DST = docs/vmagent.md OLD_URL = '/vmagent.html' ORDER = 3 TITLE = vmagent $( MAKE) copy-docs
SRC = app/vmalert/README.md DST = docs/vmalert.md OLD_URL = '/vmalert.html' ORDER = 4 TITLE = vmalert $( MAKE) copy-docs
SRC = app/vmauth/README.md DST = docs/vmauth.md OLD_URL = '/vmauth.html' ORDER = 5 TITLE = vmauth $( MAKE) copy-docs
SRC = app/vmbackup/README.md DST = docs/vmbackup.md OLD_URL = '/vmbackup.html' ORDER = 6 TITLE = vmbackup $( MAKE) copy-docs
SRC = app/vmrestore/README.md DST = docs/vmrestore.md OLD_URL = '/vmrestore.html' ORDER = 7 TITLE = vmrestore $( MAKE) copy-docs
SRC = app/vmctl/README.md DST = docs/vmctl.md OLD_URL = '/vmctl.html' ORDER = 8 TITLE = vmctl $( MAKE) copy-docs
SRC = app/vmgateway/README.md DST = docs/vmgateway.md OLD_URL = '/vmgateway.html' ORDER = 9 TITLE = vmgateway $( MAKE) copy-docs
SRC = app/vmbackupmanager/README.md DST = docs/vmbackupmanager.md OLD_URL = '/vmbackupmanager.html' ORDER = 10 TITLE = vmbackupmanager $( MAKE) copy-docs
2023-10-13 11:54:33 +00:00
SRC = app/vmalert-tool/README.md DST = docs/vmalert-tool.md OLD_URL = '' ORDER = 12 TITLE = vmalert-tool $( MAKE) copy-docs