How to get table pg_stat_user_functions.

时间:2023-03-09 20:43:48
How to get table pg_stat_user_functions.

修改配置文件postgres.conf

track_functions = all                   # none, pl, all

或者 在当前事物中设置

postgres=# set track_functions = 'all';
postgres=# select * from pg_stat_user_functions ;
funcid | schemaname | funcname | calls | total_time | self_time
--------+------------+----------+-------+------------+-----------
(0 rows)

修改完成后,重启数据库,就会有数据了。