NEWS 39.9 KB
Newer Older
N
Nicolargo 已提交
1
==============================================================================
N
nicolargo 已提交
2 3 4 5 6 7 8 9
Glances Version 3
==============================================================================

Version 3.0
===========

Enhancements and new features:

10
    * Make the left side bar width dynamic in the Curse UI #1177
11
    * Add threads number in the process list #1259
12
    * A way to have only REST API available and disable WEB GUI access #1149
N
nicolargo 已提交
13
    * Replace Matplolib by Pygal #697
14
    * Docker module doesn't export details about stopped containers #1152
15
    * Add dynamic fields in all sections of the configuration file #1204
16
    * Make plugins disable and export CLI option dynamical #1173
17
    * Add a light mode for the console UI #1165
18
    * Refactor InfluxDB (API is now stable) #1166
N
nicolargo 已提交
19
    * Add deflate compression support to the RestAPI #1182
N
nicolargo 已提交
20
    * Remove graph export from Glances #1206
21
    * Add a code of conduct for Glances project's participants #1211
22
    * Context switches bottleneck identification #1212
A
Alessio Sergi 已提交
23
    * Take advantage of the psutil issue #1025 (Add process_iter(attrs, ad_value)) #1105
24
    * Nice Process Priority Configuration #1218
25
    * Display debug message if dep lib is not found #1224
26
    * Add a new output mode to stdout #1168
N
nicolargo 已提交
27
    * Huge refactor of the WebUI packaging thanks to @spike008t #1239
28
    * Add time zone to the current time #1249
29
    * Use https URLs for checking external IP #1253
30
    * Add labels support to Promotheus exporter #1255
31
    * Overlap in Web UI when monitoring a machine with 16 cpu threads #1265
N
nicolargo 已提交
32

N
nicolargo 已提交
33 34 35 36 37
    One more thing ! A new Grafana Dash is available with:
    * Network interface variable
    * Disk variable
    * Container CPU

38 39
Bugs corrected:

40
    * Crash in the Wifi plugin on my Laptop #1151
41
    * Failed to connect to bus: No such file or directory #1156
42
    * glances_plugin.py has a problem with specific docker output #1160
43 44
    * Key error 'address' in the IP plugin #1176
    * NameError: name 'mode' is not defined in case of interrupt shortly after starting the server mode #1175
45
    * Crash on startup: KeyError: 'hz_actual_raw' on Raspbian 9.1 #1170
46
    * Add missing mount-observe and system-observe interfaces #1179
47
    * OS specific arguments should be documented and reported #1180
48
    * 'ascii' codec can't encode character u'\U0001f4a9' in position 4: ordinal not in range(128) #1185
49
    * KeyError: 'memory_info' on stats sum #1188
50
    * Electron/Atom processes displayed wrong in process list #1192
51
    * Another encoding issue... With both Python 2 and Python 3 #1197
52
    * Glances do not exit when eating 'q' #1207
N
nicolargo 已提交
53
    * FreeBSD blackhole bug #1202
54
    * Glances crashes when mountpoint with non ASCII characters exists #1201
N
nicolargo 已提交
55
    * [WEB UI] Minor issue on the Web UI #1240
56
    * [Glances 3.0 RC1] Client/Server is broken #1244
N
nicolargo 已提交
57
    * Fixing horizontal scrolling #1248
58
    * Stats updated during export (thread issue) #1250
59
    * Glances --browser crashed when more than 40 glances servers on screen 78x45 #1256
60
    * OSX - Python 3 and empty percent and res #1251
61
    * Crashes when influxdb option set #1260
62
    * AMP for kernel process is not working #1261
63
    * Arch linux package (2.11.1-2) psutil (v5.4.1): RuntimeWarning: ignoring OSError #1203
64
    * Glances crash with extended process stats #1283 
65

66 67
Backward-incompatible changes:

A
Alessio Sergi 已提交
68
    * Support for Python 3.3 has been dropped (EOL 2017-09-29)
A
Alessio Sergi 已提交
69
    * Support for psutil < 5.3.0 has been dropped
70
    * Minimum supported Docker API version is now 1.21 (Docker plugins)
71
    * Support for InfluxDB < 0.9 is deprecated (InfluxDB exporter)
72 73
    * --disable-<plugin> no longer available (use --disable-plugin <plugin>)
    * --export-<exporter> no longer available (use --export <exporter>)
74

N
nicolargo 已提交
75 76
News command line options:

A
RESTful  
Alessio Sergi 已提交
77
    --disable-webui  Disable the WebUI (only RESTful API will respond)
N
nicolargo 已提交
78
    --enable-light   Enable the light mode for the UI interface
79 80 81 82 83
    --modules-list   Display plugins and exporters list
    --disable-plugin plugin1,plugin2
                     Disable a list of comma separated plugins
    --export exporter1,exporter2
                     Export stats to a comma separated exporters
84 85
    --stdout plugin1,plugin2.attribute
                     Display stats to stdout
N
nicolargo 已提交
86 87 88

News configuration keys in the glances.conf file:

N
nicolargo 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
Graph:

    [graph]
    # Configuration for the --export graph option
    # Set the path where the graph (.svg files) will be created
    # Can be overwrite by the --graph-path command line option
    path=/tmp
    # It is possible to generate the graphs automatically by setting the
    # generate_every to a non zero value corresponding to the seconds between
    # two generation. Set it to 0 to disable graph auto generation.
    generate_every=60
    # See followings configuration keys definitions in the Pygal lib documentation
    # http://pygal.org/en/stable/documentation/index.html
    width=800
    height=600
    style=DarkStyle

106 107 108 109 110 111 112 113 114 115 116 117 118 119
Processes list Nice value:

    [processlist]
    # Nice priorities range from -20 to 19.
    # Configure nice levels using a comma separated list.
    #
    # Nice: Example 1, non-zero is warning (default behavior)
    nice_warning=-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19
    #
    # Nice: Example 2, low priority processes escalate from careful to critical
    #nice_careful=1,2,3,4,5,6,7,8,9
    #nice_warning=10,11,12,13,14
    #nice_critical=15,16,17,18,19

120 121
Docker plugin (related to #1152)

N
nicolargo 已提交
122 123 124 125 126
    [docker]
    # By default, Glances only display running containers
    # Set the following key to True to display all containers
    all=False

127
All configuration file values (related to #1204)
128

129 130 131 132
    [influxdb]
    # It is possible to use dynamic system command
    prefix=`hostname`
    tags=foo:bar,spam:eggs,system:`uname -a`
133

N
nicolargo 已提交
134
==============================================================================
N
nicolargo 已提交
135
Glances Version 2
N
Nicolargo 已提交
136 137
==============================================================================

138 139 140
Version 2.11.1
==============

141
    * [WebUI] Sensors not showing on Web (issue #1142)
142
    * Client and Quiet mode don't work together (issue #1139)
143

144 145
Version 2.11
============
146

N
nicolargo 已提交
147 148
Enhancements and new features:

A
RESTful  
Alessio Sergi 已提交
149
    * New export plugin: standard and configurable RESTful exporter (issue #1129)
N
nicolargo 已提交
150 151
    * Add a JSON export module (issue #1130)
    * [WIP] Refactoring of the WebUI
N
nicolargo 已提交
152

153 154
Bugs corrected:

155
    * Installing GPU plugin crashes entire Glances (issue #1102)
N
nicolargo 已提交
156
    * Potential memory leak in Windows WebUI (issue #1056)
N
nicolargo 已提交
157
    * glances_network `OSError: [Errno 19] No such device` (issue #1106)
158
    * GPU plugin. <class 'TypeError'>: ... not JSON serializable"> (issue #1112)
N
nicolargo 已提交
159
    * PermissionError on macOS (issue #1120)
160
    * Cant move up or down in glances --browser (issue #1113)
161
    * Unable to give aliases to or hide network interfaces and disks (issue #1126)
162
    * `UnicodeDecodeError` on mountpoints with non-breaking spaces (issue #1128)
163

N
nicolargo 已提交
164 165 166 167
Installation:

    * Create a Snap of Glances (issue #1101)

N
nicolargo 已提交
168 169
Version 2.10
============
N
Nicolargo 已提交
170

171 172
Enhancements and new features:

173
    * New plugin to scan remote Web sites (URL) (issue #981)
174
    * Add trends in the Curses interface (issue #1077)
175
    * Add new repeat function to the action (issue #952)
N
nicolargo 已提交
176 177 178
    * Use -> and <- arrows keys to switch between processing sort (issue #1075)
    * Refactor __init__ and main scripts (issue #1050)
    * [WebUI] Improve WebUI for Windows 10 (issue #1052)
179

180 181
Bugs corrected:

182
    * StatsD export prefix option is ignored (issue #1074)
183
    * Some FS and LAN metrics fail to export correctly to StatsD (issue #1068)
184
    * Problem with non breaking space in file system name (issue #1065)
185
    * TypeError: string indices must be integers (Network plugin) (issue #1054)
186
    * No Offline status for timeouted ports? (issue #1084)
187
    * When exporting, uptime values loop after 1 day (issue #1092)
N
Nicolargo 已提交
188

N
nicolargo 已提交
189 190 191 192 193 194
Installation:

  * Create a package.sh script to generate .DEB, .RPM and others... (issue #722)
  ==> https://github.com/nicolargo/glancesautopkg
  * OSX: can't python setup.py install due to python 3.5 constraint (issue #1064)

N
nicolargo 已提交
195 196 197
Version 2.9.1
=============

198 199 200
Bugs corrected:

    * Glances PerCPU issues with Curses UI on Android (issue #1071)
N
Nicolargo 已提交
201
    * Remove extra } in format string (issue #1073)
N
Nicolargo 已提交
202

N
nicolargo 已提交
203 204 205
Version 2.9.0
=============

N
nicolargo 已提交
206 207
Enhancements and new features:

N
nicolargo 已提交
208
    * Add a Prometheus export module (issue #930)
N
nicolargo 已提交
209
    * Add a Kafka export module (issue #858)
N
nicolargo 已提交
210
    * Port in the -c URI (-c hostname:port) (issue #996)
N
nicolargo 已提交
211

212 213
Bugs corrected:

N
nicolargo 已提交
214
    * On Windows --export-statsd terminates immediately and does not export (issue #1067)
215
    * Glances v2.8.7 issues with Curses UI on Android (issue #1053)
216
    * Fails to start, OSError in sensors_temperatures (issue #1057)
217
    * Crashs after long time running the glances --browser (issue #1059)
218
    * Sensor values don't refresh since psutil backend (issue #1061)
219
    * glances-version.db Permission denied (issue #1066)
220

N
nicolargo 已提交
221
Version 2.8.8
N
nicolargo 已提交
222 223
=============

N
nicolargo 已提交
224 225 226
Bugs corrected:

    * Drop requests to check for outdated Glances version
N
nicolargo 已提交
227
    *  Glances cannot load "Powersupply" (issue #1051)
N
nicolargo 已提交
228

N
nicolargo 已提交
229
Version 2.8.7
N
nicolargo 已提交
230 231
=============

N
nicolargo 已提交
232
Bugs corrected:
N
nicolargo 已提交
233

N
nicolargo 已提交
234
    * Windows OS - Global name standalone not defined again (issue #1030)
N
nicolargo 已提交
235

236
Version 2.8.6
N
nicolargo 已提交
237 238
=============

239
Bugs corrected:
N
nicolargo 已提交
240

N
nicolargo 已提交
241
    * Windows OS - Global name standalone not defined (issue #1030)
N
nicolargo 已提交
242

N
nicolargo 已提交
243
Version 2.8.5
N
nicolargo 已提交
244 245
=============

N
nicolargo 已提交
246
Bugs corrected:
N
nicolargo 已提交
247

N
nicolargo 已提交
248
    * Cloud plugin error: Name 'requests' is not defined (issue #1047)
N
nicolargo 已提交
249

N
nicolargo 已提交
250
Version 2.8.4
251 252
=============

N
nicolargo 已提交
253
Bugs corrected:
254

N
nicolargo 已提交
255
    * Correct issue on Travis CI test
256

257
Version 2.8.3
N
nicolargo 已提交
258 259
=============

N
nicolargo 已提交
260
Enhancements and new features:
N
Nicolargo 已提交
261

A
Alessio Sergi 已提交
262
    * Use new sensors-related APIs of psutil 5.1.0 (issue #1018)
263
    * Add a "Cloud" plugin to grab stats inside the AWS EC2 API (issue #1029)
N
nicolargo 已提交
264 265 266

Bugs corrected:

267
    * Unable to launch Glances on Windows (issue #1021)
268
    * Glances --export-influxdb starts Webserver (issue #1038)
269 270
    * Cut mount point name if it is too long (issue #1045)
    * TypeError: string indices must be integers in per cpu (issue #1027)
271
    * Glances crash on RPi 1 running ArchLinuxARM (issue #1046)
272

N
Nicolargo 已提交
273
Version 2.8.2
N
Nicolargo 已提交
274
=============
275

276 277
Bugs corrected:

N
Nicolargo 已提交
278
    * InfluxDB export in 2.8.1 is broken (issue #1026)
N
Nicolargo 已提交
279

N
nicolargo 已提交
280 281 282
Version 2.8.1
=============

N
Nicolargo 已提交
283 284 285 286
Enhancements and new features:

    * Enable docker plugin on Windows (issue #1009) - Thanks to @fraoustin

287 288
Bugs corrected:

289
    * Glances export issue with CPU and SENSORS (issue #1024)
290
    * Can't export data to a CSV file in Client/Server mode (issue #1023)
291
    * Autodiscover error while binding on IPv6 addresses (issue #1002)
292
    * GPU plugin is display when hitting '4' or '5' shortkeys (issue #1012)
N
nicolargo 已提交
293
    * Interrupts and usb_fiq (issue #1007)
N
Nicolargo 已提交
294
    * Docker image does not work in web server mode! (issue #1017)
295
    * IRQ plugin is not display anymore (issue #1013)
N
Nicolargo 已提交
296
    * Autodiscover error while binding on IPv6 addresses (issue #1002)
N
nicolargo 已提交
297

N
nicolargo 已提交
298 299 300
Version 2.8
===========

301 302
Changes:

A
Alessio Sergi 已提交
303 304
    * The curses interface on Windows is no more. The web-based interface is now
      the default. (issue #946)
305 306
    * The name of the log file now contains the name of the current user logged in,
      i.e., 'glances-USERNAME.log'.
307 308 309
    * IRQ plugin off by default. '--disable-irq' option replaced by '--enable-irq'.

Enhancements and new features:
310

311
    * GPU monitoring (limited to NVidia) (issue #170)
312
    * WebUI CPU consumption optimization (issue #836)
313
    * Not compatible with the new Docker API 2.0 (Docker 1.13) (issue #1000)
N
nicolargo 已提交
314
    * Add ZeroMQ exporter (issue #939)
N
nicolargo 已提交
315
    * Add CouchDB exporter (issue #928)
N
nicolargo 已提交
316
    * Add hotspot Wifi informations (issue #937)
317
    * Add default interface speed and automatic rate thresolds (issue #718)
318
    * Highlight max stats in the processes list (issue #878)
319
    * Docker alerts and actions (issue #875)
320
    * Glances API returns the processes PPID (issue #926)
321
    * Configure server cached time from the command line --cached-time (issue #901)
322
    * Make the log logger configurable (issue #900)
N
nicolargo 已提交
323
    * System uptime in export (issue #890)
N
nicolargo 已提交
324
    * Refactor the --disable-* options (issue #948)
325
    * PID column too small if kernel.pid_max is > 99999 (issue #959)
N
Nicolargo 已提交
326

327
Bugs corrected:
N
Nicolargo 已提交
328

N
Nicolargo 已提交
329
    * Glances RAID plugin Traceback (issue #927)
330
    * Default AMP crashes when 'command' given (issue #933)
331
    * Default AMP ignores `enable` setting (issue #932)
332
    * /proc/interrupts not found in an OpenVZ container (issue #947)
N
Nicolargo 已提交
333

N
nicolargo 已提交
334 335 336 337
Version 2.7.1
=============

Bugs corrected:
N
nicolargo 已提交
338

N
nicolargo 已提交
339 340
    * AMP plugin crashs on start with Python 3 (issue #917)
    * Ports plugin crashs on start with Python 3 (issue #918)
N
nicolargo 已提交
341

N
nicolargo 已提交
342 343
Version 2.7
===========
N
nicolargo 已提交
344

345 346 347 348
Backward-incompatible changes:

    * Drop support for Python 2.6 (issue #300)

N
nicolargo 已提交
349 350 351 352 353 354
Deprecated:

    * Monitoring process list module is replaced by AMP (see issue #780)
    * Use --export-graph instead of --enable-history (issue #696)
    * Use --path-graph instead of --path-history (issue #696)

355 356
Enhancements and new features:

357
    * Add Application Monitoring Process plugin (issue #780)
358
    * Add a new "Ports scanner" plugin (issue #734)
N
Nicolargo 已提交
359
    * Add a new IRQ monitoring plugin (issue #911)
360
    * Improve IP plugin to display public IP address (issue #646)
361
    * CPU additionnal stats monitoring: Context switch, Interrupts... (issue #810)
362
    * Filter processes by others stats (username) (issue #748)
N
nicolargo 已提交
363
    * [Folders] Differentiate permission issue and non-existence of a directory (issue #828)
364 365
    * [Web UI] Add cpu name in quicklook plugin (issue #825)
    * Allow theme to be set in configuration file (issue #862)
366
    * Display a warning message when Glances is outdated (issue #865)
N
nicolargo 已提交
367
    * Refactor stats history and export to graph. History available through API (issue #696)
368
    * Add Cassandra/Scylla export plugin (issue #857)
N
nicolargo 已提交
369
    * Huge pull request by Nicolas Hart to optimize the WebUI (issue #906)
N
Nicolargo 已提交
370
    * Improve documentation: http://glances.readthedocs.io (issue #872)
371

372 373
Bugs corrected:

374
    * Crash on launch when viewing temperature of laptop HDD in sleep mode (issue #824)
N
nicolargo 已提交
375
    * [Web UI] Fix folders plugin never displayed (issue #829)
376
    * Correct issue IP plugin: VPN with no internet access (issue #842)
377
    * Idle process is back on FreeBSD and Windows (issue #844)
378
    * On Windows, Glances try to display unexisting Load stats (issue #871)
379
    * Check CPU info (issue #881)
380
    * Unicode error on processlist on Windows server 2008 (french) (issue #886)
381 382 383
    * PermissionError/OSError when starting glances (issue #885)
    * Zeroconf problem with zeroconf_type = "_%s._tcp." % __appname__ (issue #888)
    * Zeroconf problem with zeroconf service name (issue #889)
384
    * [WebUI] Glances will not get past loading screen - Windows OS (issue #815)
N
Nicolargo 已提交
385
    * Improper bytes/unicode in glances_hddtemp.py (issue #887)
386
    * Top 3 processes are back in the alert summary
N
nicolargo 已提交
387

388 389
Code quality follow up: from 5.93 to 6.24 (source: https://scrutinizer-ci.com/g/nicolargo/glances)

390 391 392 393 394 395
Version 2.6.2
=============

Bugs corrected:

    * Crash with Docker 1.11 (issue #848)
396

N
Nicolargo 已提交
397 398 399 400
Version 2.6.1
=============

Enhancements and new features:
N
nicolargo 已提交
401

N
Nicolargo 已提交
402
    * Add a connector to Riemann (issue #822 by Greogo Nagy)
N
nicolargo 已提交
403

N
nicolargo 已提交
404 405 406 407 408 409
Bugs corrected:

    * Browsing for servers which are in the [serverlist] is broken (issue #819)
    * [WebUI] Glances will not get past loading screen (issue #815) opened 9 days ago
    * Python error after upgrading from 2.5.1 to 2.6 bug (issue #813)

410 411
Version 2.6
===========
N
nicolargo 已提交
412

413 414 415 416 417 418 419
Deprecations:

    * Add deprecation warning for Python 2.6.
      Python 2.6 support will be dropped in future releases.
      Please switch to at least Python 2.7 or 3.3+ as soon as possible.
      See http://www.snarky.ca/stop-using-python-2-6 for more information.

N
nicolargo 已提交
420 421
Enhancements and new features:

422
    * Add a connector to ElasticSearch (welcome to Kibana dashboard) (issue #311)
N
nicolargo 已提交
423
    * New folders' monitoring plugins (issue #721)
424
    * Use wildcard (regexp) to the hide configuration option for network, diskio and fs sections (issue #799 )
N
nicolargo 已提交
425
    * Command line arguments are now take into account in the WebUI (#789 by  @notFloran)
426
    * Change username for server and web server authentication (issue #693)
427
    * Add an option to disable top menu (issue #766)
N
Nicolargo 已提交
428
    * Add IOps in the DiskIO plugin (issue #763)
429
    * Add hide configuration key for FS Plugin (issue #736)
430
    * Add process summary min/max stats (issue #703)
431
    * Add timestamp to the CSV export module (issue #708)
432
    * Add a shortcut 'E' to delete process filter (issue #699)
433
    * By default, hide disk I/O ram1-** (issue #714)
434
    * When Glances is starting the notifications should be delayed (issue #732)
N
nicolargo 已提交
435 436
    * Add option (--disable-bg) to disable ANSI background colours (issue #738 by okdana)
    * [WebUI] add "pointer" cursor for sortable columns (issue #704 by @notFloran)
437
    * [WebUI] Make web page title configurable (issue #724)
438
    * Do not show interface in down state (issue #765)
N
nicolargo 已提交
439
    * InfluxDB > 0.9.3 needs float and not int for numerical value (issue#749 and issue#750 by nicolargo)
440 441

Bugs corrected:
N
nicolargo 已提交
442

443
    * Can't read sensors on a Thinkpad (issue #711)
444 445
    * InfluxDB/OpenTSDB: tag parsing broken (issue #713)
    * Grafana Dashboard outdated for InfluxDB 0.9.x (issue #648)
N
nicolargo 已提交
446 447 448 449 450 451
    * '--tree' breaks process filter on Debian 8 (issue #768)
    * Fix highlighting of process when it contains whitespaces (issue #546 by Alessio Sergi)
    * Fix RAID support in Python 3 (issue #793 by Alessio Sergi)
    * Use dict view objects to avoid issue (issue #758 by Alessio Sergi)
    * System exit if Cpu not supported by the Cpuinfo lib (issue #754 by nicolargo)
    * KeyError: 'cpucore' when exporting data to InfluxDB (issue #729) by nicolargo)
452 453 454

Others:
    * A new Glances docker container to monitor your Docker infrastructure is available here (issue #728): https://hub.docker.com/r/nicolargo/glances/
455
    * Documentation is now generated automatically thanks to Sphinx and the Alessio Sergi patch (https://glances.readthedocs.io/en/latest/)
N
nicolargo 已提交
456 457 458 459 460 461 462 463 464

Contributors summary:
    * Nicolas Hennion: 112 commits
    * Alessio Sergi: 55 commits
    * Floran Brutel: 19 commits
    * Nicolas Hart: 8 commits
    * @desbma: 4 commits
    * @dana: 2 commits
    * Damien Martin, Raju Kadam, @georgewhewell: 1 commit
N
nicolargo 已提交
465

N
nicolargo 已提交
466 467
Version 2.5.1
=============
N
nicolargo 已提交
468

N
nicolargo 已提交
469
Bugs corrected:
N
nicolargo 已提交
470

N
nicolargo 已提交
471 472 473
    * Unable to unlock password protected servers in browser mode bug (issue #694)
    * Correct issue when Glances is started in console on Windows OS
    * [WebUI] when alert is ongoing hide level enhancement (issue #692)
N
nicolargo 已提交
474

N
nicolargo 已提交
475 476 477
Version 2.5
===========

478 479
Enhancements and new features:

480
    * Allow export of Docker and sensors plugins stats to InfluxDB, StatsD... (issue #600)
481
    * Docker plugin shows IO and network bitrate (issue #520)
482
    * Server password configuration for the browser mode (issue #500)
483
    * Add support for OpenTSDB export (issue #638)
484
    * Add additional stats (iowait, steal) to the perCPU plugin (issue #672)
485
    * Support Fahrenheit unit in the sensor plugin using the --fahrenheit command line option (issue #620)
N
Nicolargo 已提交
486
    * When a process filter is set, display sum of CPU, MEM... (issue #681)
487
    * Improve the QuickLookplugin by adding hardware CPU info (issue #673)
N
Nicolargo 已提交
488
    * WebUI display a message if server is not available (issue #564)
489
    * Display an error if export is not used in the standalone/client mode (issue #614)
490
    * New --disable-quicklook, --disable-cpu, --disable-mem, --disable-swap, --disable-load tags (issue #631)
491
    * Complete refactoring of the WebUI thanks to the (awesome) Floran pull (issue #656)
N
nicolargo 已提交
492
    * Network cumulative /combination feature available in the WebUI (issue #552)
N
Nicolargo 已提交
493 494 495 496
    * IRIX mode off implementation (issue#628)
    * Short process name displays arguments (issue #609)
    * Server password configuration for the browser mode (issue #500)
    * Display an error if export is not used in the standalone/client mode (issue #614)
N
nicolargo 已提交
497

498 499
Bugs corrected:

500
    * The WebUI displays bad sensors stats (issue #632)
N
Nicolargo 已提交
501 502 503 504 505 506 507 508 509 510 511 512 513 514
    * Filter processes crashs with a bad regular expression pattern (issue #665)
    * Error with IP plugin (issue #651)
    * Crach with Docker plugin (issue #649)
    * Docker plugin crashs with webserver mode (issue #654)
    * Infrequently crashing due to assert (issue #623)
    * Value for free disk space is counterintuative on ext file systems (issue #644)
    * Try/catch for unexpected psutil.NoSuchProcess: process no longer exists (issue #432)
    * Fatal error using Python 3.4 and Docker plugin bug (issue #602)
    * Add missing new line before g man option (issue #595)
    * Remove unnecessary type="text/css" for link (HTML5) (issue #595)
    * Correct server mode issue when no network interface is available (issue #528)
    * Avoid crach on olds kernels (issue #554)
    * Avoid crashing if LC_ALL is not defined by user (issue #517)
    * Add a disable HDD temperature option on the command line (issue #515)
N
Nicolargo 已提交
515

516

517 518 519 520
Version 2.4.2
=============

Bugs corrected:
521

N
nicolargo 已提交
522
    * Process no longer exists (again) (issue #613)
523 524 525 526 527
    * Crash when "top extended stats" is enabled on OS X (issue #612)
    * Graphical percentage bar displays "?" (issue #608)
    * Quick look doesn't work (issue #605)
    * [Web UI] Display empty Battery sensors enhancement (issue #601)
    * [Web UI] Per CPU plugin has to be improved (issue #566)
528

529 530 531 532 533 534 535
Version 2.4.1
=============

Bugs corrected:

    * Fatal error using Python 3.4 and Docker plugin bug (issue #602)

N
Nicolargo 已提交
536 537 538
Version 2.4
===========

539 540 541 542
Changes:

    * Glances doesn't provide a system-wide configuration file by default anymore.
      Just copy it in any of the supported locations. See glances-doc.html for
N
Nicolargo 已提交
543
      more information. (issue #541)
A
Alessio Sergi 已提交
544 545 546
    * The default key bindings have been changed to:
      - 'u': sort processes by USER
      - 'U': show cumulative network I/O
A
Alessio Sergi 已提交
547
    * No more translations
548

A
Alessio Sergi 已提交
549
Enhancements and new features:
550

N
Nicolargo 已提交
551
    * The Web user interface is now based on AngularJS (issue #473, #508, #468)
N
nicolargo 已提交
552
    * Implement a 'quick look' plugin (issue #505)
A
Alessio Sergi 已提交
553
    * Add sort processes by USER (issue #531)
N
nicolargo 已提交
554 555 556
    * Add a new IP information plugin (issue #509)
    * Add RabbitMQ export module (issue #540 Thk to @Katyucha)
    * Add a quiet mode (-q), can be useful using with export module
557 558
    * Grab FAN speed in the Glances sensors plugin (issue #501)
    * Allow logical mounts points in the FS plugin (issue #448)
559
    * Add a --disable-hddtemp to disable HDD temperature module at startup (issue #515)
560
    * Increase alert minimal delay to 6 seconds (issue #522)
N
nicolargo 已提交
561
    * If the Curses application raises an exception, restore the terminal correctly (issue #537)
562 563 564

Bugs corrected:

N
nicolargo 已提交
565 566 567 568
    * Monitor list, all processes are take into account (issue #507)
    * Duplicated --enable-history in the doc (issue #511)
    * Sensors title is displayed if no sensors are detected (issue #510)
    * Server mode issue when no network interface is available (issue #528)
N
Nicolargo 已提交
569 570
    * DEBUG mode activated by default with Python 2.6 (issue #512)
    * Glances display of time trims the hours showing only minutes and seconds (issue #543)
N
nicolargo 已提交
571
    * Process list header not decorating when sorting by command (issue #551)
N
Nicolargo 已提交
572

573
Version 2.3
N
Nicolargo 已提交
574 575
===========

A
Alessio Sergi 已提交
576
Enhancements and new features:
577

578
    * Add the Docker plugin (issue #440) with per container CPU and memory monitoring (issue #490)
N
Nicolargo 已提交
579 580
    * Add the RAID plugin (issue #447)
    * Add actions on alerts (issue #132). It is now possible to run action (command line) by triggers. Action could contain {{tag}} (Mustache) with stat value.
N
Nicolargo 已提交
581
    * Add InfluxDB export module (--export-influxdb) (issue #455)
N
Nicolargo 已提交
582
    * Add StatsD export module (--export-statsd) (issue #465)
583
    * Refactor export module (CSV export option is now --export-csv). It is now possible to export stats from the Glances client mode (issue #463)
N
nclsHart 已提交
584
    * The Web inteface is now based on Bootstrap / RWD grid (issue #417, #366 and #461) Thanks to Nicolas Hart @nclsHart
N
Nicolargo 已提交
585
    * It is now possible, through the configuration file, to define if an alarm should be logged or not (using the _log option) (issue #437)
N
Nicolargo 已提交
586
    * You can now set alarm for Disk IO
N
Nicolargo 已提交
587 588
    * API: add getAllLimits and getAllViews methods (issue #481) and allow CORS request (issue #479)
    * SNMP client support NetApp appliance (issue #394)
589

590 591
Bugs corrected:

592
    *  R/W error with the glances.log file (issue #474)
593

594
Other enhancement:
595

596 597
    * Alert < 3 seconds are no longer displayed

598 599 600
Version 2.2.1
=============

601 602
    * Fix incorrect kernel thread detection with --hide-kernel-threads (issue #457)
    * Handle IOError exception if no /etc/os-release to use Glances on Synology DSM (issue #458)
603
    * Check issue error in client/server mode (issue #459)
N
Nicolargo 已提交
604

N
Nicolas Hennion 已提交
605 606 607
Version 2.2
===========

A
Alessio Sergi 已提交
608
Enhancements and new features:
N
Nicolargo 已提交
609 610 611 612

    * Add centralized curse interface with a Glances servers list to monitor (issue #418)
    * Add processes tree view (--tree) (issue #444)
    * Improve graph history feature (issue #69)
613
    * Extended stats is disable by default (use --enable-process-extended to enable it - issue #430)
N
Nicolargo 已提交
614 615
    * Add a short key ('F') and a command line option (--fs-free-space) to display FS free space instead of used space (issue #411)
    * Add a short key ('2') and a command line option (--disable-left-sidebar) to disable/enable the side bar (issue #429)
616
    * Add CPU times sort short key ('t') in the curse interface (issue #449)
N
Nicolargo 已提交
617 618
    * Refactor operating system detection for GNU/Linux operating system
    * Code optimization
N
Nicolargo 已提交
619 620 621

Bugs corrected:

622
    * Correct a bug with Glances pip install --user (issue #383)
N
Nicolargo 已提交
623 624
    * Correct issue on battery stat update (issue #433)
    * Correct issue on process no longer exist (issues #414 and #432)
N
Nicolas Hennion 已提交
625

N
Nicolargo 已提交
626 627 628 629 630 631 632 633 634
Version 2.1.2
=============

    Maintenance version (only needed for Mac OS X).

Bugs corrected:

    * Mac OS X: Error if Glances is not ran with sudo (issue #426)

N
Nicolargo 已提交
635 636 637 638
Version 2.1.1
=============

Enhancement:
N
Nicolargo 已提交
639

N
Nicolargo 已提交
640 641 642 643 644 645 646 647 648 649 650
    * Automaticaly compute top processes number for the current screen (issue #408)
    * CPU and Memory footprint optimization (issue #401)

Bugs corrected:

    * Mac OS X 10.9: Exception at start (issue #423)
    * Process no longer exists (issue #421)
    * Error with Glances Client with Python 3.4.1 (issue #419)
    * TypeError: memory_maps() takes exactly 2 arguments (issue #413)
    * No filesystem informations since Glances 2.0 bug enhancement (issue #381)

651 652 653
Version 2.1
===========

N
Nicolargo 已提交
654 655 656 657
    * Add user process filter feature
      User can define a process filter pattern (as a regular expression).
      The pattern could be defined from the command line (-f <pattern>)
      or by pressing the ENTER key in the curse interface.
N
Nicolargo 已提交
658
      For the moment, process filter feature is only available in standalone mode.
N
Nicolargo 已提交
659
    * Add extended processes informations for top process
660
      Top process stats availables: CPU affinity, extended memory information (shared, text, lib, datat, dirty, swap), open threads/files and TCP/UDP network sessions, IO nice level
N
Nicolargo 已提交
661
      For the moment, extended processes stats are only available in standalone mode.
662
    * Add --process-short-name tag and '/' key to switch between short/command line
N
Nicolargo 已提交
663
    * Create a max_processes key in the configuration file
664
      The goal is to reduce the number of displayed processes in the curses UI and
N
Nicolargo 已提交
665 666 667 668
      so limit the CPU footprint of the Glances standalone mode.
      The API always return all the processes, the key is only active in the curses UI.
      If the key is not define, all the processes will be displayed.
      The default value is 20 (processes displayed).
N
Nicolargo 已提交
669
      For the moment, this feature is only available in standalone mode.
670 671 672
    * Alias for network interfaces, disks and sensors
      Users can configure alias from the Glances configuration file.
    * Add Glances log message (in the /tmp/glances.log file)
N
Nicolargo 已提交
673
      The default log level is INFO, you can switch to the DEBUG mode using the -d option on the command line.
A
RESTful  
Alessio Sergi 已提交
674 675
    * Add RESTful API to the Web server mode
      RESTful API doc: https://github.com/nicolargo/glances/wiki/The-Glances-RESTFULL-JSON-API
676
    * Improve SNMP fallback mode for Cisco IOS, VMware ESXi
N
Nicolargo 已提交
677 678 679 680 681 682 683 684
    * Add --theme-white feature to optimize display for white background
    * Experimental history feature (--enable-history option on the command line)
      This feature allows users to generate graphs within the curse interface.
      Graphs are available for CPU, LOAD and MEM.
      To generate graph, click on the 'g' key.
      To reset the history, press the 'r' key.
      Note: This feature uses the matplotlib library.
    * CI: Improve Travis coverage
685 686 687

Bugs corrected:

N
Nicolargo 已提交
688 689 690
    * Quitting glances leaves a column layout to the current terminal (issue #392)
    * Glances crashes with malformed UTF-8 sequences in process command lines (issue #391)
    * SNMP fallback mode is not Python 3 compliant (issue #386)
691
    * Trouble using batinfo, hddtemp, pysensors w/ Python (issue #324)
N
Nicolargo 已提交
692

693

N
Nicolargo 已提交
694 695 696 697 698 699 700 701 702 703 704 705 706
Version 2.0.1
=============

Maintenance version.

Bugs corrected:

    * Error when displaying numeric process user names (#380)
    * Display users without username correctly (#379)
    * Bug when parsing configuration file (#378)
    * The sda2 partition is not seen by glances (#376)
    * Client crash if server is ended during XML request (#375)
    * Error with the Sensors module on Debian/Ubuntu (#373)
707
    * Windows don't view all processes (#319)
N
Nicolargo 已提交
708

709 710 711
Version 2.0
===========

N
Nicolargo 已提交
712
    Glances v2.0 is not a simple upgrade of the version 1.x but a complete code refactoring.
A
Alessio Sergi 已提交
713
    Based on a plugins system, it aims at providing an easy way to add new features.
A
Alessio Sergi 已提交
714 715 716
    - Core defines the basics and commons functions.
    - all stats are grabbed through plugins (see the glances/plugins source folder).
    - also outputs methods (Curse, Web mode, CSV) are managed as plugins.
N
Nicolargo 已提交
717

A
Alessio Sergi 已提交
718
    The Curse interface is almost the same than the version 1.7. Some improvements have been made:
N
Nicolargo 已提交
719 720
    - space optimisation for the CPU, LOAD and MEM stats (justified alignment)
    - CPU:
A
Alessio Sergi 已提交
721
        . CPU stats are displayed as soon as Glances is started
N
Nicolargo 已提交
722 723 724 725 726 727
        . steal CPU alerts are no more logged
    - LOAD:
        . 5 min LOAD alerts are no more logged
    - File System:
        . Display the device name (if space is available)
    - Sensors:
A
Alessio Sergi 已提交
728
        . Sensors and HDD temperature are displayed in the same block
N
Nicolargo 已提交
729 730 731 732 733
    - Process list:
        . Refactor columns: CPU%, MEM%, VIRT, RES, PID, USER, NICE, STATUS, TIME, IO, Command/name
        . The running processes status is highlighted
        . The process name is highlighted in the command line

A
Alessio Sergi 已提交
734 735
    Glances 2.0 brings a brand new Web Interface. You can run Glances in Web server mode and
    consult the stats directly from a standard Web Browser.
N
Nicolargo 已提交
736 737 738 739

    The client mode can now fallback to a simple SNMP mode if Glances server is not found on the remote machine.

    Complete release notes:
N
Nicolargo 已提交
740 741 742 743
    * Cut ifName and DiskName if they are too long in the curses interface (by Nicolargo)
    * Windows CLI is OK but early experimental (by Nicolargo)
    * Add bitrate limits to the networks interfaces (by Nicolargo)
    * Batteries % stats are now in the sensors list (by Nicolargo)
A
Alessio Sergi 已提交
744 745
    * Refactor the client/server password security: using SHA256 (by Nicolargo,
      based on Alessio Sergi's example script)
N
Nicolargo 已提交
746 747 748 749 750 751
    * Refactor the CSV output (by Nicolargo)
    * Glances client fallback to SNMP server if Glances one not found (by Nicolargo)
    * Process list: Highlight running/basename processes (by Alessio Sergi)
    * New Web server mode thk to the Bottle library (by Nicolargo)
    * Responsive design for Bottle interface (by Nicolargo)
    * Remove HTML output (by Nicolargo)
A
Alessio Sergi 已提交
752
    * Enable/disable for optional plugins through the command line (by Nicolargo)
N
Nicolargo 已提交
753 754
    * Refactor the API (by Nicolargo)
    * Load-5 alert are no longer logged (by Nicolargo)
A
Alessio Sergi 已提交
755
    * Rename In/Out by Read/Write for DiskIO according to #339 (by Nicolargo)
N
Nicolargo 已提交
756
    * Migrate from pysensors to py3sensors (by Alessio Sergi)
A
Alessio Sergi 已提交
757
    * Migration to psutil 2.x (by Nicolargo)
N
Nicolargo 已提交
758
    * New plugins system (by Nicolargo)
A
Alessio Sergi 已提交
759 760
    * Python 2.x and 3.x compatibility (by Alessio Sergi)
    * Code quality improvements (by Alessio Sergi)
N
Nicolargo 已提交
761 762
    * Refactor unitaries tests (by Nicolargo)
    * Development now follow the git flow workflow (by Nicolargo)
763

N
Nicolargo 已提交
764 765

==============================================================================
N
nicolargo 已提交
766
Glances Version 1
N
Nicolargo 已提交
767 768
==============================================================================

769 770 771
Version 1.7.7
=============

N
Nicolargo 已提交
772
    * Fix CVS export [issue #348]
A
Alessio Sergi 已提交
773
    * Adapt to psutil 2.1.1
N
Nicolargo 已提交
774 775
    * Compatibility with Python 3.4
    * Improve German update
N
Nicolas Hennion 已提交
776

N
Nicolas Hennion 已提交
777 778 779
Version 1.7.6
=============

780 781 782 783
    * Adapt to psutil 2.0.0 API
    * Fixed psutil 0.5.x support on Windows
    * Fix help screen in 80x24 terminal size
    * Implement toggle of process list display ('z' key)
N
Nicolas Hennion 已提交
784

N
Nicolas Hennion 已提交
785 786 787
Version 1.7.5
=============

A
Alessio Sergi 已提交
788
    * Force the PyPI installer to use the psutil branch 1.x (#333)
789

790 791 792
Version 1.7.4
=============

793
    * Add threads number in the task summary line (#308)
794
    * Add system uptime (#276)
795 796
    * Add CPU steal % to cpu extended stats (#309)
    * You can hide disk from the IOdisk view using the conf file (#304)
797
    * You can hide network interface from the Network view using the conf file
798 799
    * Optimisation of CPU consumption (around ~10%)
    * Correct issue #314: Client/server mode always asks for password
A
Alessio Sergi 已提交
800 801 802
    * Correct issue #315: Defining password in client/server mode doesn't work as intended
    * Correct issue #316: Crash in client server mode
    * Correct issue #318: Argument parser, try-except blocks never get triggered
803

N
Nicolas Hennion 已提交
804 805 806 807
Version 1.7.3
=============

    * Add --password argument to enter the client/server password from the prompt
N
Nicolas Hennion 已提交
808 809
    * Fix an issue with the configuration file path (#296)
    * Fix an issue with the HTML template (#301)
N
Nicolas Hennion 已提交
810

N
Nicolas Hennion 已提交
811 812 813 814 815 816 817 818 819
Version 1.7.2
=============

    * Console interface is now Microsoft Windows compatible (thk to @fraoustin)
    * Update documentation and Wiki regarding the API
    * Added package name for python sources/headers in openSUSE/SLES/SLED
    * Add FreeBSD packager
    * Bugs corrected

820 821 822
Version 1.7.1
=============

N
Nicolas Hennion 已提交
823 824 825
    * Fix IoWait error on FreeBSD / Mac OS
    * HDDTemp module is now Python v3 compatible
    * Don't warn a process is not running if countmin=0
A
Alessio Sergi 已提交
826
    * Add PyPI badge on the README.rst
N
Nicolas Hennion 已提交
827 828
    * Update documentation
    * Add document structure for http://readthedocs.org
829

N
Nicolas Hennion 已提交
830 831 832
Version 1.7
===========

N
Nicolas Hennion 已提交
833 834 835 836 837 838 839 840 841 842 843
    * Add monitored processes list
    * Add hard disk temperature monitoring (thanks to the HDDtemp daemon)
    * Add batteries capacities information (thanks to the Batinfo lib)
    * Add command line argument -r toggles processes (reduce CPU usage)
    * Add command line argument -1 to run Glances in per CPU mode
    * Platform/architecture is more specific now
    * XML-RPC server: Add IPv6 support for the client/server mode
    * Add support for local conf file
    * Add a uninstall script
    * Add getNetTimeSinceLastUpdate() getDiskTimeSinceLastUpdate() and getProcessDiskTimeSinceLastUpdate() in the API
    * Add more translation: Italien, Chinese
C
Carlos E. Garcia 已提交
844 845
    * and last but not least... up to 100 hundred bugs corrected / software and
    * docs improvements
N
Nicolas Hennion 已提交
846

847 848 849
Version 1.6.1
=============

N
Nicolas Hennion 已提交
850
    * Add per-user settings (configuration file) support
C
Carlos E. Garcia 已提交
851
    * Add -z/--nobold option for better appearance under Solarized terminal
N
Nicolas Hennion 已提交
852 853
    * Key 'u' shows cumulative net traffic
    * Work in improving autoUnit
854
    * Take into account the number of core in the CPU process limit
N
Nicolas Hennion 已提交
855 856 857
    * API improvment add time_since_update for disk, process_disk and network
    * Improve help display
    * Add more dummy FS to the ignore list
A
Alessio Sergi 已提交
858
    * Code refactory: psutil < 0.4.1 is deprecated (Thk to Alessio)
N
Nicolas Hennion 已提交
859 860 861
    * Correct a bug on the CPU process limit
    * Fix crash bug when specifying custom server port
    * Add Debian style init script for the Glances server
862

863 864 865 866
Version 1.6
===========

    * Configuration file: user can defines limits
867
    * In client/server mode, limits are set by the server side
868 869 870
    * Display limits in the help screen
    * Add per process IO (read and write) rate in B per second
      IO rate only available on Linux from a root account
871
    * If CPU iowait alert then sort by processes by IO rate
A
asergi 已提交
872
    * Per CPU display IOwait (if data is available)
873
    * Add password for the client/server mode (-P password)
A
asergi 已提交
874
    * Process column style auto (underline) or manual (bold)
875
    * Display a sort indicator (is space is available)
A
asergi 已提交
876
    * Change the table key in the help screen
877

N
Nicolas Hennion 已提交
878 879 880 881
Version 1.5.2
=============

    * Add sensors module (enable it with -e option)
N
Nicolas Hennion 已提交
882
    * Improve CPU stats (IO wait, Nice, IRQ)
N
Nicolas Hennion 已提交
883
    * More stats in lower space (yes it's possible)
N
Nicolas Hennion 已提交
884
    * Refactor processes list and count (lower CPU/MEM footprint)
N
Nicolas Hennion 已提交
885 886 887
    * Add functions to the RCP method
    * Completed unit test
    * and fixes...
N
Nicolas Hennion 已提交
888

N
Nicolas Hennion 已提交
889 890 891
Version 1.5.1
=============

A
Alessio Sergi 已提交
892 893
    * Patch for psutil 0.4 compatibility
    * Test psutil version before running Glances
N
Nicolas Hennion 已提交
894

895 896 897
Version 1.5
===========

A
asergi 已提交
898
    * Add a client/server mode (XMLRPC) for remote monitoring
899
    * Correct a bug on process IO with non root users
900 901
    * Add 'w' shortkey to delete finished warning message
    * Add 'x' shortkey to delete finished warning/critical message
N
Nicolas Hennion 已提交
902 903
    * Bugs correction
    * Code optimization
N
Nicolas Hennion 已提交
904 905 906 907

Version 1.4.2.2
===============

A
Alessio Sergi 已提交
908 909
    * Add switch between bit/sec and byte/sec for network IO
    * Add Changelog (generated with gitchangelog)
N
Nicolas Hennion 已提交
910

N
Nicolas Hennion 已提交
911 912 913
Version 1.4.2.1
===============

A
Alessio Sergi 已提交
914
    * Minor patch to solve memomy issue (#94) on Mac OS X
N
Nicolas Hennion 已提交
915

916 917 918
Version 1.4.2
=============

A
Alessio Sergi 已提交
919
    * Use the new virtual_memory() and virtual_swap() fct (psutil)
A
Alessio Sergi 已提交
920 921 922
    * Display "Top process" in logs
    * Minor patch on man page for Debian packaging
    * Code optimization (less try and except)
923

N
Nicolas Hennion 已提交
924 925 926
Version 1.4.1.1
===============

A
Alessio Sergi 已提交
927
    * Minor patch to disable Process IO for OS X (not available in psutil)
N
Nicolas Hennion 已提交
928

N
Nicolas Hennion 已提交
929 930 931
Version 1.4.1
=============

A
Alessio Sergi 已提交
932 933 934
    * Per core CPU stats (if space is available)
    * Add Process IO Read/Write information (if space is available)
    * Uniformize units
N
Nicolas Hennion 已提交
935

N
nicolargo 已提交
936 937 938
Version 1.4
===========

A
Alessio Sergi 已提交
939
    * Goodby StatGrab... Welcome to the psutil library !
A
Alessio Sergi 已提交
940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957
    * No more autotools, use setup.py to install (or package)
    * Only major stats (CPU, Load and memory) use background colors
    * Improve operating system name detection
    * New system info: one-line layout and add Arch Linux support
    * No decimal places for values < GB
    * New memory and swap layout
    * Add percentage of usage for both memory and swap
    * Add MEM% usage, NICE, STATUS, UID, PID and running TIME per process
    * Add sort by MEM% ('m' key)
    * Add sort by Process name ('p' key)
    * Multiple minor fixes, changes and improvements
    * Disable Disk IO module from the command line (-d)
    * Disable Mount module from the command line (-m)
    * Disable Net rate module from the command line (-n)
    * Improved FreeBSD support
    * Cleaning code and style
    * Code is now checked with pep8
    * CSV and HTML output (experimental functions, no yet documentation)
958

N
nicolargo 已提交
959 960 961
Version 1.3.7
=============

A
Alessio Sergi 已提交
962 963 964
    * Display (if terminal space is available) an alerts history (logs)
    * Add a limits classe to manage stats limits
    * Manage black and white console (issue #31)
N
nicolargo 已提交
965

966 967 968
Version 1.3.6
=============

A
Alessio Sergi 已提交
969 970 971 972
    * Add control before libs import
    * Change static Python path (issue #20)
    * Correct a bug with a network interface disaippear (issue #27)
    * Add French and Spanish translation (thx to Jean Bob)
973

N
nicolargo 已提交
974 975 976
Version 1.3.5
=============

A
Alessio Sergi 已提交
977 978
    * Add an help panel when Glances is running (key: 'h')
    * Add keys descriptions in the syntax (--help | -h)
N
nicolargo 已提交
979

N
nicolargo 已提交
980 981 982
Version 1.3.4
=============

A
Alessio Sergi 已提交
983 984 985 986 987
    * New key: 'n' to enable/disable network stats
    * New key: 'd' to enable/disable disk IO stats
    * New key: 'f' to enable/disable FS stats
    * Reorganised the screen when stat are not available|disable
    * Force Glances to use the enmbeded fs stats (issue #16)
N
nicolargo 已提交
988

N
nicolargo 已提交
989 990 991
Version 1.3.3
=============

C
Carlos E. Garcia 已提交
992
    * Automatically swith between process short and long name
A
Alessio Sergi 已提交
993 994 995 996
    * Center the host / system information
    * Always put the hour/date in the bottom/right
    * Correct a bug if there is a lot of Disk/IO
    * Add control about available libstatgrab functions
N
nicolargo 已提交
997

N
nicolargo 已提交
998 999 1000
Version 1.3.2
=============

A
Alessio Sergi 已提交
1001 1002 1003 1004 1005
    * Add alert for network bit rate°
    * Change the caption
    * Optimised net, disk IO and fs display (share the space)
      Disable on Ubuntu because the libstatgrab return a zero value
      for the network interface speed.
N
nicolargo 已提交
1006

N
nicolargo 已提交
1007 1008 1009
Version 1.3.1
=============

A
Alessio Sergi 已提交
1010 1011
    * Add alert on load (depend on number of CPU core)
    * Fix bug when the FS list is very long
N
nicolargo 已提交
1012

N
nicolargo 已提交
1013 1014 1015
Version 1.3
===========

A
Alessio Sergi 已提交
1016
    * Add file system stats (total and used space)
1017
    * Adapt unit dynamically (K, M, G)
A
Alessio Sergi 已提交
1018
    * Add man page (Thanks to Edouard Bourguignon)
N
nicolargo 已提交
1019 1020 1021

Version 1.2
===========
N
nicolargo 已提交
1022

1023
    * Resize the terminal and the windows are adapted dynamically
A
Alessio Sergi 已提交
1024
    * Refresh screen instantanetly when a key is pressed
N
nicolargo 已提交
1025

N
nicolargo 已提交
1026
Version 1.1.3
N
v1.1.2  
nicolargo 已提交
1027
=============
N
nicolargo 已提交
1028

A
Alessio Sergi 已提交
1029 1030 1031 1032 1033
    * Add disk IO monitoring
    * Add caption
    * Correct a bug when computing the bitrate with the option -t
    * Catch CTRL-C before init the screen (Bug #2)
    * Check if mem.total = 0 before division (Bug #1)