Implement API key for SlapbirdAPM

This commit is contained in:
swaggboi 2024-08-09 21:13:02 -04:00
parent fc46e4e958
commit e31dbcc9da
2 changed files with 7 additions and 0 deletions

View file

@ -7,3 +7,4 @@ requires 'XML::RSS';
requires 'Text::Markdown';
requires 'HTML::Restrict';
requires 'Roman::Unicode';
requires 'SlapbirdAPM::Agent::Mojo';

View file

@ -19,6 +19,12 @@ sub startup($self) {
$self->plugin('Config');
$self->plugin('TagHelpers::Pagination');
# Alpha testing Slapbird APM
if (my $slapbirdapm_api_key = $self->config->{'slapbirdapm_api_key'}) {
$self->plugin('SlapbirdAPM', key => $slapbirdapm_api_key)
if $self->mode eq 'production'
}
# Helpers
$self->helper(pg => sub ($c) {
state $pg = Mojo::Pg->new($c->config->{$self->mode}{'pg_string'})