Changelog: - added check-single-keys and make check-keys not use KEYS - add total_system_memory metric - environment variables for all command line options - more persistence related metrics PR: 232321 Submitted by: Volodymyr Kostyrko <arcade@b1t.name> (maintainer) Sponsored by: Netzkommune GmbH
29 lines
558 B
Makefile
29 lines
558 B
Makefile
# Created by: Jev Björsell <ports@ecadlabs.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= redis_exporter
|
|
PORTVERSION= 0.21.2
|
|
DISTVERSIONPREFIX=v
|
|
CATEGORIES= databases
|
|
|
|
MAINTAINER= arcade@b1t.name
|
|
COMMENT= Prometheus exporter for redis stats
|
|
|
|
LICENSE= MIT
|
|
|
|
USES= go
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= oliver006
|
|
|
|
GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME}
|
|
GO_TARGET= github.com/${GH_ACCOUNT}/${PORTNAME}
|
|
|
|
PLIST_FILES= bin/redis_exporter
|
|
|
|
USE_RC_SUBR= redis_exporter
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/bin/redis_exporter ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|