1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

New port: databases/rubygem-peek-mysql2

Take a peek into the MySQL queries made during your application's requests.

Things this peek view provides:
- Total number of MySQL queries called during the request
- The duration of the queries made during the request

WWW: https://github.com/peek/peek-mysql2
This commit is contained in:
Torsten Zuehlsdorff 2017-08-24 09:02:01 +00:00
parent 30d52e1ff9
commit 55ba635f26
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=448653
4 changed files with 34 additions and 0 deletions

View File

@ -961,6 +961,7 @@
SUBDIR += rubygem-mysql2
SUBDIR += rubygem-openid-redis-store
SUBDIR += rubygem-paranoia
SUBDIR += rubygem-peek-mysql2
SUBDIR += rubygem-pg
SUBDIR += rubygem-pg_array_parser
SUBDIR += rubygem-pghero

View File

@ -0,0 +1,23 @@
# $FreeBSD$
PORTNAME= peek-mysql2
PORTVERSION= 1.2.0
CATEGORIES= databases rubygems
MASTER_SITES= RG
MAINTAINER= tz@FreeBSD.org
COMMENT= Take a peek into the MySQL queries made
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
RUN_DEPENDS= rubygem-concurrent-ruby>=0:devel/rubygem-concurrent-ruby \
rubygem-concurrent-ruby-ext>=0:devel/rubygem-concurrent-ruby-ext \
rubygem-mysql2>=0:databases/rubygem-mysql2 \
rubygem-peek>=0.1.0:devel/rubygem-peek
NO_ARCH= yes
USES= gem
USE_RUBY= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1503565014
SHA256 (rubygem/peek-mysql2-1.2.0.gem) = 3fcd004dd193ffeb1acbdf0f081a8baa2c998ec49711f8d0077d02ee47e5752b
SIZE (rubygem/peek-mysql2-1.2.0.gem) = 7168

View File

@ -0,0 +1,7 @@
Take a peek into the MySQL queries made during your application's requests.
Things this peek view provides:
- Total number of MySQL queries called during the request
- The duration of the queries made during the request
WWW: https://github.com/peek/peek-mysql2