Add system view pg_stat_ssl
Magnus Hagander <magnus@hagander.net>
Add system view pg_stat_ssl This view shows information about all connections, such as if the connection is using SSL, which cipher is used, and which client certificate (if any) is used. Reviews by Alex Shulgin, Heikki Linnakangas, Andres Freund & Michael Paquier
Files
| Path | Change | +/− |
|---|---|---|
| doc/src/sgml/monitoring.sgml | modified | +77 −0 |
| src/backend/catalog/system_views.sql | modified | +11 −0 |
| src/backend/libpq/be-secure-openssl.c | modified | +104 −0 |
| src/backend/postmaster/pgstat.c | modified | +60 −0 |
| src/backend/utils/adt/pgstatfuncs.c | modified | +30 −3 |
| src/include/catalog/catversion.h | modified | +1 −1 |
| src/include/catalog/pg_proc.h | modified | +1 −1 |
| src/include/libpq/libpq-be.h | modified | +5 −0 |
| src/include/pgstat.h | modified | +21 −0 |
| src/test/regress/expected/rules.out | modified | +10 −2 |