Your IP : 108.162.216.192


Current Path : /var/www/element/data/element_backup.2025.12.07/wiki.element.ru/maintenance/dtrace/
Upload File :
Current File : /var/www/element/data/element_backup.2025.12.07/wiki.element.ru/maintenance/dtrace/counts.d

/*
 * This software is in the public domain.
 *
 * $Id: counts.d 10510 2005-08-15 01:46:19Z kateturner $
 */

#pragma D option quiet

self int tottime;
BEGIN {
	tottime = timestamp;
}

php$target:::function-entry
	@counts[copyinstr(arg0)] = count();
}

END {
	printf("Total time: %dus\n", (timestamp - tottime) / 1000);
	printf("# calls by function:\n");
	printa("%-40s %@d\n", @counts);
}