File: Profiler.pod

package info (click to toggle)
liblog-report-perl 1.44-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 500 kB
  • sloc: perl: 2,338; makefile: 2
file content (47 lines) | stat: -rw-r--r-- 1,191 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
=encoding utf8

=head1 NAME

Log::Report::DBIC::Profiler - query profiler for DBIx::Class

=head1 INHERITANCE

 Log::Report::DBIC::Profiler
   is a DBIx::Class::Storage::Statistics

=head1 SYNOPSIS

  use Log::Report::DBIC::Profiler;
  $schema->storage->debugobj(Log::Report::DBIC::Profiler->new);
  $schema->storage->debug(1);

  # And maybe (if no exceptions expected from DBIC)
  $schema->exception_action(sub { panic @_ });

  # Log to syslog
  use Log::Report;
  dispatcher SYSLOG => 'myapp',
    identity => 'myapp',
    facility => 'local0',
    flags    => "pid ndelay nowait",
    mode     => 'DEBUG';

=head1 DESCRIPTION

This profile will log DBIx::Class queries via L<Log::Report|Log::Report> to a
selected back-end (via a dispatcher, see L<Log::Report::Dispatcher|Log::Report::Dispatcher>)

=head1 SEE ALSO

This module is part of Log-Report version 1.44,
built on December 22, 2025. Website: F<http://perl.overmeer.net/CPAN/>

=head1 LICENSE

For contributors see file ChangeLog.

This software is copyright (c) 2007-2025 by Mark Overmeer.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.