summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2019-08-27 16:35:40 +0200
committernicolargo <nicolas@nicolargo.com>2019-08-27 16:35:40 +0200
commit77731465aecb2019411bc7f7812a0bb0d27398f5 (patch)
treebf14e09476d4d3a6c8168c4e46bdb169e87eb1e5
parentb229d0a5312ac469d5fd82e35e49e3b4b32befdc (diff)
Glances version 3.1.2v3.1.2
-rw-r--r--NEWS.rst14
-rw-r--r--docs/man/glances.118
-rw-r--r--glances/__init__.py2
3 files changed, 23 insertions, 11 deletions
diff --git a/NEWS.rst b/NEWS.rst
index fc2c33aa..307e404a 100644
--- a/NEWS.rst
+++ b/NEWS.rst
@@ -7,9 +7,21 @@ Version 3.1.2
Enhancements and new features:
+ * Make CSV export append instead of replace #1525
+ * HDDTEMP config IP and Port #1508
+ * [Feature Request] Option in config to change character used to display percentage in Quicklook #1508
Bugs corrected:
+ * Cannot restart glances with --export influxdb after update to 3.1.1 bug #1530
+ * ip plugin empty interface bug #1509
+ * Glances Snap doesn't run on Orange Pi Zero running Ubuntu Core 16 bug #1517
+ * Error with IP Plugin : object has no attribute bug #1528
+ * repair the problem that when running 'glances --stdout-csv amps' #1520
+ * Possible typo in glances_influxdb.py #1514
+Others:
+
+ * In debug mode (-d) all duration (init, update are now logged). Grep duration in log file.
Version 3.1.1
=============
@@ -20,7 +32,7 @@ Enhancements and new features:
* Add Load Average (similar to Linux) on Windows #344
* Add authprovider for cassandra export (thanks to @EmilienMottet) #1395
* Curses's browser server list sorting added (thanks to @limfreee) #1396
- * ElasticSearch: add date to index, unbreak object push (thanks to @genevera) # 1438
+ * ElasticSearch: add date to index, unbreak object push (thanks to @genevera) #1438
* Performance issue with large folder #1491
* Can't connect to influxdb with https enabled #1497
diff --git a/docs/man/glances.1 b/docs/man/glances.1
index 40012a62..66f52877 100644
--- a/docs/man/glances.1
+++ b/docs/man/glances.1
@@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
-.TH "GLANCES" "1" "Aug 12, 2019" "3.1.2_BETA" "Glances"
+.TH "GLANCES" "1" "Aug 27, 2019" "3.1.2" "Glances"
.SH NAME
glances \- An eye on your system
.
@@ -54,7 +54,7 @@ show this help message and exit
.INDENT 0.0
.TP
.B \-V, \-\-version
-show program\(aqs version number and exit
+show program’s version number and exit
.UNINDENT
.INDENT 0.0
.TP
@@ -114,7 +114,7 @@ light mode for Curses UI (disable all but top menu)
.INDENT 0.0
.TP
.B \-0, \-\-disable\-irix
-task\(aqs CPU usage will be divided by the total number of CPUs
+task’s CPU usage will be divided by the total number of CPUs
.UNINDENT
.INDENT 0.0
.TP
@@ -449,7 +449,7 @@ Show/hide processes stats
.B \fB0\fP
Enable/disable Irix/Solaris mode
.sp
-Task\(aqs CPU usage will be divided by the total number of CPUs
+Task’s CPU usage will be divided by the total number of CPUs
.TP
.B \fB1\fP
Switch between global CPU and per\-CPU stats
@@ -800,7 +800,7 @@ $ glances \-w
Monitor local machine and export stats to a CSV file:
.INDENT 0.0
.INDENT 3.5
-$ glances \-\-export csv \-\-export\-csv\-file /tmp/glances.csv
+$ glances –export csv –export\-csv\-file /tmp/glances.csv
.UNINDENT
.UNINDENT
.sp
@@ -809,14 +809,14 @@ refresh time (also possible to export to OpenTSDB, Cassandra, Statsd,
ElasticSearch, RabbitMQ and Riemann):
.INDENT 0.0
.INDENT 3.5
-$ glances \-t 5 \-\-export influxdb
+$ glances \-t 5 –export influxdb
.UNINDENT
.UNINDENT
.sp
It is also possible to export stats to multiple endpoints:
.INDENT 0.0
.INDENT 3.5
-$ glances \-t 5 \-\-export influxdb,statsd,csv
+$ glances \-t 5 –export influxdb,statsd,csv
.UNINDENT
.UNINDENT
.sp
@@ -837,14 +837,14 @@ $ glances \-c <ip_server>
Connect to a Glances server and export stats to a StatsD server:
.INDENT 0.0
.INDENT 3.5
-$ glances \-c <ip_server> \-\-export statsd
+$ glances \-c <ip_server> –export statsd
.UNINDENT
.UNINDENT
.sp
Start the client browser (browser mode):
.INDENT 0.0
.INDENT 3.5
-$ glances \-\-browser
+$ glances –browser
.UNINDENT
.UNINDENT
.SH AUTHOR
diff --git a/glances/__init__.py b/glances/__init__.py
index 5249db99..e2d5976c 100644
--- a/glances/__init__.py
+++ b/glances/__init__.py
@@ -27,7 +27,7 @@ import signal
import sys
# Global name
-__version__ = '3.1.2_BETA'
+__version__ = '3.1.2'
__author__ = 'Nicolas Hennion <nicolas@nicolargo.com>'
__license__ = 'LGPLv3'