Numero di connessioni attive e connessioni rimanenti


21

Vorrei ottenere statistiche sul numero massimo di connessioni per un periodo di tempo.

Conosco la pg_stat_activityvista, mi piace select count(*) from pg_stat_activity, ma penso che questo metodo non sia molto intelligente.

Ci sono altre viste o tabelle che possono fornire le informazioni di cui ho bisogno?

Risposte:


39

Questo SQL ti aiuterà

select max_conn,used,res_for_super,max_conn-used-res_for_super res_for_normal 
from 
  (select count(*) used from pg_stat_activity) t1,
  (select setting::int res_for_super from pg_settings where name=$$superuser_reserved_connections$$) t2,
  (select setting::int max_conn from pg_settings where name=$$max_connections$$) t3

Risultato:

max_conn | used | res_for_super | res_for_normal 
---------+------+---------------+----------------
  100    |    2 |             3 |             95
(1 row)

Puoi metterlo in shell:

#!/bin/bash
for (( c=1; c<=3600; c++ ))
do
     gsql -U pgdba -W pgdba -p 6432 -c "sql" >> /home/pgdba/res_data.log
     sleep 1  # once per second
done

oppure è possibile registrare i risultati in una tabella, quindi eseguire

postgres=# copy restbl to '/home/pgdba/res.csv' csv header;

per ottenere il risultato del file CSV.

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.