long ru_maxrss; /* maximum resident set size */
long ru_ixrss; /* integral shared memory size */
long ru_idrss; /* integral unshared data size */
long ru_isrss; /* integral unshared stack size */
but they are not added to the I_S.profiling table, so they are not available.
However, per-thread page faults (major/minor), swap statistics are still available.
After thread based profiling has been introduced in Percona Server 5.5 (http:// www.percona. com/doc/ percona- server/ 5.5/diagnostics /thread_ based_profiling .html), it already collects the following statistics per thread:
long ru_maxrss; /* maximum resident set size */
long ru_ixrss; /* integral shared memory size */
long ru_idrss; /* integral unshared data size */
long ru_isrss; /* integral unshared stack size */
but they are not added to the I_S.profiling table, so they are not available.
However, per-thread page faults (major/minor), swap statistics are still available.
I guess rest can be added to the table as well.