Re: Tracing SQL statements per page/request

Поиск
Список
Период
Сортировка
От John R Pierce
Тема Re: Tracing SQL statements per page/request
Дата
Msg-id 48AC911A.5060001@hogranch.com
обсуждение исходный текст
Ответ на Tracing SQL statements per page/request  (Shahaf Abileah <shahaf@redfin.com>)
Ответы Re: Tracing SQL statements per page/request  (Shahaf Abileah <shahaf@redfin.com>)
Список pgsql-jdbc
Shahaf Abileah wrote:
>
> I’m looking for a general-purpose way to track and report the number
> of SQL statements issued to Postgres during the processing of a single
> page (a single URL0 on my company’s website (www.redfin.com
> <http://www.redfin.com/>).
>
> Does the Postgres JDBC driver have any features to help me do this?
>
> If not, can someone recommend another approach? In case it helps, we
> use hibernate as our O-R mapping so hibernate is responsible for
> generating most (not all) of our SQL queries (some are still issued by
> direct SQL). Also, we use the PostGIS JDBC driver, which is a wrapper
> around the standard PostgreSQL JDBC driver.
>

enable statement logging on the postgres server, then filter (grep) the
logfile to just list the connection and database you are interested in
and pipe that to wc -l




В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Shahaf Abileah
Дата:
Сообщение: Tracing SQL statements per page/request
Следующее
От: Guillaume Cottenceau
Дата:
Сообщение: Re: Tracing SQL statements per page/request