Index: libcfa/src/concurrency/stats.cfa
===================================================================
--- libcfa/src/concurrency/stats.cfa	(revision 18a75945135a177cd1022d41f29c3f8a4d9de7a9)
+++ libcfa/src/concurrency/stats.cfa	(revision fb15af5c5d9f2febef979a5c7e7734ae7b53dbaf)
@@ -79,12 +79,6 @@
 
 		if( flags & CFA_STATS_READY_Q ) {
-			double push_sur = (100.0 * ((double)ready.pick.push.success) / ready.pick.push.attempt);
-			double pop_sur  = (100.0 * ((double)ready.pick.pop .success) / ready.pick.pop .attempt);
-
 			double push_len = ((double)ready.pick.push.attempt) / ready.pick.push.success;
 			double pop_len  = ((double)ready.pick.pop .attempt) / ready.pick.pop .success;
-
-			double lpush_sur = (100.0 * ((double)ready.pick.push.lsuccess) / ready.pick.push.local);
-			double lpop_sur  = (100.0 * ((double)ready.pick.pop .lsuccess) / ready.pick.pop .local);
 
 			double lpush_len = ((double)ready.pick.push.local) / ready.pick.push.lsuccess;
@@ -93,25 +87,15 @@
 			__cfaabi_bits_print_safe( STDOUT_FILENO,
 				"----- %s \"%s\" (%p) - Ready Q Stats -----\n"
-				"- total threads run      : %'15" PRIu64 "\n"
-				"- total threads scheduled: %'15" PRIu64 "\n"
-				"- push average probe len : %'18.2lf, %'18.2lf%% (%'15" PRIu64 " attempts)\n"
-				"- pop  average probe len : %'18.2lf, %'18.2lf%% (%'15" PRIu64 " attempts)\n"
-				"- local push avg prb len : %'18.2lf, %'18.2lf%% (%'15" PRIu64 " attempts)\n"
-				"- local pop  avg prb len : %'18.2lf, %'18.2lf%% (%'15" PRIu64 " attempts)\n"
-				"- thread migrations      : %'15" PRIu64 "\n"
-				"- Idle Sleep -\n"
-				"-- halts                 : %'15" PRIu64 "\n"
-				"-- cancelled halts       : %'15" PRIu64 "\n"
-				"-- schedule wake         : %'15" PRIu64 "\n"
-				"-- wake on exit          : %'15" PRIu64 "\n"
+				"- total threads  : %'15" PRIu64 "run, %'15" PRIu64 "schd (%'" PRIu64 "mig )\n"
+				"- push avg probe : %'3.2lf, %'3.2lfl (%'15" PRIu64 " attempts, %'15" PRIu64 " locals)\n"
+				"- pop  avg probe : %'3.2lf, %'3.2lf%% (%'15" PRIu64 " attempts, %'15" PRIu64 " locals)\n"
+				"- Idle Sleep     : %'15" PRIu64 "h, %'15" PRIu64 "c, %'15" PRIu64 "w, %'15" PRIu64 "e\n"
 				"\n"
 				, type, name, id
 				, ready.pick.pop.success
 				, ready.pick.push.success
-				, push_len, push_sur, ready.pick.push.attempt
-				, pop_len , pop_sur , ready.pick.pop .attempt
-				, lpush_len, lpush_sur, ready.pick.push.local
-				, lpop_len , lpop_sur , ready.pick.pop .local
 				, ready.threads.migration
+				, push_len, lpush_len, ready.pick.push.attempt, ready.pick.push.local
+				, pop_len , lpop_len , ready.pick.pop .attempt, ready.pick.pop .local
 				, ready.sleep.halts, ready.sleep.cancels, ready.sleep.wakes, ready.sleep.exits
 			);
@@ -131,37 +115,21 @@
 				__cfaabi_bits_print_safe( STDOUT_FILENO,
 					"----- %s \"%s\" (%p) - I/O Stats -----\n"
-					"- total allocations      : %'15" PRIu64 "\n"
-					"-     fast allocations   : %'15" PRIu64 " (%'18.2lf) \n"
-					"-     fast enomem        : %'15" PRIu64 "\n"
-					"-     slow allocations   : %'15" PRIu64 "\n"
-					"-     revokes for alloc  : %'15" PRIu64 "\n"
-					"-     blocks  for alloc  : %'15" PRIu64 "\n"
-					"- total submits          : %'15" PRIu64 "\n"
-					"-     fast submits       : %'15" PRIu64 " (%'18.2lf) \n"
-					"-     slow submits       : %'15" PRIu64 "\n"
-					"- flush external submits : %'15" PRIu64 "\n"
-					"- io_uring_enter calls   : %'15" PRIu64 "\n"
-					"-     submits            : %'15" PRIu64 " (%'18.2lf) \n"
-					"-     completes          : %'15" PRIu64 " (%'18.2lf) \n"
-					"-     blocking calls     : %'15" PRIu64 "\n"
-					"- io_uring_enter EBUSYs  : %'15" PRIu64 "\n"
-					"- poller sleeping        : %'15" PRIu64 "\n"
+					"- total allocations : %'15" PRIu64 "f, %'" PRIu64 "s (%'2.2lff) \n"
+					"-     failures      : %'" PRIu64 "oom, %'" PRIu64 "rvk, %'" PRIu64 "blk\n"
+					"- total submits     : %'15" PRIu64 "f, %'15" PRIu64 "s (%'18.2lf) \n"
+					"- flush external    : %'" PRIu64 "\n"
+					"- io_uring_enter    : %'" PRIu64 " (%'" PRIu64 ", %'" PRIu64 " EBUSY)\n"
+					"-     submits       : %'15" PRIu64 " (%'18.2lf) \n"
+					"-     completes     : %'15" PRIu64 " (%'18.2lf) \n"
+					"- poller sleeping   : %'" PRIu64 "\n"
 					"\n"
 					, type,  name, id
-					, total_allocs
-					, io.alloc.fast, avgfasta
-					, io.alloc.fail
-					, io.alloc.slow
-					, io.alloc.revoke
-					, io.alloc.block
-					, total_submits
-					, io.submit.fast, avgfasts
-					, io.submit.slow
+					, io.alloc.fast, io.alloc.slow, avgfasta
+					, io.alloc.fail, io.alloc.revoke, io.alloc.block
+					, io.submit.fast, io.submit.slow, avgfasts
 					, io.flush.external
-					, io.calls.count
+					, io.calls.count, io.calls.blocks, io.calls.errors.busy
 					, io.calls.submitted, avgsubs
 					, io.calls.completed, avgcomp
-					, io.calls.blocks
-					, io.calls.errors.busy
 					, io.poller.sleeps
 				);
