X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=i_s%2Fpl_by_user.go;h=f5bd83ff042e63ef317011d91bc2a4175c2483a5;hb=d38bc6ef7c4b5a914e5c3e492c1efdc84944fbd1;hp=ae5b4aa4cd90469546a53bcbf48706fe966338b8;hpb=193ae41f5473832680f1969a1e0bc19bc27909b8;p=pstop.git diff --git a/i_s/pl_by_user.go b/i_s/pl_by_user.go index ae5b4aa..f5bd83f 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 @@ -126,10 +126,6 @@ func (t pl_by_user_rows) Sort() { sort.Sort(ByRunTime(t)) } -func (r pl_by_user_row) Description() string { - return "no description" -} - func (t pl_by_user_rows) emptyRowContent() string { var r pl_by_user_row return r.row_content(r)