pg_stat_activity.waiting_start

From: Joel Jacobson <joel(at)trustly(dot)com>
To: Pg Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: pg_stat_activity.waiting_start
Date: 2016-12-24 01:20:04
Message-ID: CAASwCXcnCrm0HE13uw8V0ZptAWXUoKU9_NQhm8xsGZ3RhYR6fg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi hackers,

We already have xact_start, query_start and backend_start
to get the timestamptz for when different things happened.

I would like to propose adding a fourth such column, "waiting_start",
which would tell how long time a backend has been waiting.

The column would be NULL when waiting=FALSE.

While it's trivial to write a script that just polls pg_stat_activity
every second and keeps tack of when a backend started
waiting by just checking for any new waiting=TRUE rows,
it would be more convenient to just get the information from
pg_stat_activity directly.

The use-case would be e.g. monitoring tools
when you want to know how long time queries are waiting.

--
Joel Jacobson

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Joel Jacobson 2016-12-24 01:37:15 Re: pg_stat_activity.waiting_start
Previous Message David Steele 2016-12-24 00:34:37 Re: Remove lower limit on checkpoint_timeout?