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

New port: databases/rubygem-peek-pg

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

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

WWW: https://github.com/peek/peek-pg
This commit is contained in:
Torsten Zuehlsdorff 2017-08-24 09:06:59 +00:00
parent 55ba635f26
commit 161b795cf3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=448654
4 changed files with 34 additions and 0 deletions

View File

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

View File

@ -0,0 +1,23 @@
# $FreeBSD$
PORTNAME= peek-pg
PORTVERSION= 1.3.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-pg>=0:databases/rubygem-pg \
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 = 1503565492
SHA256 (rubygem/peek-pg-1.3.0.gem) = ec2c477f54a761df6a0825936441482e359cea447ac46d1e3f05fa037347d39f
SIZE (rubygem/peek-pg-1.3.0.gem) = 7168

View File

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