version 1.4.2

pull/98/head v1.4.2
Nicolas Hennion 2012-09-22 15:24:32 +02:00
parent b5d68b1cc3
commit 9799932403
4 changed files with 28 additions and 8 deletions

2
NEWS
View File

@ -3,6 +3,8 @@ Version 1.4.2
* Use the news virtual_memory() and virtual_swap() fct (PsUtil) * Use the news virtual_memory() and virtual_swap() fct (PsUtil)
* Display "Top process" in logs * Display "Top process" in logs
* Minor patch on man page for Debian packaging
* Code optimization (less try and except)
Version 1.4.1.1 Version 1.4.1.1
=============== ===============

View File

@ -20,7 +20,7 @@
# #
__appname__ = 'glances' __appname__ = 'glances'
__version__ = "1.4.2b" __version__ = "1.4.2"
__author__ = "Nicolas Hennion <nicolas@nicolargo.com>" __author__ = "Nicolas Hennion <nicolas@nicolargo.com>"
__licence__ = "LGPL" __licence__ = "LGPL"

View File

@ -1,4 +1,4 @@
.TH glances 1 "January, 2012" "version 1.3.7" "USER COMMANDS" .TH glances 1 "September, 2012" "version 1.4.2" "USER COMMANDS"
.SH NAME .SH NAME
glances \- CLI curses based monitoring tool glances \- CLI curses based monitoring tool
.SH SYNOPSIS .SH SYNOPSIS
@ -7,7 +7,7 @@ glances \- CLI curses based monitoring tool
.SH DESCRIPTION .SH DESCRIPTION
Glances is a free (LGPL) curses-based monitoring tool which aims to present a maximum of information Glances is a free (LGPL) curses-based monitoring tool which aims to present a maximum of information
in a minimum of space, ideally to fit in a classical 80x24 terminal. Glances can adapt dynamicaly the in a minimum of space, ideally to fit in a classical 80x24 terminal. Glances can adapt dynamicaly the
displayed informations depending on the terminal size. displayed information depending on the terminal size.
.PP .PP
This tool is written in Python and uses PsUtil to fetch the statistical values from key elements. This tool is written in Python and uses PsUtil to fetch the statistical values from key elements.
.PP .PP
@ -36,13 +36,31 @@ process number and details.
.SH OPTIONS .SH OPTIONS
.TP .TP
.TP .TP
\-b
Display network rate in Byte per second
.TP
\-d
Disable disk I/O module
.TP
\-f file
Set the output folder (HTML) or file (CSV)
.TP
\-h \-h
Display the syntax and exit Display the syntax and exit
.TP .TP
\-t \-m
Set the refresh time in second default is 1 Disable mount module
.TP .TP
-v \-n
Disable network module
.TP
\-o output
Define additional output (available: HTML or CSV)
.TP
\-t sec
Set the refresh time in seconds (default: 2)
.TP
\-v
Display the version and exit Display the version and exit
.SH EXAMPLES .SH EXAMPLES
.TP .TP

View File

@ -23,8 +23,8 @@ for mo in glob('i18n/*/LC_MESSAGES/*.mo'):
data_files.append((dirname(mo).replace('i18n/', 'share/locale/'), [mo])) data_files.append((dirname(mo).replace('i18n/', 'share/locale/'), [mo]))
setup(name='Glances', setup(name='Glances',
version='1.4.1.1', version='1.4.2',
download_url='https://github.com/downloads/nicolargo/glances/glances-1.4.1.1.tar.gz', download_url='https://github.com/downloads/nicolargo/glances/glances-1.4.2.tar.gz',
url='https://github.com/nicolargo/glances', url='https://github.com/nicolargo/glances',
description='CLI curses-based monitoring tool', description='CLI curses-based monitoring tool',
author='Nicolas Hennion', author='Nicolas Hennion',