summaryrefslogtreecommitdiff
path: root/debian/control
blob: f291305d6e79bf413586cc06fa4f6df396d1a2af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Source: libdbix-profile-perl
Section: interpreters
Priority: optional
Build-Depends: debhelper (>= 3.0.5), perl (>= 5.6.0-17)
Maintainer: Ivan Kohler <ivan-debian@420.am>
Standards-Version: 3.5.1

Package: libdbix-profile-perl
Architecture: all
Depends: ${perl:Depends}, libtime-hires-perl, libdbi-perl
Description:  DBI query profiler
 DBIx::Profile is a quick and easy, and mostly transparent, profiler
 for scripts using DBI.  It collects information on the query 
 level, and keeps track of first, failed, normal, and total amounts
 (count, wall clock, CPU time) for each function on the query.
 .
 NOTE: DBIx::Profile use Time::HiRes to clock the wall time and
       the old standby times() to clock the CPU time.  The CPU time is
       pretty coarse.
 .
 DBIx::Profile can also trace the execution of queries.  It will print 
 a timestamp and the query that was called.  This is optional, and 
 occurs only when the environment variable DBIXPROFILETRACE is set 
 to 1. (ex: (bash) export DBIXPROFILETRACE=1).