Re: Explain Output made Colourful

From: "Arguile" <arguile(at)lucentstudios(dot)com>
To: <pgsql-general(at)postgresql(dot)org>
Subject: Re: Explain Output made Colourful
Date: 2002-08-21 00:45:51
Message-ID: LLENKEMIODLDJNHBEFBOKECFFEAA.arguile@lucentstudios.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

I apologise if this is a duplicate, my MTA is really acting up and I haven't
seen it on the list. Incase it was the size of the attachments they're now
located here ( http://lucentstudios.com/pg/ ).

http://lucentstudios.com/pg/sample.html

Ian Harding wrote on August 19, 2002:
>
> I have a hard time looking at explain output, so I cobbled
> together this script to generate HTML with certain things
> highlighted in colors of your choosing. Please note that I know
> as much shell scripting as I do Swahili.
>
> If you can boil it down into a 5 line script, please do!

I did a quick rewrite, but then fell prey to feature creep ;). So it's now
in Perl and produces HTML tables. It takes EXPLAIN output on STDIN and is
configured through a stylesheet.

pgsql -U user -D database -c "EXPLAIN query" 2>&1 |
./explain > out.html

Or just call it with a text file:

perl explain in.txt out.html

The sample is a bit doctored as I embedded the stylesheet in it so people
could preview from email if they wanted. Output HTMLs require the CSS
(Cascading Style Sheet) to be in the same dir as them by default.

It doesn't use any modules (which means it's icky embedded HTML ;) so it
should work on any *nix system by default. Pretty rough but should work.

Have fun.

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Martijn van Oosterhout 2002-08-21 01:23:58 Re: Off-topic: a round of applause for Marc
Previous Message Alvaro Herrera 2002-08-20 22:05:26 Re: Timezone With Timestamp