The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use Dancer ':syntax';
register_admin_task({
tag => 'performance',
label => 'Poller Performance',
});
ajax '/ajax/content/admin/performance' => require_role admin => sub {
my $set = schema(vars->{'tenant'})->resultset('Virtual::PollerPerformance');
content_type('text/html');
template 'ajax/admintask/performance.tt', {
results => $set,
}, { layout => undef };
};
true;