line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
use Mojo::Base -base, -signatures; |
2
|
4
|
|
|
4
|
|
25
|
|
|
4
|
|
|
|
|
9
|
|
|
4
|
|
|
|
|
25
|
|
3
|
|
|
|
|
|
|
use Sentry::Hub; |
4
|
4
|
|
|
4
|
|
1826
|
use Sentry::Hub::Scope; |
|
4
|
|
|
|
|
7
|
|
|
4
|
|
|
|
|
27
|
|
5
|
4
|
|
|
4
|
|
104
|
use Sentry::Integration::DBI; |
|
4
|
|
|
|
|
12
|
|
|
4
|
|
|
|
|
17
|
|
6
|
4
|
|
|
4
|
|
1591
|
use Sentry::Integration::DieHandler; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
39
|
|
7
|
4
|
|
|
4
|
|
1724
|
use Sentry::Integration::MojoUserAgent; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
35
|
|
8
|
4
|
|
|
4
|
|
1654
|
use Sentry::Integration::LwpUserAgent; |
|
4
|
|
|
|
|
11
|
|
|
4
|
|
|
|
|
26
|
|
9
|
4
|
|
|
4
|
|
1604
|
|
|
4
|
|
|
|
|
12
|
|
|
4
|
|
|
|
|
25
|
|
10
|
|
|
|
|
|
|
my @Global_integrations = ( |
11
|
|
|
|
|
|
|
Sentry::Integration::DieHandler->new, |
12
|
|
|
|
|
|
|
Sentry::Integration::DBI->new, |
13
|
|
|
|
|
|
|
Sentry::Integration::MojoUserAgent->new, |
14
|
|
|
|
|
|
|
Sentry::Integration::LwpUserAgent->new, |
15
|
|
|
|
|
|
|
); |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
my @all_integrations = (@Global_integrations, $custom_integrations->@*); |
18
|
17
|
|
|
17
|
0
|
544
|
foreach my $integration (grep { !$_->initialized } @all_integrations) { |
|
17
|
|
|
|
|
29
|
|
|
17
|
|
|
|
|
29
|
|
|
17
|
|
|
|
|
29
|
|
19
|
17
|
|
|
|
|
56
|
$integration->setup_once( |
20
|
17
|
|
|
|
|
39
|
Sentry::Hub::Scope->can('add_global_event_processor'), |
|
68
|
|
|
|
|
355
|
|
21
|
12
|
|
|
|
|
212
|
Sentry::Hub->can('get_current_hub')); |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
$integration->initialized(1); |
24
|
|
|
|
|
|
|
} |
25
|
12
|
|
|
|
|
48
|
} |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1; |