|
NAMEpoepp - Interprets POE::Devel::Profiler output SYNOPSIS perl -MPOE::Devel::Profiler myPOEapp.pl
poepp BasicSummary
CHANGES0.01First release! ABSTRACTInterprets and visualizes the data POE::Devel::Profiler produces DESCRIPTIONThis small program handles parsing the data and passing it to a Visualization module. Included in this distribution is one Visualizer, 'BasicSummary'. As I have time, more visualizers will be added, hopefully some nice graphs :) The desired Visualizer must be the first argument, and the rest of the arguments will be passed intact to the Visualizer for further processing. Visualizer Developer DocumentationOkay, you want to code your own Visualizer! All you need to do is look at POE::Devel::Profiler::Visualizer::BasicSummary to get a general idea of what to do. Requirements The visualizer must reside in the POE::Devel::Profiler::Visualizer namespace
The visualizer must define 2 subroutines: GET_ARGS and OUTPUT
GET_ARGS will be called at the start, the Visualizer can grab arguments from @ARGV
OUTPUT will be called with a pointer to the massive data structure :)
Data Structure??For now, the source to POE::Devel::Profiler::Parser contains the entire data structure, play around with Devel::Dumper if necessary :( SEE ALSO L<POE>
L<POE::Devel::Profiler::Parser>
L<POE::Devel::Profiler::Visualizer::BasicSummary>
AUTHORApocalypse <apocal@cpan.org> COPYRIGHT AND LICENSECopyright 2004 by Apocalypse This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|