This library provides a metrics package which can be used to instrument code,
expose application metrics, and profile runtime performance in a flexible manner. WWW: https://github.com/armon/go-metrics
This commit is contained in:
parent
8e8dba7b15
commit
b474297561
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=418244
5 changed files with 49 additions and 0 deletions
|
@ -716,6 +716,7 @@
|
|||
SUBDIR += go-go.uuid
|
||||
SUBDIR += go-hashicorp-logutils
|
||||
SUBDIR += go-json-rest
|
||||
SUBDIR += go-metrics
|
||||
SUBDIR += go-pretty
|
||||
SUBDIR += go-raw
|
||||
SUBDIR += go-runewidth
|
||||
|
|
18
devel/go-metrics/Makefile
Normal file
18
devel/go-metrics/Makefile
Normal file
|
@ -0,0 +1,18 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= go-metrics
|
||||
PORTVERSION= 20160521
|
||||
CATEGORIES= devel
|
||||
|
||||
MAINTAINER= cs@FreeBSD.org
|
||||
COMMENT= Golang library for exporting performance and runtime metrics
|
||||
|
||||
LICENSE= MIT
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= armon
|
||||
GH_TAGNAME= fbf75676ee9c0a3a23eb0a4d9220a3612cfbd1ed
|
||||
USES= go
|
||||
GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME}
|
||||
|
||||
.include <bsd.port.mk>
|
3
devel/go-metrics/distinfo
Normal file
3
devel/go-metrics/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1468012940
|
||||
SHA256 (armon-go-metrics-20160521-fbf75676ee9c0a3a23eb0a4d9220a3612cfbd1ed_GH0.tar.gz) = 4caaa4252b3c173b3ff8179961f779fd98d73f28fe6c5f2dfc91fd4fe3a34dd9
|
||||
SIZE (armon-go-metrics-20160521-fbf75676ee9c0a3a23eb0a4d9220a3612cfbd1ed_GH0.tar.gz) = 13744
|
5
devel/go-metrics/pkg-descr
Normal file
5
devel/go-metrics/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
This library provides a metrics package which can be used to instrument code,
|
||||
expose application metrics, and profile runtime performance in a flexible
|
||||
manner.
|
||||
|
||||
WWW: https://github.com/armon/go-metrics
|
22
devel/go-metrics/pkg-plist
Normal file
22
devel/go-metrics/pkg-plist
Normal file
|
@ -0,0 +1,22 @@
|
|||
%%GO_LIBDIR%%/%%GO_PKGNAME%%.a
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/LICENSE
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/README.md
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/const_unix.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/const_windows.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/datadog/dogstatsd.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/datadog/dogstatsd_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/inmem.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/inmem_signal.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/inmem_signal_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/inmem_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/metrics.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/metrics_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/prometheus/prometheus.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/sink.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/sink_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/start.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/start_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/statsd.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/statsd_test.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/statsite.go
|
||||
%%GO_SRCDIR%%/%%GO_PKGNAME%%/statsite_test.go
|
Loading…
Reference in a new issue