A small reduction in number of lines can be made by using the -t or -S option of dprofpp. From the man-page:
-t Display subroutine call tree to stdout. Subroutine statis +tics are not displayed. When a function is called multiple consecu +tive times at the same calling level then it is displayed once +with a repeat count. -S Display merged subroutine call tree to stdout. Statistics + are displayed for each branch of the tree. When a function is called multiple (not necessarily consec +utive) times in the same branch then all these calls go into one +branch of the next level. A repeat count is output together with + com- bined inclusive, exclusive and kids time. Branches are sorted w.r.t. inclusive time.
you could use this, together with 'grep' to get info on the modules you really want to (not) see. For instance:
dprofpp -S | grep -v 'BEGIN'
or
dprofpp -S | egrep 'Showme|MeToo'

In reply to Re: Simplifying dprofpp Output by eXile
in thread Simplifying dprofpp Output by djantzen

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.