File: ChangeLog

package info (click to toggle)
mtop 0.6.6-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 256 kB
  • ctags: 153
  • sloc: perl: 1,445; sh: 179; makefile: 49
file content (218 lines) | stat: -rw-r--r-- 5,553 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
Release v0-6-6
==============

mkill was missing from the 0.6.5 distribution.  

mtop
----

New feature to 'fold' select columns in main display so you 
can see more of the WHERE clause.  Use the F key to fold or
the --fold option from the command line.

Release v0-6-5
==============

mtop/mkill
----------

No longer need to be able to connect to the 'test' database for
startup.  Thanks to Thorsten Zachmann for pointing this out.


Release v0-6-4
==============

mtop
----
New options to control how many seconds elapse before a slow query is
highlighted.

mkill
----
Watch and kill long running queries.

Release v0-6-3
==============

mtop
----

Fixed negative slave offsets.  Just show 0.  Since the slave position
is checked after the master position, it might be a bit ahead.

Fixed slave offsets where the master and slave are on different
logfiles.  Instead of showing a wierd number, show '> master position'
since we know that we're at least that far behind plus any other
intervening log files.

Fixed Mac OSX curses bugs.

New Features:

 - Added ability to save options in a .mtoprc configuration file.

 - Added sysadmin recommendation page ('T').

 - Added queries/second to main header.

 - Added per second info to stats screen.

Added documentation for new features.  Expanded documentation on the
header section.

Release v0-6-2
==============

mtop
----

In main monitor window, strip out comments so we can see the actual
query.  Comments will still appear in the zoom/explain views.
Also removed leading spaces from display columns.

Release v0-6-1
==============

mtop
----

Added replication status page (screen command 'r').  This page updates
similar to the main screen.  Three types of replication status are
shown on this page: 1) master servers running on this machine, 2) slave
servers running on this machine, 3) slave servers attached to this 
master.

Changed debugging from a flag to a level.  Moved dbh connection 
into function which caches the dbh's.

Release v0-5-1
==============

mtop
----

Added new vars and stats screens.  The stats screen updates until a key
is pressed.  The vars screen shows the page and returns to the main screen.

Moved some of the common key handling routines into functions.

Reduced the amount of space statistics numbers take by only showing
2-4 significant digits.

Added mysqld memory usage for localhost in main header.  Currently uses 
/proc fs and only works for root or mysql user because either the pidfile 
may not have permissive permissions or the proc directory may not.

Release v0-4-1
==============

Makefile.PL
-----------

revision 1.8
date: 2002/02/18 05:04:53;  author: mdprewitt;
Ensure that PREFIX is used for install location instead of
SITEPREFIX.

revision 1.7
date: 2002/02/03 15:50:28;  author: mdprewitt;
Added AUTHOR/ABSTRACT definitions.  Added define to be able to track
Makefile.PL's version number in the generated Makefile.

mtop
----

revision 1.38
date: 2002/02/03 05:10:24;  author: mdprewitt;
Added documentation for the filter commands.
Uncombined the --filter-user command from the --user command.
--user looks for an equality, the filter command uses a regex.

revision 1.37
date: 2002/02/02 15:37:08;  author: mdprewitt;  
Added options to filter with regex by host/db/command/state/info

revision 1.36
date: 2002/01/27 17:07:53;  author: mdprewitt;  
Added info about broken ansi mode in win2k telnet.

revision 1.35
date: 2002/01/24 13:45:56;  author: mdprewitt;  
Fixed explanation of cache hit on help page.  It was showing the incorrect
variable name.

revision 1.34
date: 2002/01/24 03:49:13;  author: mdprewitt;  
Added documentation on how to grant permissions to the mysqltop user.

Release v0-3-1
==============

mtop
----

revision 1.33
date: 2002/01/16 22:26:25;  author: mdprewitt;  
Experimental feature to restrict by host.  The feature will remain but
the implementation may change.  Currently, the host in the process list
is a fqdn but shown as a name without the domain.  The current
implementation prompts for the name assuming it's a short name and checks
to see if the processlist host starts with the user entered host.

revision 1.32
date: 2002/01/15 12:59:56;  author: mdprewitt; 
Removed setpriority since it was degrading interactive performance and not
helping much.  Since mtop is mainly sleeping for keyboard activity, it
doesn't take too much cpu time.

Added a banner at the end of the process list to show the end of the
list.

Release v0-2-1
==============

mtop
----

Added --help option.

Added --version to only show version info.

Added --manualrefresh/interactive keyboard 'm' to prompt for screen refresh.

Override CORE::die to stop curses if it's running so that fatal error messages
can be seen.

Fixed header uptime display.

Screen refresh wasn't refreshing.  Added initial screen refresh and
refresh even if getch returns ERR which it seems to be doing if no
char is waiting in the buffer.

Thanks to Johan Ekenberg for the uptime patch, for noticing the
refresh problem and suggesting the --manualrefresh option.

Added q to 'more'

Added flush command

Fixed message clearing in between messages

Fixed errmsg (should be errstr)

Protect process display from newlines and squeeze multiple spaces.

Changed to get version number from make process.

Cleaned up screen before exiting.

Makefile.PL
-----------

Added --prefix option to allow relocation of binary without modifying
the distribution.

Changed default install prefix location to /usr/local/ (mtop will
install in /usr/local/bin).