storeAppendPrintf(e,
"%s persistent connection counts:\n"
"\n"
- "\treq/\n"
- "\tconn count\n"
- "\t---- ---------\n",
+ "\t Requests\t Connection Count\n"
+ "\t --------\t ----------------\n",
descr);
for (int i = 0; i < PCONN_HIST_SZ; ++i) {
if (hist[i] == 0)
continue;
- storeAppendPrintf(e, "\t%4d %9d\n", i, hist[i]);
+ storeAppendPrintf(e, "\t%d\t%d\n", i, hist[i]);
}
}
int i = 0;
for (hash_link *walker = hid->next; walker; walker = hash_next(hid)) {
- storeAppendPrintf(e, "\t item %5d: %s\n", i, (char *)(walker->key));
+ storeAppendPrintf(e, "\t item %d:\t%s\n", i, (char *)(walker->key));
++i;
}
}