pg_stat_ssl
是一个统计视图,显示客户端连接的SSL状态信息。
pg_stat_ssl
在 PostgreSQL 9.5 中添加。
按PostgreSQL版本定义
pg_stat_ssl (PostgreSQL 18)
View "pg_catalog.pg_stat_ssl" Column | Type | Collation | Nullable | Default ---------------+---------+-----------+----------+--------- pid | integer | | | ssl | boolean | | | version | text | | | cipher | text | | | bits | integer | | | client_dn | text | | | client_serial | numeric | | | issuer_dn | text | | |
文档: pg_stat_ssl
pg_stat_ssl (PostgreSQL 17)
View "pg_catalog.pg_stat_ssl" Column | Type | Collation | Nullable | Default ---------------+---------+-----------+----------+--------- pid | integer | | | ssl | boolean | | | version | text | | | cipher | text | | | bits | integer | | | client_dn | text | | | client_serial | numeric | | | issuer_dn | text | | |
文档: pg_stat_ssl
pg_stat_ssl (PostgreSQL 16)
View "pg_catalog.pg_stat_ssl" Column | Type | Collation | Nullable | Default ---------------+---------+-----------+----------+--------- pid | integer | | | ssl | boolean | | | version | text | | | cipher | text | | | bits | integer | | | client_dn | text | | | client_serial | numeric | | | issuer_dn | text | | |
文档: pg_stat_ssl
pg_stat_ssl (PostgreSQL 15)
View "pg_catalog.pg_stat_ssl" Column | Type | Collation | Nullable | Default ---------------+---------+-----------+----------+--------- pid | integer | | | ssl | boolean | | | version | text | | | cipher | text | | | bits | integer | | | client_dn | text | | | client_serial | numeric | | | issuer_dn | text | | |
文档: pg_stat_ssl
pg_stat_ssl (PostgreSQL 14)
View "pg_catalog.pg_stat_ssl" Column | Type | Collation | Nullable | Default ---------------+---------+-----------+----------+--------- pid | integer | | | ssl | boolean | | | version | text | | | cipher | text | | | bits | integer | | | client_dn | text | | | client_serial | numeric | | | issuer_dn | text | | |
文档: pg_stat_ssl
pg_stat_ssl (PostgreSQL 13)
View "pg_catalog.pg_stat_ssl" Column | Type | Collation | Nullable | Default ---------------+---------+-----------+----------+--------- pid | integer | | | ssl | boolean | | | version | text | | | cipher | text | | | bits | integer | | | compression | boolean | | | client_dn | text | | | client_serial | numeric | | | issuer_dn | text | | |
文档: pg_stat_ssl
pg_stat_ssl (PostgreSQL 12)
View "pg_catalog.pg_stat_ssl" Column | Type | Collation | Nullable | Default ---------------+---------+-----------+----------+--------- pid | integer | | | ssl | boolean | | | version | text | | | cipher | text | | | bits | integer | | | compression | boolean | | | client_dn | text | | | client_serial | numeric | | | issuer_dn | text | | |
文档: pg_stat_ssl
pg_stat_ssl (PostgreSQL 11)
View "pg_catalog.pg_stat_ssl" Column | Type | Collation | Nullable | Default -------------+---------+-----------+----------+--------- pid | integer | | | ssl | boolean | | | version | text | | | cipher | text | | | bits | integer | | | compression | boolean | | | clientdn | text | | |
文档: pg_stat_ssl
pg_stat_ssl (PostgreSQL 10)
View "pg_catalog.pg_stat_ssl" Column | Type | Collation | Nullable | Default -------------+---------+-----------+----------+--------- pid | integer | | | ssl | boolean | | | version | text | | | cipher | text | | | bits | integer | | | compression | boolean | | | clientdn | text | | |
文档: pg_stat_ssl
pg_stat_ssl (PostgreSQL 9.6)
View "pg_catalog.pg_stat_ssl" Column | Type | Modifiers -------------+---------+----------- pid | integer | ssl | boolean | version | text | cipher | text | bits | integer | compression | boolean | clientdn | text |
文档: pg_stat_ssl
pg_stat_ssl (PostgreSQL 9.5)
View "pg_catalog.pg_stat_ssl" Column | Type | Modifiers -------------+---------+----------- pid | integer | ssl | boolean | version | text | cipher | text | bits | integer | compression | boolean | clientdn | text |
文档: pg_stat_ssl
变更历史
- PostgreSQL 14
- 删除
compression
列 (提交 f9264d15)
- 删除
- PostgreSQL 13
- 仅显示具有连接的进程,即排除不接收网络连接的各种辅助进程 (提交 5c46e7d8)
- PostgreSQL 12
- PostgreSQL 9.5
- 添加 (提交 9029f4b3)
示例
示例内容 (PostgreSQL 11)
postgres=# SELECT * FROM pg_stat_ssl; pid | ssl | version | cipher | bits | compression | clientdn ------+-----+---------+------------------------+------+-------------+---------- 695 | f | | | | | 692 | f | | | | | 704 | t | TLSv1.3 | TLS_AES_256_GCM_SHA384 | 256 | f | 3424 | f | | | | | 690 | f | | | | | 689 | f | | | | | 691 | f | | | | | (7 rows)
参考文献
- PostgreSQL 文档: pg_stat_ssl