Re: PgAdmin 4.1.1 question

From: Dave Page <dpage(at)pgadmin(dot)org>
To: Ed Yu <edy(at)nwri(dot)com>
Cc: "pgadmin-support(at)postgresql(dot)org" <pgadmin-support(at)postgresql(dot)org>
Subject: Re: PgAdmin 4.1.1 question
Date: 2016-11-16 17:05:31
Message-ID: CA+OCxozszxP5PPJYfO6kQJtb_7FzWTMNnooTkfBeUNxkAKPQEw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-support

On Wed, Nov 16, 2016 at 4:58 PM, Ed Yu <edy(at)nwri(dot)com> wrote:
> Hi,
>
> I am trying to find more information about the PgAdmin 4 Tabbed Browser. In
> the page, we have a couple of graphs and the documentation said:
>
> The Dashboard tab provides a graphical analysis of the usage statistics for
> the selected server or database:
>
> The Server sessions or Database sessions graph displays the interactions
> with the managed server or database.
> The Transactions per second graph displays the commits, rollbacks, and total
> transactions per second that are taking place on the managed server or
> database.
> The Tuples In graph displays the number of tuples inserted, updated, and
> deleted into the managed server or database.
> The Tuples out graph displays the number of tuples fetched and returned into
> the managed server or database.
> The Block I/O graph displays the number of transactions processed by the
> managed server or database.
>
> Is there any other documentation explain what those graphs means? More
> specifically, the last graph "Block I/O" does not make a whole lot of sense
> to me... What does Block I/O has to do with the number of transactions
> processed?

That's a documentation bug by the looks of it - I'll get it corrected.
It's actually the number of blocks read and hit by Postgres:

blks_read - Number of disk blocks read in this database/server
blks_hit - Number of times disk blocks were found already in the
buffer cache, so that a read was not necessary (this only includes
hits in the PostgreSQL buffer cache, not the operating system's file
system cache)

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

In response to

Responses

Browse pgadmin-support by date

  From Date Subject
Next Message Ed Yu 2016-11-16 17:21:22 Re: PgAdmin 4.1.1 question
Previous Message Ed Yu 2016-11-16 16:58:21 PgAdmin 4.1.1 question