Update version and docs a tiny bit
authorSimon J Mudd <sjmudd@pobox.com>
Wed, 10 Dec 2014 12:05:17 +0000 (13:05 +0100)
committerSimon J Mudd <sjmudd@pobox.com>
Wed, 10 Dec 2014 12:05:17 +0000 (13:05 +0100)
README.md
keys.txt
screen/screen.go
version/version.go

index df5651b..37b1395 100644 (file)
--- a/README.md
+++ b/README.md
@@ -5,10 +5,11 @@ pstop - a top-like program for MySQL
 
 pstop is a program which collects information from MySQL 5.6+'s
 performance_schema database and uses this information to display server
-load in real-time. This should also work for MariaDB 10.0 though I
-have not tested this at all. Data is shown by table or filename and the
+load in real-time. Data is shown by table or filename and the
 metrics also show how this is split between select, insert, update or
-delete activity.
+delete activity.  User activity is now shown showing the number of
+different hosts that connect with the same username and the actiity
+of those users.
 
 This program was started as a simple project to allow me to learn go,
 which I'd been following for a while, but hadn't used in earnest.  This
index 50563c6..a3e899a 100644 (file)
--- a/keys.txt
+++ b/keys.txt
@@ -3,7 +3,7 @@ it tells you.
 
                               --------
 
-pstop version 0.0.12 (C) 2014 Simon J Mudd <sjmudd@pobox.com>
+pstop version 0.1.0 (C) 2014 Simon J Mudd <sjmudd@pobox.com>
 
 Program to show the top I/O information by accessing information from the
 performance_schema schema. Ideas based on mysql-sys.
@@ -17,4 +17,5 @@ t - toggle between showing the statistics since resetting pstop started or
     you explicitly reset them (with 'z') [REL] or showing the statistics
     as collected from MySQL [ABS].
 z - reset statistics
-<tab> - change display modes between: latency, ops, file I/O and lock modes
+<tab> - change display modes between: latency, ops, file I/O, lock modes
+    and user mode.
index 1490adf..6a9a788 100644 (file)
@@ -91,7 +91,7 @@ func (s *TermboxScreen) DisplayHelp() {
        s.PrintAt(0, 9, "q - quit")
        s.PrintAt(0, 10, "t - toggle between showing time since resetting statistics or since P_S data was collected")
        s.PrintAt(0, 11, "z - reset statistics")
-       s.PrintAt(0, 12, "<tab> - change display modes between: latency, ops, file I/O and lock modes")
+       s.PrintAt(0, 12, "<tab> - change display modes between: latency, ops, file I/O, lock and user modes")
        s.PrintAt(0, 14, "Press h to return to main screen")
 }
 
index f4b3a27..0d16748 100644 (file)
@@ -2,7 +2,7 @@
 package version
 
 const (
-       version = "0.0.19"
+       version = "0.1.0"
 )
 
 // return the current application version