mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
app-metrics/nginx-lua-prometheus: library to export nginx metrics to prometheus
Copyright: Sony Interactive Entertainment Inc. Package-Manager: Portage-2.3.51, Repoman-2.3.12 Signed-off-by: William Hubbs <williamh@gentoo.org>
This commit is contained in:
committed by
William Hubbs
parent
42aba792dd
commit
98fac23725
1
app-metrics/nginx-lua-prometheus/Manifest
Normal file
1
app-metrics/nginx-lua-prometheus/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST nginx-lua-prometheus-0.1_pre20170610.tar.gz 10307 BLAKE2B b08fcb126a6d7034c143c7e96709f3f2751d90f60f6b9225f55ed46f7f211ebcf5f1688bd8b2c82286e329dd23e09a5163ad316ba6568755936253e8e55590f1 SHA512 df1022a88e82e388e68146f81e51a53f9b0c1a14a43d58e468d258ac0ca9875c1c88af44c46c91d89dc7fc1fef0ffebdb9163f886d85fde995e61e2cac3b5c81
|
||||
8
app-metrics/nginx-lua-prometheus/metadata.xml
Normal file
8
app-metrics/nginx-lua-prometheus/metadata.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>williamh@gentoo.org</email>
|
||||
<name>William Hubbs</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
@@ -0,0 +1,33 @@
|
||||
# Copyright 2019 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
# This is the upstream tag which corresponds to this release.
|
||||
# It needs to be updated with every bump.
|
||||
TAG="0.1-20170610"
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="Library that exports Nginx metrics to Prometheus"
|
||||
HOMEPAGE="https://github.com/knyar/nginx-lua-prometheus"
|
||||
SRC_URI="https://github.com/knyar/${PN}/archive/${TAG}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
COMMON_DEPEND=">=dev-lang/lua-5.1:="
|
||||
DEPEND="${COMMON_DEPEND}"
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
www-servers/nginx[nginx_modules_http_lua]"
|
||||
BDEPEND="${COMMON_DEPEND}
|
||||
virtual/pkgconfig"
|
||||
|
||||
S="${WORKDIR}/${PN}-${TAG}"
|
||||
|
||||
src_install() {
|
||||
insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)"/${PN}
|
||||
doins prometheus.lua
|
||||
dodoc *.md
|
||||
}
|
||||
Reference in New Issue
Block a user