Glances version 3.1.2

This commit is contained in:
nicolargo 2019-08-27 16:35:40 +02:00
parent b229d0a531
commit 77731465ae
3 changed files with 23 additions and 11 deletions

View File

@ -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

View File

@ -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 programs 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
tasks 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
Tasks 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

View File

@ -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'