track_functions
A configuraton parameter determining whether function execution should be tracked
track_functions
is a configuration parameter determining whether function execution should be tracked.
track_functions
was added in PostgreSQL 8.4.
Usage
track_functions
must be set to one of the following values to track function execution:
pl
- track only procedural language functionsall
- track all functions, including C and SQL functions.
Statistics about function execution can be retrieved from the view pg_stat_user_functions
.
Default value
The default value for track_functions
is: none
.
Change history
- PostgreSQL 8.4
- added (commit 93c701ed)
References
- PostgreSQL documentation: track_functions