NAME Plack::Middleware::Debug::Mongo - Extend Plack::Middleware::Debug with MongoDB panels VERSION version 0.03 SYNOPSIS # inside your psgi app use Plack::Builder; my $app = sub {[ 200, [ 'Content-Type' => 'text/html' ], [ '
OK' ] ]}; my $options = { host => 'mongodb://mongo.example.com:29111', db_name => 'sampledb' }; builder { mount '/' => builder { enable 'Debug', panels => [ [ 'Mongo::ServerStatus', connection => $options ], [ 'Mongo::Database', connection => $options ], ]; $app; }; }; DESCRIPTION This distribution extends Plack::Middleware::Debug with some MongoDB panels. At the moment, listed below panels are available. PANELS Mongo::ServerStatus Display panel with MongoDB server status information. See Plack::Middleware::Debug::Mongo::ServerStatus for additional information. Mongo::Database Display panel with MongoDB database and its collections statistics. See Plack::Middleware::Debug::Mongo::Database for additional information. BUGS Please report any bugs or feature requests through the web interface at