Thread: Count actual transaction per minute?
pgsql-general@postgresql.org Can anyone tell me how to measure _actual_ transactions per minute on a PostgreSQL server. I am not talking about using pgbench, as I am not interested in determining what is possible, but rather the actual count of queries / transactions being sent to the server. Melvin Davidson Folk Alley - All Folk - 24 Hours a day www.folkalley.com |
On Wed, May 12, 2010 at 09:12:43AM -0700, Melvin Davidson wrote: > Can anyone tell me how to measure _actual_ transactions per minute on a PostgreSQL server. I am not talking about usingpgbench, as I am not interested in determining what is possible, but rather the actual count of queries / transactionsbeing sent to the server. sure. run: select sum(xact_commit + xact_rollback) from pg_stat_database every minute, substract previous result from current, and you'll know your current tpm. Best regards, depesz -- Linkedin: http://www.linkedin.com/in/depesz / blog: http://www.depesz.com/ jid/gtalk: depesz@depesz.com / aim:depeszhdl / skype:depesz_hdl / gg:6749007
On May 12, 2010, at 9:12 AM, Melvin Davidson wrote:
Can anyone tell me how to measure _actual_ transactions per minute on a PostgreSQL server. I am not talking about using pgbench, as I am not interested in determining what is possible, but rather the actual count of queries / transactions being sent to the server.
Thanks very much! I put that query into a script that puts the initial result into a variable, sleeps for a minute, queries again into a second variable and subtracts the difference. Works fine. Melvin Davidson Folk Alley - All Folk - 24 Hours a day www.folkalley.com --- On Wed, 5/12/10, hubert depesz lubaczewski <depesz@depesz.com> wrote:
|