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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
|
# You may distribute under the terms of either the GNU General Public License
# or the Artistic License (the same terms as Perl itself)
#
# (C) Paul Evans, 2018-2024 -- leonerd@leonerd.org.uk
package Net::Prometheus::PerlCollector 0.14;
use v5.14;
use warnings;
BEGIN {
our $VERSION = '0.14';
}
use constant HAVE_XS => defined eval {
require XSLoader;
XSLoader::load( __PACKAGE__, our $VERSION );
1;
};
use Net::Prometheus::Types qw( MetricSamples Sample );
our $DETAIL = 0;
=head1 NAME
C<Net::Prometheus::PerlCollector> - obtain statistics about the perl interpreter
=head1 SYNOPSIS
=for highlighter language=perl
use Net::Prometheus;
use Net::Prometheus::PerlCollector;
my $client = Net::Prometheus->new;
$client->register( Net::Prometheus::PerlCollector->new );
=head1 DESCRIPTION
This module provides a class that collects metrics about the perl interpreter
itself.
=head2 Metrics
The following metrics are collected:
=for highlighter
=over 2
=item * C<perl_info>
An info gauge (i.e. whose value is always 1) with a C<version> label giving
the perl interpreter version
# HELP perl_info Information about the Perl interpreter
# TYPE perl_info gauge
perl_info{version="5.30.0"} 1
=back
If the optional XS module was compiled at build time, the following extra are
also reported:
=over 2
=item * C<perl_heap_arenas>
A gauge giving the number of arenas the heap is split into.
=item * C<perl_heap_svs>
A gauge giving the total number of SVs allocated on the heap.
=back
# HELP perl_heap_arenas Number of arenas in the Perl heap
# TYPE perl_heap_arenas gauge
perl_heap_arenas 159
# HELP perl_heap_svs Number of SVs in the Perl heap
# TYPE perl_heap_svs gauge
perl_heap_svs 26732
Note that the way these metrics are collected requires counting them all every
time. While this code is relatively efficient, it is still a linear scan, and
may itself cause some slowdown of the process at the time it is collected, if
the heap has grown very large, containing a great number of SVs.
Extra detail can be obtained about the types of heap objects by setting
=for highlighter language=perl
$Net::Prometheus::PerlCollector::DETAIL = 1;
This will be slightly more expensive to count, but will yield in addition a
detailed breakdown by object type.
=for highlighter
# HELP perl_heap_svs_by_type Number of SVs classified by type
# TYPE perl_heap_svs_by_type gauge
perl_heap_svs_by_type{type="ARRAY"} 2919
perl_heap_svs_by_type{type="CODE"} 1735
perl_heap_svs_by_type{type="GLOB"} 2647
perl_heap_svs_by_type{type="HASH"} 470
perl_heap_svs_by_type{type="INVLIST"} 68
perl_heap_svs_by_type{type="IO"} 12
perl_heap_svs_by_type{type="NULL"} 8752
perl_heap_svs_by_type{type="REGEXP"} 171
perl_heap_svs_by_type{type="SCALAR"} 9958
This level of detail is unlikely to be useful for most generic production
purposes but may be helpful to set in specific processes when investigating
specific memory-related issues for a limited time.
For an even greater level of detail, set the value to 2 to additionally obtain
another breakdown of blessed objects by class:
# HELP perl_heap_svs_by_class Number of SVs classified by class
# TYPE perl_heap_svs_by_class gauge
...
perl_heap_svs_by_class{class="Net::Prometheus"} 1
perl_heap_svs_by_class{class="Net::Prometheus::PerlCollector"} 1
perl_heap_svs_by_class{class="Net::Prometheus::ProcessCollector::linux"} 1
Note that this will yield a large amount of output for any non-trivially sized
program, so should only be enabled under carefully-controlled conditions.
The value of this variable can be overridden on a per-collection basis by
passing the option
=for highlighter language=perl
Net::Prometheus->render( { perl_collector_detail => 1 } ); # or 2
This may be more convenient for short-term traces from exporters that parse
HTTP query parameters into collector options.
=for highlighter
GET .../metrics?perl_collector_detail=1
=cut
sub new
{
my $class = shift;
return bless {}, $class;
}
# Might as well keep these as constants
use constant
PERL_VERSION => ( $^V =~ m/^v(.*)$/ )[0];
sub collect
{
shift;
my ( $opts ) = @_;
local $DETAIL = $opts->{perl_collector_detail} if $opts and exists $opts->{perl_collector_detail};
my @ret = (
MetricSamples( "perl_info", gauge => "Information about the Perl interpreter",
[ Sample( "perl_info", [ version => PERL_VERSION ], 1 ) ] ),
);
if( HAVE_XS ) {
my ( $arenas, $svs, $svs_by_type, $svs_by_class ) = count_heap( $DETAIL );
push @ret,
MetricSamples( "perl_heap_arenas", gauge => "Number of arenas in the Perl heap",
[ Sample( "perl_heap_arenas", [], $arenas ) ] ),
MetricSamples( "perl_heap_svs", gauge => "Number of SVs in the Perl heap",
[ Sample( "perl_heap_svs", [], $svs ) ] );
if( $svs_by_type ) {
push @ret, MetricSamples( "perl_heap_svs_by_type", gauge => "Number of SVs classified by type",
[ map { Sample( "perl_heap_svs_by_type", [ type => $_ ], $svs_by_type->{$_} ) } sort keys %$svs_by_type ] );
}
if( $svs_by_class ) {
push @ret, MetricSamples( "perl_heap_svs_by_class", gauge => "Number of SVs classified by class",
[ map { Sample( "perl_heap_svs_by_class", [ class => $_ ], $svs_by_class->{$_} ) } sort keys %$svs_by_class ] );
}
}
return @ret;
}
=head1 AUTHOR
Paul Evans <leonerd@leonerd.org.uk>
=cut
0x55AA;
|