X-Git-Url: http://git.iain.cx/?p=pstop.git;a=blobdiff_plain;f=i_s%2Fpl_by_user.go;h=576045b1c2b5ad8498b86f1b388c28a70b001cfe;hp=ae5b4aa4cd90469546a53bcbf48706fe966338b8;hb=99e8324ae6cc0c84dd9ced4486b4d7b6c049790c;hpb=6cd1819c4e354d974794363d71d10a9902ab627e diff --git a/i_s/pl_by_user.go b/i_s/pl_by_user.go index ae5b4aa..576045b 100644 --- a/i_s/pl_by_user.go +++ b/i_s/pl_by_user.go @@ -43,7 +43,7 @@ xxxxxxxxxxxxxx|hh:mm:ss 100.0%|9999 9999|9999 999|100.0% 100.0% 100.0% 100.0% 1 func (r *pl_by_user_row) headings() string { return fmt.Sprintf("%-14s|%10s %6s|%4s %4s|%5s %3s|%6s %6s %6s %6s %6s|", - "username", "Run Time", "%", "Conn", "Actv", "Hosts", "DBs", "Select", "Insert", "Update", "Delete", "Other") + "User", "Run Time", "%", "Conn", "Actv", "Hosts", "DBs", "Select", "Insert", "Update", "Delete", "Other") } // generate a printable result @@ -74,7 +74,7 @@ func (r *pl_by_user_row) row_content(totals pl_by_user_row) string { // generate a row of totals from a table func (t pl_by_user_rows) totals() pl_by_user_row { var totals pl_by_user_row - totals.username = "TOTALS" + totals.username = "Totals" for i := range t { totals.runtime += t[i].runtime