diff --git a/NEWS b/NEWS index b6b2ac22..9402b5ef 100644 --- a/NEWS +++ b/NEWS @@ -7,16 +7,17 @@ Version 2.3 Enhancements and news features: - * Add actions on alerts (issue #132). It is now possible to run action (command line) by triggers. Action could containq {Mustache} {{tag}} (Mustache) with stat value. + * Add the Docker plugin (issue #440) with per container CPU and memory monitoring (issue #490) + * 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. * Add InfluxDB export module (--export-influxdb) (issue #455) - * Add Statsd export module (--export-statsd) (issue #465) + * Add StatsD export module (--export-statsd) (issue #465) * Refactor export module (CSV export option is now --export-csv). It is now possible to export stats from the Glances client mode (issue #463) * The Web inteface is now based on BootStarp / RWD grid (issue #417, #366 and #461) Thanks to Nicolas Hart @nclsHart - * Add the RAID plugin (issue #447) - * Add the Docker plugin (issue #440) with per container CPU and memory monitoring (issue #490) - * It is possible, through the configuration file, to define if an alarm should be logged or not (using the _log option) (issue #437) + * It is now possible, through the configuration file, to define if an alarm should be logged or not (using the _log option) (issue #437) * You can now set alarm for Disk IO - * API: add getAllLimits and getAllViews methods (issue#481) + * API: add getAllLimits and getAllViews methods (issue #481) and allow CORS request (issue #479) + * SNMP client support NetApp appliance (issue #394) Bugs corrected: diff --git a/docs/glances-doc.rst b/docs/glances-doc.rst index 846c4da3..60d7fe40 100644 --- a/docs/glances-doc.rst +++ b/docs/glances-doc.rst @@ -2,11 +2,11 @@ Glances ======= -This manual describes *Glances* version 2.2. +This manual describes *Glances* version 2.3. Copyright © 2011-2015 Nicolas Hennion -Junuary 2015 +January 2015 .. contents:: Table of Contents @@ -719,7 +719,7 @@ By action, we mean all shell command line. For example, if you want to execute t critical=5.0 critical_action=python /path/to/foo.py -All the stats are usable in the command line by the use of the {{mustache}} syntax. Another example to create a log file containing used vs total disk space if a warning space trigger is reached: +All the stats are available in the command line through the use of the {{mustache}} syntax. Another example to create a log file containing used vs total disk space if a space trigger warning is reached: [fs] warning=70 diff --git a/glances/__init__.py b/glances/__init__.py index 7b14b3f3..0d29033a 100644 --- a/glances/__init__.py +++ b/glances/__init__.py @@ -20,7 +20,7 @@ """Init the Glances software.""" __appname__ = 'glances' -__version__ = '2.3_BETA' +__version__ = '2.3_RC1' __author__ = 'Nicolas Hennion ' __license__ = 'LGPL' diff --git a/setup.py b/setup.py index c58f87f3..e46c3484 100755 --- a/setup.py +++ b/setup.py @@ -52,13 +52,13 @@ def get_requires(): setup( name='Glances', - version='2.2', + version='2.3RC1', description="A cross-platform curses-based monitoring tool", long_description=open('README.rst').read(), author='Nicolas Hennion', author_email='nicolas@nicolargo.com', url='https://github.com/nicolargo/glances', - # download_url='https://s3.amazonaws.com/glances/glances-2.2.tar.gz', + # download_url='https://s3.amazonaws.com/glances/glances-2.3.tar.gz', license="LGPL", keywords="cli curses monitoring system", install_requires=get_requires(),