Skip to content

Commit 7773146

Browse files
committed
Glances version 3.1.2
1 parent b229d0a commit 7773146

File tree

3 files changed

+23
-11
lines changed

3 files changed

+23
-11
lines changed

NEWS.rst

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,21 @@ Version 3.1.2
77

88
Enhancements and new features:
99

10+
* Make CSV export append instead of replace #1525
11+
* HDDTEMP config IP and Port #1508
12+
* [Feature Request] Option in config to change character used to display percentage in Quicklook #1508
1013

1114
Bugs corrected:
15+
* Cannot restart glances with --export influxdb after update to 3.1.1 bug #1530
16+
* ip plugin empty interface bug #1509
17+
* Glances Snap doesn't run on Orange Pi Zero running Ubuntu Core 16 bug #1517
18+
* Error with IP Plugin : object has no attribute bug #1528
19+
* repair the problem that when running 'glances --stdout-csv amps' #1520
20+
* Possible typo in glances_influxdb.py #1514
1221

22+
Others:
23+
24+
* In debug mode (-d) all duration (init, update are now logged). Grep duration in log file.
1325

1426
Version 3.1.1
1527
=============
@@ -20,7 +32,7 @@ Enhancements and new features:
2032
* Add Load Average (similar to Linux) on Windows #344
2133
* Add authprovider for cassandra export (thanks to @EmilienMottet) #1395
2234
* Curses's browser server list sorting added (thanks to @limfreee) #1396
23-
* ElasticSearch: add date to index, unbreak object push (thanks to @genevera) # 1438
35+
* ElasticSearch: add date to index, unbreak object push (thanks to @genevera) #1438
2436
* Performance issue with large folder #1491
2537
* Can't connect to influxdb with https enabled #1497
2638

docs/man/glances.1

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Man page generated from reStructuredText.
22
.
3-
.TH "GLANCES" "1" "Aug 12, 2019" "3.1.2_BETA" "Glances"
3+
.TH "GLANCES" "1" "Aug 27, 2019" "3.1.2" "Glances"
44
.SH NAME
55
glances \- An eye on your system
66
.
@@ -54,7 +54,7 @@ show this help message and exit
5454
.INDENT 0.0
5555
.TP
5656
.B \-V, \-\-version
57-
show program\(aqs version number and exit
57+
show program’s version number and exit
5858
.UNINDENT
5959
.INDENT 0.0
6060
.TP
@@ -114,7 +114,7 @@ light mode for Curses UI (disable all but top menu)
114114
.INDENT 0.0
115115
.TP
116116
.B \-0, \-\-disable\-irix
117-
task\(aqs CPU usage will be divided by the total number of CPUs
117+
task’s CPU usage will be divided by the total number of CPUs
118118
.UNINDENT
119119
.INDENT 0.0
120120
.TP
@@ -449,7 +449,7 @@ Show/hide processes stats
449449
.B \fB0\fP
450450
Enable/disable Irix/Solaris mode
451451
.sp
452-
Task\(aqs CPU usage will be divided by the total number of CPUs
452+
Task’s CPU usage will be divided by the total number of CPUs
453453
.TP
454454
.B \fB1\fP
455455
Switch between global CPU and per\-CPU stats
@@ -800,7 +800,7 @@ $ glances \-w
800800
Monitor local machine and export stats to a CSV file:
801801
.INDENT 0.0
802802
.INDENT 3.5
803-
$ glances \-\-export csv \-\-export\-csv\-file /tmp/glances.csv
803+
$ glances export csv export\-csv\-file /tmp/glances.csv
804804
.UNINDENT
805805
.UNINDENT
806806
.sp
@@ -809,14 +809,14 @@ refresh time (also possible to export to OpenTSDB, Cassandra, Statsd,
809809
ElasticSearch, RabbitMQ and Riemann):
810810
.INDENT 0.0
811811
.INDENT 3.5
812-
$ glances \-t 5 \-\-export influxdb
812+
$ glances \-t 5 export influxdb
813813
.UNINDENT
814814
.UNINDENT
815815
.sp
816816
It is also possible to export stats to multiple endpoints:
817817
.INDENT 0.0
818818
.INDENT 3.5
819-
$ glances \-t 5 \-\-export influxdb,statsd,csv
819+
$ glances \-t 5 export influxdb,statsd,csv
820820
.UNINDENT
821821
.UNINDENT
822822
.sp
@@ -837,14 +837,14 @@ $ glances \-c <ip_server>
837837
Connect to a Glances server and export stats to a StatsD server:
838838
.INDENT 0.0
839839
.INDENT 3.5
840-
$ glances \-c <ip_server> \-\-export statsd
840+
$ glances \-c <ip_server> export statsd
841841
.UNINDENT
842842
.UNINDENT
843843
.sp
844844
Start the client browser (browser mode):
845845
.INDENT 0.0
846846
.INDENT 3.5
847-
$ glances \-\-browser
847+
$ glances browser
848848
.UNINDENT
849849
.UNINDENT
850850
.SH AUTHOR

glances/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import sys
2828

2929
# Global name
30-
__version__ = '3.1.2_BETA'
30+
__version__ = '3.1.2'
3131
__author__ = 'Nicolas Hennion <[email protected]>'
3232
__license__ = 'LGPLv3'
3333

0 commit comments

Comments
 (0)