Displaying 1 result from an estimated 1 matches for "stats_dentry_lookup_count".
2009 Apr 29
0
Mail statistics
I just committed a mail statistics gathering patch to v1.2:
http://hg.dovecot.org/dovecot-1.2/rev/fdaf0bda70d5
It keeps track of:
struct mail_private {
..
/* open(), stat(), .. */
unsigned long stats_dentry_lookup_count;
/* fstat() mostly */
unsigned long stats_attr_lookup_count;
/* number of files we've opened and read */
unsigned long stats_files_read_count;
/* number of bytes we've had to read from files */
unsigned long long stats_files_read_bytes;...