You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1051 lines
40 KiB

4 years ago
  1. ==============================================================================
  2. Glances Version 3
  3. ==============================================================================
  4. Version 3.0.2
  5. =============
  6. Bug corrected:
  7. * Glances IO Errorno 22 - Invalid argument #1326
  8. Version 3.0.1
  9. =============
  10. Bug corrected:
  11. * AMPs error if no output are provided by the system call #1314
  12. Version 3.0
  13. ===========
  14. Enhancements and new features:
  15. * Make the left side bar width dynamic in the Curse UI #1177
  16. * Add threads number in the process list #1259
  17. * A way to have only REST API available and disable WEB GUI access #1149
  18. * Refactor graph export plugin (& replace Matplolib by Pygal) #697
  19. * Docker module doesn't export details about stopped containers #1152
  20. * Add dynamic fields in all sections of the configuration file #1204
  21. * Make plugins and export CLI option dynamical #1173
  22. * Add a light mode for the console UI #1165
  23. * Refactor InfluxDB (API is now stable) #1166
  24. * Add deflate compression support to the RestAPI #1182
  25. * Add a code of conduct for Glances project's participants #1211
  26. * Context switches bottleneck identification #1212
  27. * Take advantage of the psutil issue #1025 (Add process_iter(attrs, ad_value)) #1105
  28. * Nice Process Priority Configuration #1218
  29. * Display debug message if dep lib is not found #1224
  30. * Add a new output mode to stdout #1168
  31. * Huge refactor of the WebUI packaging thanks to @spike008t #1239
  32. * Add time zone to the current time #1249
  33. * Use HTTPs URLs to check public IP address #1253
  34. * Add labels support to Promotheus exporter #1255
  35. * Overlap in Web UI when monitoring a machine with 16 cpu threads #1265
  36. * Support for exporting data to a MQTT server #1305
  37. One more thing ! A new Grafana Dash is available with:
  38. * Network interface variable
  39. * Disk variable
  40. * Container CPU
  41. Bugs corrected:
  42. * Crash in the Wifi plugin on my Laptop #1151
  43. * Failed to connect to bus: No such file or directory #1156
  44. * glances_plugin.py has a problem with specific docker output #1160
  45. * Key error 'address' in the IP plugin #1176
  46. * NameError: name 'mode' is not defined in case of interrupt shortly after starting the server mode #1175
  47. * Crash on startup: KeyError: 'hz_actual_raw' on Raspbian 9.1 #1170
  48. * Add missing mount-observe and system-observe interfaces #1179
  49. * OS specific arguments should be documented and reported #1180
  50. * 'ascii' codec can't encode character u'\U0001f4a9' in position 4: ordinal not in range(128) #1185
  51. * KeyError: 'memory_info' on stats sum #1188
  52. * Electron/Atom processes displayed wrong in process list #1192
  53. * Another encoding issue... With both Python 2 and Python 3 #1197
  54. * Glances do not exit when eating 'q' #1207
  55. * FreeBSD blackhole bug #1202
  56. * Glances crashes when mountpoint with non ASCII characters exists #1201
  57. * [WEB UI] Minor issue on the Web UI #1240
  58. * [Glances 3.0 RC1] Client/Server is broken #1244
  59. * Fixing horizontal scrolling #1248
  60. * Stats updated during export (thread issue) #1250
  61. * Glances --browser crashed when more than 40 glances servers on screen 78x45 #1256
  62. * OSX - Python 3 and empty percent and res #1251
  63. * Crashes when influxdb option set #1260
  64. * AMP for kernel process is not working #1261
  65. * Arch linux package (2.11.1-2) psutil (v5.4.1): RuntimeWarning: ignoring OSError #1203
  66. * Glances crash with extended process stats #1283
  67. * Terminal window stuck at the last accessed *protected* server #1275
  68. * Glances shows mdadm RAID0 as degraded when chunksize=128k and the array isn't degraded. #1299
  69. * Never starts in a server on Google Cloud and FreeBSD #1292
  70. Backward-incompatible changes:
  71. * Support for Python 3.3 has been dropped (EOL 2017-09-29)
  72. * Support for psutil < 5.3.0 has been dropped
  73. * Minimum supported Docker API version is now 1.21 (Docker plugins)
  74. * Support for InfluxDB < 0.9 is deprecated (InfluxDB exporter)
  75. * Zeroconf lib should be pinned to 0.19.1 for Python 2.x
  76. * --disable-<plugin> no longer available (use --disable-plugin <plugin>)
  77. * --export-<exporter> no longer available (use --export <exporter>)
  78. News command line options:
  79. --disable-webui Disable the WebUI (only RESTful API will respond)
  80. --enable-light Enable the light mode for the UI interface
  81. --modules-list Display plugins and exporters list
  82. --disable-plugin plugin1,plugin2
  83. Disable a list of comma separated plugins
  84. --export exporter1,exporter2
  85. Export stats to a comma separated exporters
  86. --stdout plugin1,plugin2.attribute
  87. Display stats to stdout
  88. News configuration keys in the glances.conf file:
  89. Graph:
  90. [graph]
  91. # Configuration for the --export graph option
  92. # Set the path where the graph (.svg files) will be created
  93. # Can be overwrite by the --graph-path command line option
  94. path=/tmp
  95. # It is possible to generate the graphs automatically by setting the
  96. # generate_every to a non zero value corresponding to the seconds between
  97. # two generation. Set it to 0 to disable graph auto generation.
  98. generate_every=60
  99. # See followings configuration keys definitions in the Pygal lib documentation
  100. # http://pygal.org/en/stable/documentation/index.html
  101. width=800
  102. height=600
  103. style=DarkStyle
  104. Processes list Nice value:
  105. [processlist]
  106. # Nice priorities range from -20 to 19.
  107. # Configure nice levels using a comma separated list.
  108. #
  109. # Nice: Example 1, non-zero is warning (default behavior)
  110. 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
  111. #
  112. # Nice: Example 2, low priority processes escalate from careful to critical
  113. #nice_careful=1,2,3,4,5,6,7,8,9
  114. #nice_warning=10,11,12,13,14
  115. #nice_critical=15,16,17,18,19
  116. Docker plugin (related to #1152)
  117. [docker]
  118. # By default, Glances only display running containers
  119. # Set the following key to True to display all containers
  120. all=False
  121. All configuration file values (related to #1204)
  122. [influxdb]
  123. # It is possible to use dynamic system command
  124. prefix=`hostname`
  125. tags=foo:bar,spam:eggs,system:`uname -a`
  126. ==============================================================================
  127. Glances Version 2
  128. ==============================================================================
  129. Version 2.11.1
  130. ==============
  131. * [WebUI] Sensors not showing on Web (issue #1142)
  132. * Client and Quiet mode don't work together (issue #1139)
  133. Version 2.11
  134. ============
  135. Enhancements and new features:
  136. * New export plugin: standard and configurable RESTful exporter (issue #1129)
  137. * Add a JSON export module (issue #1130)
  138. * [WIP] Refactoring of the WebUI
  139. Bugs corrected:
  140. * Installing GPU plugin crashes entire Glances (issue #1102)
  141. * Potential memory leak in Windows WebUI (issue #1056)
  142. * glances_network `OSError: [Errno 19] No such device` (issue #1106)
  143. * GPU plugin. <class 'TypeError'>: ... not JSON serializable"> (issue #1112)
  144. * PermissionError on macOS (issue #1120)
  145. * Cant move up or down in glances --browser (issue #1113)
  146. * Unable to give aliases to or hide network interfaces and disks (issue #1126)
  147. * `UnicodeDecodeError` on mountpoints with non-breaking spaces (issue #1128)
  148. Installation:
  149. * Create a Snap of Glances (issue #1101)
  150. Version 2.10
  151. ============
  152. Enhancements and new features:
  153. * New plugin to scan remote Web sites (URL) (issue #981)
  154. * Add trends in the Curses interface (issue #1077)
  155. * Add new repeat function to the action (issue #952)
  156. * Use -> and <- arrows keys to switch between processing sort (issue #1075)
  157. * Refactor __init__ and main scripts (issue #1050)
  158. * [WebUI] Improve WebUI for Windows 10 (issue #1052)
  159. Bugs corrected:
  160. * StatsD export prefix option is ignored (issue #1074)
  161. * Some FS and LAN metrics fail to export correctly to StatsD (issue #1068)
  162. * Problem with non breaking space in file system name (issue #1065)
  163. * TypeError: string indices must be integers (Network plugin) (issue #1054)
  164. * No Offline status for timeouted ports? (issue #1084)
  165. * When exporting, uptime values loop after 1 day (issue #1092)
  166. Installation:
  167. * Create a package.sh script to generate .DEB, .RPM and others... (issue #722)
  168. ==> https://github.com/nicolargo/glancesautopkg
  169. * OSX: can't python setup.py install due to python 3.5 constraint (issue #1064)
  170. Version 2.9.1
  171. =============
  172. Bugs corrected:
  173. * Glances PerCPU issues with Curses UI on Android (issue #1071)
  174. * Remove extra } in format string (issue #1073)
  175. Version 2.9.0
  176. =============
  177. Enhancements and new features:
  178. * Add a Prometheus export module (issue #930)
  179. * Add a Kafka export module (issue #858)
  180. * Port in the -c URI (-c hostname:port) (issue #996)
  181. Bugs corrected:
  182. * On Windows --export-statsd terminates immediately and does not export (issue #1067)
  183. * Glances v2.8.7 issues with Curses UI on Android (issue #1053)
  184. * Fails to start, OSError in sensors_temperatures (issue #1057)
  185. * Crashs after long time running the glances --browser (issue #1059)
  186. * Sensor values don't refresh since psutil backend (issue #1061)
  187. * glances-version.db Permission denied (issue #1066)
  188. Version 2.8.8
  189. =============
  190. Bugs corrected:
  191. * Drop requests to check for outdated Glances version
  192. * Glances cannot load "Powersupply" (issue #1051)
  193. Version 2.8.7
  194. =============
  195. Bugs corrected:
  196. * Windows OS - Global name standalone not defined again (issue #1030)
  197. Version 2.8.6
  198. =============
  199. Bugs corrected:
  200. * Windows OS - Global name standalone not defined (issue #1030)
  201. Version 2.8.5
  202. =============
  203. Bugs corrected:
  204. * Cloud plugin error: Name 'requests' is not defined (issue #1047)
  205. Version 2.8.4
  206. =============
  207. Bugs corrected:
  208. * Correct issue on Travis CI test
  209. Version 2.8.3
  210. =============
  211. Enhancements and new features:
  212. * Use new sensors-related APIs of psutil 5.1.0 (issue #1018)
  213. * Add a "Cloud" plugin to grab stats inside the AWS EC2 API (issue #1029)
  214. Bugs corrected:
  215. * Unable to launch Glances on Windows (issue #1021)
  216. * Glances --export-influxdb starts Webserver (issue #1038)
  217. * Cut mount point name if it is too long (issue #1045)
  218. * TypeError: string indices must be integers in per cpu (issue #1027)
  219. * Glances crash on RPi 1 running ArchLinuxARM (issue #1046)
  220. Version 2.8.2
  221. =============
  222. Bugs corrected:
  223. * InfluxDB export in 2.8.1 is broken (issue #1026)
  224. Version 2.8.1
  225. =============
  226. Enhancements and new features:
  227. * Enable docker plugin on Windows (issue #1009) - Thanks to @fraoustin
  228. Bugs corrected:
  229. * Glances export issue with CPU and SENSORS (issue #1024)
  230. * Can't export data to a CSV file in Client/Server mode (issue #1023)
  231. * Autodiscover error while binding on IPv6 addresses (issue #1002)
  232. * GPU plugin is display when hitting '4' or '5' shortkeys (issue #1012)
  233. * Interrupts and usb_fiq (issue #1007)
  234. * Docker image does not work in web server mode! (issue #1017)
  235. * IRQ plugin is not display anymore (issue #1013)
  236. * Autodiscover error while binding on IPv6 addresses (issue #1002)
  237. Version 2.8
  238. ===========
  239. Changes:
  240. * The curses interface on Windows is no more. The web-based interface is now
  241. the default. (issue #946)
  242. * The name of the log file now contains the name of the current user logged in,
  243. i.e., 'glances-USERNAME.log'.
  244. * IRQ plugin off by default. '--disable-irq' option replaced by '--enable-irq'.
  245. Enhancements and new features:
  246. * GPU monitoring (limited to NVidia) (issue #170)
  247. * WebUI CPU consumption optimization (issue #836)
  248. * Not compatible with the new Docker API 2.0 (Docker 1.13) (issue #1000)
  249. * Add ZeroMQ exporter (issue #939)
  250. * Add CouchDB exporter (issue #928)
  251. * Add hotspot Wifi informations (issue #937)
  252. * Add default interface speed and automatic rate thresolds (issue #718)
  253. * Highlight max stats in the processes list (issue #878)
  254. * Docker alerts and actions (issue #875)
  255. * Glances API returns the processes PPID (issue #926)
  256. * Configure server cached time from the command line --cached-time (issue #901)
  257. * Make the log logger configurable (issue #900)
  258. * System uptime in export (issue #890)
  259. * Refactor the --disable-* options (issue #948)
  260. * PID column too small if kernel.pid_max is > 99999 (issue #959)
  261. Bugs corrected:
  262. * Glances RAID plugin Traceback (issue #927)
  263. * Default AMP crashes when 'command' given (issue #933)
  264. * Default AMP ignores `enable` setting (issue #932)
  265. * /proc/interrupts not found in an OpenVZ container (issue #947)
  266. Version 2.7.1
  267. =============
  268. Bugs corrected:
  269. * AMP plugin crashs on start with Python 3 (issue #917)
  270. * Ports plugin crashs on start with Python 3 (issue #918)
  271. Version 2.7
  272. ===========
  273. Backward-incompatible changes:
  274. * Drop support for Python 2.6 (issue #300)
  275. Deprecated:
  276. * Monitoring process list module is replaced by AMP (see issue #780)
  277. * Use --export-graph instead of --enable-history (issue #696)
  278. * Use --path-graph instead of --path-history (issue #696)
  279. Enhancements and new features:
  280. * Add Application Monitoring Process plugin (issue #780)
  281. * Add a new "Ports scanner" plugin (issue #734)
  282. * Add a new IRQ monitoring plugin (issue #911)
  283. * Improve IP plugin to display public IP address (issue #646)
  284. * CPU additionnal stats monitoring: Context switch, Interrupts... (issue #810)
  285. * Filter processes by others stats (username) (issue #748)
  286. * [Folders] Differentiate permission issue and non-existence of a directory (issue #828)
  287. * [Web UI] Add cpu name in quicklook plugin (issue #825)
  288. * Allow theme to be set in configuration file (issue #862)
  289. * Display a warning message when Glances is outdated (issue #865)
  290. * Refactor stats history and export to graph. History available through API (issue #696)
  291. * Add Cassandra/Scylla export plugin (issue #857)
  292. * Huge pull request by Nicolas Hart to optimize the WebUI (issue #906)
  293. * Improve documentation: http://glances.readthedocs.io (issue #872)
  294. Bugs corrected:
  295. * Crash on launch when viewing temperature of laptop HDD in sleep mode (issue #824)
  296. * [Web UI] Fix folders plugin never displayed (issue #829)
  297. * Correct issue IP plugin: VPN with no internet access (issue #842)
  298. * Idle process is back on FreeBSD and Windows (issue #844)
  299. * On Windows, Glances try to display unexisting Load stats (issue #871)
  300. * Check CPU info (issue #881)
  301. * Unicode error on processlist on Windows server 2008 (french) (issue #886)
  302. * PermissionError/OSError when starting glances (issue #885)
  303. * Zeroconf problem with zeroconf_type = "_%s._tcp." % __appname__ (issue #888)
  304. * Zeroconf problem with zeroconf service name (issue #889)
  305. * [WebUI] Glances will not get past loading screen - Windows OS (issue #815)
  306. * Improper bytes/unicode in glances_hddtemp.py (issue #887)
  307. * Top 3 processes are back in the alert summary
  308. Code quality follow up: from 5.93 to 6.24 (source: https://scrutinizer-ci.com/g/nicolargo/glances)
  309. Version 2.6.2
  310. =============
  311. Bugs corrected:
  312. * Crash with Docker 1.11 (issue #848)
  313. Version 2.6.1
  314. =============
  315. Enhancements and new features:
  316. * Add a connector to Riemann (issue #822 by Greogo Nagy)
  317. Bugs corrected:
  318. * Browsing for servers which are in the [serverlist] is broken (issue #819)
  319. * [WebUI] Glances will not get past loading screen (issue #815) opened 9 days ago
  320. * Python error after upgrading from 2.5.1 to 2.6 bug (issue #813)
  321. Version 2.6
  322. ===========
  323. Deprecations:
  324. * Add deprecation warning for Python 2.6.
  325. Python 2.6 support will be dropped in future releases.
  326. Please switch to at least Python 2.7 or 3.3+ as soon as possible.
  327. See http://www.snarky.ca/stop-using-python-2-6 for more information.
  328. Enhancements and new features:
  329. * Add a connector to ElasticSearch (welcome to Kibana dashboard) (issue #311)
  330. * New folders' monitoring plugins (issue #721)
  331. * Use wildcard (regexp) to the hide configuration option for network, diskio and fs sections (issue #799 )
  332. * Command line arguments are now take into account in the WebUI (#789 by @notFloran)
  333. * Change username for server and web server authentication (issue #693)
  334. * Add an option to disable top menu (issue #766)
  335. * Add IOps in the DiskIO plugin (issue #763)
  336. * Add hide configuration key for FS Plugin (issue #736)
  337. * Add process summary min/max stats (issue #703)
  338. * Add timestamp to the CSV export module (issue #708)
  339. * Add a shortcut 'E' to delete process filter (issue #699)
  340. * By default, hide disk I/O ram1-** (issue #714)
  341. * When Glances is starting the notifications should be delayed (issue #732)
  342. * Add option (--disable-bg) to disable ANSI background colours (issue #738 by okdana)
  343. * [WebUI] add "pointer" cursor for sortable columns (issue #704 by @notFloran)
  344. * [WebUI] Make web page title configurable (issue #724)
  345. * Do not show interface in down state (issue #765)
  346. * InfluxDB > 0.9.3 needs float and not int for numerical value (issue#749 and issue#750 by nicolargo)
  347. Bugs corrected:
  348. * Can't read sensors on a Thinkpad (issue #711)
  349. * InfluxDB/OpenTSDB: tag parsing broken (issue #713)
  350. * Grafana Dashboard outdated for InfluxDB 0.9.x (issue #648)
  351. * '--tree' breaks process filter on Debian 8 (issue #768)
  352. * Fix highlighting of process when it contains whitespaces (issue #546 by Alessio Sergi)
  353. * Fix RAID support in Python 3 (issue #793 by Alessio Sergi)
  354. * Use dict view objects to avoid issue (issue #758 by Alessio Sergi)
  355. * System exit if Cpu not supported by the Cpuinfo lib (issue #754 by nicolargo)
  356. * KeyError: 'cpucore' when exporting data to InfluxDB (issue #729) by nicolargo)
  357. Others:
  358. * A new Glances docker container to monitor your Docker infrastructure is available here (issue #728): https://hub.docker.com/r/nicolargo/glances/
  359. * Documentation is now generated automatically thanks to Sphinx and the Alessio Sergi patch (https://glances.readthedocs.io/en/latest/)
  360. Contributors summary:
  361. * Nicolas Hennion: 112 commits
  362. * Alessio Sergi: 55 commits
  363. * Floran Brutel: 19 commits
  364. * Nicolas Hart: 8 commits
  365. * @desbma: 4 commits
  366. * @dana: 2 commits
  367. * Damien Martin, Raju Kadam, @georgewhewell: 1 commit
  368. Version 2.5.1
  369. =============
  370. Bugs corrected:
  371. * Unable to unlock password protected servers in browser mode bug (issue #694)
  372. * Correct issue when Glances is started in console on Windows OS
  373. * [WebUI] when alert is ongoing hide level enhancement (issue #692)
  374. Version 2.5
  375. ===========
  376. Enhancements and new features:
  377. * Allow export of Docker and sensors plugins stats to InfluxDB, StatsD... (issue #600)
  378. * Docker plugin shows IO and network bitrate (issue #520)
  379. * Server password configuration for the browser mode (issue #500)
  380. * Add support for OpenTSDB export (issue #638)
  381. * Add additional stats (iowait, steal) to the perCPU plugin (issue #672)
  382. * Support Fahrenheit unit in the sensor plugin using the --fahrenheit command line option (issue #620)
  383. * When a process filter is set, display sum of CPU, MEM... (issue #681)
  384. * Improve the QuickLookplugin by adding hardware CPU info (issue #673)
  385. * WebUI display a message if server is not available (issue #564)
  386. * Display an error if export is not used in the standalone/client mode (issue #614)
  387. * New --disable-quicklook, --disable-cpu, --disable-mem, --disable-swap, --disable-load tags (issue #631)
  388. * Complete refactoring of the WebUI thanks to the (awesome) Floran pull (issue #656)
  389. * Network cumulative /combination feature available in the WebUI (issue #552)
  390. * IRIX mode off implementation (issue#628)
  391. * Short process name displays arguments (issue #609)
  392. * Server password configuration for the browser mode (issue #500)
  393. * Display an error if export is not used in the standalone/client mode (issue #614)
  394. Bugs corrected:
  395. * The WebUI displays bad sensors stats (issue #632)
  396. * Filter processes crashs with a bad regular expression pattern (issue #665)
  397. * Error with IP plugin (issue #651)
  398. * Crach with Docker plugin (issue #649)
  399. * Docker plugin crashs with webserver mode (issue #654)
  400. * Infrequently crashing due to assert (issue #623)
  401. * Value for free disk space is counterintuative on ext file systems (issue #644)
  402. * Try/catch for unexpected psutil.NoSuchProcess: process no longer exists (issue #432)
  403. * Fatal error using Python 3.4 and Docker plugin bug (issue #602)
  404. * Add missing new line before g man option (issue #595)
  405. * Remove unnecessary type="text/css" for link (HTML5) (issue #595)
  406. * Correct server mode issue when no network interface is available (issue #528)
  407. * Avoid crach on olds kernels (issue #554)
  408. * Avoid crashing if LC_ALL is not defined by user (issue #517)
  409. * Add a disable HDD temperature option on the command line (issue #515)
  410. Version 2.4.2
  411. =============
  412. Bugs corrected:
  413. * Process no longer exists (again) (issue #613)
  414. * Crash when "top extended stats" is enabled on OS X (issue #612)
  415. * Graphical percentage bar displays "?" (issue #608)
  416. * Quick look doesn't work (issue #605)
  417. * [Web UI] Display empty Battery sensors enhancement (issue #601)
  418. * [Web UI] Per CPU plugin has to be improved (issue #566)
  419. Version 2.4.1
  420. =============
  421. Bugs corrected:
  422. * Fatal error using Python 3.4 and Docker plugin bug (issue #602)
  423. Version 2.4
  424. ===========
  425. Changes:
  426. * Glances doesn't provide a system-wide configuration file by default anymore.
  427. Just copy it in any of the supported locations. See glances-doc.html for
  428. more information. (issue #541)
  429. * The default key bindings have been changed to:
  430. - 'u': sort processes by USER
  431. - 'U': show cumulative network I/O
  432. * No more translations
  433. Enhancements and new features:
  434. * The Web user interface is now based on AngularJS (issue #473, #508, #468)
  435. * Implement a 'quick look' plugin (issue #505)
  436. * Add sort processes by USER (issue #531)
  437. * Add a new IP information plugin (issue #509)
  438. * Add RabbitMQ export module (issue #540 Thk to @Katyucha)
  439. * Add a quiet mode (-q), can be useful using with export module
  440. * Grab FAN speed in the Glances sensors plugin (issue #501)
  441. * Allow logical mounts points in the FS plugin (issue #448)
  442. * Add a --disable-hddtemp to disable HDD temperature module at startup (issue #515)
  443. * Increase alert minimal delay to 6 seconds (issue #522)
  444. * If the Curses application raises an exception, restore the terminal correctly (issue #537)
  445. Bugs corrected:
  446. * Monitor list, all processes are take into account (issue #507)
  447. * Duplicated --enable-history in the doc (issue #511)
  448. * Sensors title is displayed if no sensors are detected (issue #510)
  449. * Server mode issue when no network interface is available (issue #528)
  450. * DEBUG mode activated by default with Python 2.6 (issue #512)
  451. * Glances display of time trims the hours showing only minutes and seconds (issue #543)
  452. * Process list header not decorating when sorting by command (issue #551)
  453. Version 2.3
  454. ===========
  455. Enhancements and new features:
  456. * Add the Docker plugin (issue #440) with per container CPU and memory monitoring (issue #490)
  457. * Add the RAID plugin (issue #447)
  458. * 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.
  459. * Add InfluxDB export module (--export-influxdb) (issue #455)
  460. * Add StatsD export module (--export-statsd) (issue #465)
  461. * Refactor export module (CSV export option is now --export-csv). It is now possible to export stats from the Glances client mode (issue #463)
  462. * The Web inteface is now based on Bootstrap / RWD grid (issue #417, #366 and #461) Thanks to Nicolas Hart @nclsHart
  463. * It is now possible, through the configuration file, to define if an alarm should be logged or not (using the _log option) (issue #437)
  464. * You can now set alarm for Disk IO
  465. * API: add getAllLimits and getAllViews methods (issue #481) and allow CORS request (issue #479)
  466. * SNMP client support NetApp appliance (issue #394)
  467. Bugs corrected:
  468. * R/W error with the glances.log file (issue #474)
  469. Other enhancement:
  470. * Alert < 3 seconds are no longer displayed
  471. Version 2.2.1
  472. =============
  473. * Fix incorrect kernel thread detection with --hide-kernel-threads (issue #457)
  474. * Handle IOError exception if no /etc/os-release to use Glances on Synology DSM (issue #458)
  475. * Check issue error in client/server mode (issue #459)
  476. Version 2.2
  477. ===========
  478. Enhancements and new features:
  479. * Add centralized curse interface with a Glances servers list to monitor (issue #418)
  480. * Add processes tree view (--tree) (issue #444)
  481. * Improve graph history feature (issue #69)
  482. * Extended stats is disable by default (use --enable-process-extended to enable it - issue #430)
  483. * Add a short key ('F') and a command line option (--fs-free-space) to display FS free space instead of used space (issue #411)
  484. * Add a short key ('2') and a command line option (--disable-left-sidebar) to disable/enable the side bar (issue #429)
  485. * Add CPU times sort short key ('t') in the curse interface (issue #449)
  486. * Refactor operating system detection for GNU/Linux operating system
  487. * Code optimization
  488. Bugs corrected:
  489. * Correct a bug with Glances pip install --user (issue #383)
  490. * Correct issue on battery stat update (issue #433)
  491. * Correct issue on process no longer exist (issues #414 and #432)
  492. Version 2.1.2
  493. =============
  494. Maintenance version (only needed for Mac OS X).
  495. Bugs corrected:
  496. * Mac OS X: Error if Glances is not ran with sudo (issue #426)
  497. Version 2.1.1
  498. =============
  499. Enhancement:
  500. * Automaticaly compute top processes number for the current screen (issue #408)
  501. * CPU and Memory footprint optimization (issue #401)
  502. Bugs corrected:
  503. * Mac OS X 10.9: Exception at start (issue #423)
  504. * Process no longer exists (issue #421)
  505. * Error with Glances Client with Python 3.4.1 (issue #419)
  506. * TypeError: memory_maps() takes exactly 2 arguments (issue #413)
  507. * No filesystem informations since Glances 2.0 bug enhancement (issue #381)
  508. Version 2.1
  509. ===========
  510. * Add user process filter feature
  511. User can define a process filter pattern (as a regular expression).
  512. The pattern could be defined from the command line (-f <pattern>)
  513. or by pressing the ENTER key in the curse interface.
  514. For the moment, process filter feature is only available in standalone mode.
  515. * Add extended processes informations for top process
  516. 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
  517. For the moment, extended processes stats are only available in standalone mode.
  518. * Add --process-short-name tag and '/' key to switch between short/command line
  519. * Create a max_processes key in the configuration file
  520. The goal is to reduce the number of displayed processes in the curses UI and
  521. so limit the CPU footprint of the Glances standalone mode.
  522. The API always return all the processes, the key is only active in the curses UI.
  523. If the key is not define, all the processes will be displayed.
  524. The default value is 20 (processes displayed).
  525. For the moment, this feature is only available in standalone mode.
  526. * Alias for network interfaces, disks and sensors
  527. Users can configure alias from the Glances configuration file.
  528. * Add Glances log message (in the /tmp/glances.log file)
  529. The default log level is INFO, you can switch to the DEBUG mode using the -d option on the command line.
  530. * Add RESTful API to the Web server mode
  531. RESTful API doc: https://github.com/nicolargo/glances/wiki/The-Glances-RESTFULL-JSON-API
  532. * Improve SNMP fallback mode for Cisco IOS, VMware ESXi
  533. * Add --theme-white feature to optimize display for white background
  534. * Experimental history feature (--enable-history option on the command line)
  535. This feature allows users to generate graphs within the curse interface.
  536. Graphs are available for CPU, LOAD and MEM.
  537. To generate graph, click on the 'g' key.
  538. To reset the history, press the 'r' key.
  539. Note: This feature uses the matplotlib library.
  540. * CI: Improve Travis coverage
  541. Bugs corrected:
  542. * Quitting glances leaves a column layout to the current terminal (issue #392)
  543. * Glances crashes with malformed UTF-8 sequences in process command lines (issue #391)
  544. * SNMP fallback mode is not Python 3 compliant (issue #386)
  545. * Trouble using batinfo, hddtemp, pysensors w/ Python (issue #324)
  546. Version 2.0.1
  547. =============
  548. Maintenance version.
  549. Bugs corrected:
  550. * Error when displaying numeric process user names (#380)
  551. * Display users without username correctly (#379)
  552. * Bug when parsing configuration file (#378)
  553. * The sda2 partition is not seen by glances (#376)
  554. * Client crash if server is ended during XML request (#375)
  555. * Error with the Sensors module on Debian/Ubuntu (#373)
  556. * Windows don't view all processes (#319)
  557. Version 2.0
  558. ===========
  559. Glances v2.0 is not a simple upgrade of the version 1.x but a complete code refactoring.
  560. Based on a plugins system, it aims at providing an easy way to add new features.
  561. - Core defines the basics and commons functions.
  562. - all stats are grabbed through plugins (see the glances/plugins source folder).
  563. - also outputs methods (Curse, Web mode, CSV) are managed as plugins.
  564. The Curse interface is almost the same than the version 1.7. Some improvements have been made:
  565. - space optimisation for the CPU, LOAD and MEM stats (justified alignment)
  566. - CPU:
  567. . CPU stats are displayed as soon as Glances is started
  568. . steal CPU alerts are no more logged
  569. - LOAD:
  570. . 5 min LOAD alerts are no more logged
  571. - File System:
  572. . Display the device name (if space is available)
  573. - Sensors:
  574. . Sensors and HDD temperature are displayed in the same block
  575. - Process list:
  576. . Refactor columns: CPU%, MEM%, VIRT, RES, PID, USER, NICE, STATUS, TIME, IO, Command/name
  577. . The running processes status is highlighted
  578. . The process name is highlighted in the command line
  579. Glances 2.0 brings a brand new Web Interface. You can run Glances in Web server mode and
  580. consult the stats directly from a standard Web Browser.
  581. The client mode can now fallback to a simple SNMP mode if Glances server is not found on the remote machine.
  582. Complete release notes:
  583. * Cut ifName and DiskName if they are too long in the curses interface (by Nicolargo)
  584. * Windows CLI is OK but early experimental (by Nicolargo)
  585. * Add bitrate limits to the networks interfaces (by Nicolargo)
  586. * Batteries % stats are now in the sensors list (by Nicolargo)
  587. * Refactor the client/server password security: using SHA256 (by Nicolargo,
  588. based on Alessio Sergi's example script)
  589. * Refactor the CSV output (by Nicolargo)
  590. * Glances client fallback to SNMP server if Glances one not found (by Nicolargo)
  591. * Process list: Highlight running/basename processes (by Alessio Sergi)
  592. * New Web server mode thk to the Bottle library (by Nicolargo)
  593. * Responsive design for Bottle interface (by Nicolargo)
  594. * Remove HTML output (by Nicolargo)
  595. * Enable/disable for optional plugins through the command line (by Nicolargo)
  596. * Refactor the API (by Nicolargo)
  597. * Load-5 alert are no longer logged (by Nicolargo)
  598. * Rename In/Out by Read/Write for DiskIO according to #339 (by Nicolargo)
  599. * Migrate from pysensors to py3sensors (by Alessio Sergi)
  600. * Migration to psutil 2.x (by Nicolargo)
  601. * New plugins system (by Nicolargo)
  602. * Python 2.x and 3.x compatibility (by Alessio Sergi)
  603. * Code quality improvements (by Alessio Sergi)
  604. * Refactor unitaries tests (by Nicolargo)
  605. * Development now follow the git flow workflow (by Nicolargo)
  606. ==============================================================================
  607. Glances Version 1
  608. ==============================================================================
  609. Version 1.7.7
  610. =============
  611. * Fix CVS export [issue #348]
  612. * Adapt to psutil 2.1.1
  613. * Compatibility with Python 3.4
  614. * Improve German update
  615. Version 1.7.6
  616. =============
  617. * Adapt to psutil 2.0.0 API
  618. * Fixed psutil 0.5.x support on Windows
  619. * Fix help screen in 80x24 terminal size
  620. * Implement toggle of process list display ('z' key)
  621. Version 1.7.5
  622. =============
  623. * Force the PyPI installer to use the psutil branch 1.x (#333)
  624. Version 1.7.4
  625. =============
  626. * Add threads number in the task summary line (#308)
  627. * Add system uptime (#276)
  628. * Add CPU steal % to cpu extended stats (#309)
  629. * You can hide disk from the IOdisk view using the conf file (#304)
  630. * You can hide network interface from the Network view using the conf file
  631. * Optimisation of CPU consumption (around ~10%)
  632. * Correct issue #314: Client/server mode always asks for password
  633. * Correct issue #315: Defining password in client/server mode doesn't work as intended
  634. * Correct issue #316: Crash in client server mode
  635. * Correct issue #318: Argument parser, try-except blocks never get triggered
  636. Version 1.7.3
  637. =============
  638. * Add --password argument to enter the client/server password from the prompt
  639. * Fix an issue with the configuration file path (#296)
  640. * Fix an issue with the HTML template (#301)
  641. Version 1.7.2
  642. =============
  643. * Console interface is now Microsoft Windows compatible (thk to @fraoustin)
  644. * Update documentation and Wiki regarding the API
  645. * Added package name for python sources/headers in openSUSE/SLES/SLED
  646. * Add FreeBSD packager
  647. * Bugs corrected
  648. Version 1.7.1
  649. =============
  650. * Fix IoWait error on FreeBSD / Mac OS
  651. * HDDTemp module is now Python v3 compatible
  652. * Don't warn a process is not running if countmin=0
  653. * Add PyPI badge on the README.rst
  654. * Update documentation
  655. * Add document structure for http://readthedocs.org
  656. Version 1.7
  657. ===========
  658. * Add monitored processes list
  659. * Add hard disk temperature monitoring (thanks to the HDDtemp daemon)
  660. * Add batteries capacities information (thanks to the Batinfo lib)
  661. * Add command line argument -r toggles processes (reduce CPU usage)
  662. * Add command line argument -1 to run Glances in per CPU mode
  663. * Platform/architecture is more specific now
  664. * XML-RPC server: Add IPv6 support for the client/server mode
  665. * Add support for local conf file
  666. * Add a uninstall script
  667. * Add getNetTimeSinceLastUpdate() getDiskTimeSinceLastUpdate() and getProcessDiskTimeSinceLastUpdate() in the API
  668. * Add more translation: Italien, Chinese
  669. * and last but not least... up to 100 hundred bugs corrected / software and
  670. * docs improvements
  671. Version 1.6.1
  672. =============
  673. * Add per-user settings (configuration file) support
  674. * Add -z/--nobold option for better appearance under Solarized terminal
  675. * Key 'u' shows cumulative net traffic
  676. * Work in improving autoUnit
  677. * Take into account the number of core in the CPU process limit
  678. * API improvment add time_since_update for disk, process_disk and network
  679. * Improve help display
  680. * Add more dummy FS to the ignore list
  681. * Code refactory: psutil < 0.4.1 is deprecated (Thk to Alessio)
  682. * Correct a bug on the CPU process limit
  683. * Fix crash bug when specifying custom server port
  684. * Add Debian style init script for the Glances server
  685. Version 1.6
  686. ===========
  687. * Configuration file: user can defines limits
  688. * In client/server mode, limits are set by the server side
  689. * Display limits in the help screen
  690. * Add per process IO (read and write) rate in B per second
  691. IO rate only available on Linux from a root account
  692. * If CPU iowait alert then sort by processes by IO rate
  693. * Per CPU display IOwait (if data is available)
  694. * Add password for the client/server mode (-P password)
  695. * Process column style auto (underline) or manual (bold)
  696. * Display a sort indicator (is space is available)
  697. * Change the table key in the help screen
  698. Version 1.5.2
  699. =============
  700. * Add sensors module (enable it with -e option)
  701. * Improve CPU stats (IO wait, Nice, IRQ)
  702. * More stats in lower space (yes it's possible)
  703. * Refactor processes list and count (lower CPU/MEM footprint)
  704. * Add functions to the RCP method
  705. * Completed unit test
  706. * and fixes...
  707. Version 1.5.1
  708. =============
  709. * Patch for psutil 0.4 compatibility
  710. * Test psutil version before running Glances
  711. Version 1.5
  712. ===========
  713. * Add a client/server mode (XMLRPC) for remote monitoring
  714. * Correct a bug on process IO with non root users
  715. * Add 'w' shortkey to delete finished warning message
  716. * Add 'x' shortkey to delete finished warning/critical message
  717. * Bugs correction
  718. * Code optimization
  719. Version 1.4.2.2
  720. ===============
  721. * Add switch between bit/sec and byte/sec for network IO
  722. * Add Changelog (generated with gitchangelog)
  723. Version 1.4.2.1
  724. ===============
  725. * Minor patch to solve memomy issue (#94) on Mac OS X
  726. Version 1.4.2
  727. =============
  728. * Use the new virtual_memory() and virtual_swap() fct (psutil)
  729. * Display "Top process" in logs
  730. * Minor patch on man page for Debian packaging
  731. * Code optimization (less try and except)
  732. Version 1.4.1.1
  733. ===============
  734. * Minor patch to disable Process IO for OS X (not available in psutil)
  735. Version 1.4.1
  736. =============
  737. * Per core CPU stats (if space is available)
  738. * Add Process IO Read/Write information (if space is available)
  739. * Uniformize units
  740. Version 1.4
  741. ===========
  742. * Goodby StatGrab... Welcome to the psutil library !
  743. * No more autotools, use setup.py to install (or package)
  744. * Only major stats (CPU, Load and memory) use background colors
  745. * Improve operating system name detection
  746. * New system info: one-line layout and add Arch Linux support
  747. * No decimal places for values < GB
  748. * New memory and swap layout
  749. * Add percentage of usage for both memory and swap
  750. * Add MEM% usage, NICE, STATUS, UID, PID and running TIME per process
  751. * Add sort by MEM% ('m' key)
  752. * Add sort by Process name ('p' key)
  753. * Multiple minor fixes, changes and improvements
  754. * Disable Disk IO module from the command line (-d)
  755. * Disable Mount module from the command line (-m)
  756. * Disable Net rate module from the command line (-n)
  757. * Improved FreeBSD support
  758. * Cleaning code and style
  759. * Code is now checked with pep8
  760. * CSV and HTML output (experimental functions, no yet documentation)
  761. Version 1.3.7
  762. =============
  763. * Display (if terminal space is available) an alerts history (logs)
  764. * Add a limits classe to manage stats limits
  765. * Manage black and white console (issue #31)
  766. Version 1.3.6
  767. =============
  768. * Add control before libs import
  769. * Change static Python path (issue #20)
  770. * Correct a bug with a network interface disaippear (issue #27)
  771. * Add French and Spanish translation (thx to Jean Bob)
  772. Version 1.3.5
  773. =============
  774. * Add an help panel when Glances is running (key: 'h')
  775. * Add keys descriptions in the syntax (--help | -h)
  776. Version 1.3.4
  777. =============
  778. * New key: 'n' to enable/disable network stats
  779. * New key: 'd' to enable/disable disk IO stats
  780. * New key: 'f' to enable/disable FS stats
  781. * Reorganised the screen when stat are not available|disable
  782. * Force Glances to use the enmbeded fs stats (issue #16)
  783. Version 1.3.3
  784. =============
  785. * Automatically swith between process short and long name
  786. * Center the host / system information
  787. * Always put the hour/date in the bottom/right
  788. * Correct a bug if there is a lot of Disk/IO
  789. * Add control about available libstatgrab functions
  790. Version 1.3.2
  791. =============
  792. * Add alert for network bit rate°
  793. * Change the caption
  794. * Optimised net, disk IO and fs display (share the space)
  795. Disable on Ubuntu because the libstatgrab return a zero value
  796. for the network interface speed.
  797. Version 1.3.1
  798. =============
  799. * Add alert on load (depend on number of CPU core)
  800. * Fix bug when the FS list is very long
  801. Version 1.3
  802. ===========
  803. * Add file system stats (total and used space)
  804. * Adapt unit dynamically (K, M, G)
  805. * Add man page (Thanks to Edouard Bourguignon)
  806. Version 1.2
  807. ===========
  808. * Resize the terminal and the windows are adapted dynamically
  809. * Refresh screen instantanetly when a key is pressed
  810. Version 1.1.3
  811. =============
  812. * Add disk IO monitoring
  813. * Add caption
  814. * Correct a bug when computing the bitrate with the option -t
  815. * Catch CTRL-C before init the screen (Bug #2)
  816. * Check if mem.total = 0 before division (Bug #1)