提交 f88d8f53 编写于 作者: N Nicolas Hennion

version 1.7.6

上级 0259a729
Version 1.7.6
=============
* Adapt to psutil 2.0.0 API
* Fixed psutil 0.5.x support on Windows
* Fix help screen in 80x24 terminal size
* Implement toggle of process list display ('z' key)
Version 1.7.5
=============
......
......@@ -28,7 +28,7 @@ Requirements
============
- ``python >= 2.6`` (tested with version 2.6, 2.7, 3.2, 3.3)
- ``psutil >= 0.5.1`` (recommended version >= 1.2.1)
- ``psutil >= 0.5.1`` (recommended version >= 2.0)
- ``setuptools``
Optional dependencies:
......
......@@ -123,9 +123,9 @@ td.option-group {
<div class="document" id="glances">
<h1 class="title">Glances</h1>
<p>This manual describes <em>Glances</em> version 1.7.5.</p>
<p>This manual describes <em>Glances</em> version 1.7.6.</p>
<p>Copyright © 2012-2014 Nicolas Hennion &lt;<a class="reference external" href="mailto:nicolas&#64;nicolargo.com">nicolas&#64;nicolargo.com</a>&gt;</p>
<p>January 2014</p>
<p>March 2014</p>
<div class="contents topic" id="table-of-contents">
<p class="topic-title first">Table of Contents</p>
<ul class="simple">
......@@ -324,6 +324,8 @@ just run on the server:</p>
<dd>Delete finished warning and critical log messages</dd>
<dt><tt class="docutils literal">y</tt></dt>
<dd>Show/hide hddtemp stats (only available with -y flag)</dd>
<dt><tt class="docutils literal">z</tt></dt>
<dd>Show/hide processes list (for low CPU consumption)</dd>
<dt><tt class="docutils literal">1</tt></dt>
<dd>Switch between global CPU and per-CPU stats</dd>
</dl>
......
......@@ -2,11 +2,11 @@
Glances
=======
This manual describes *Glances* version 1.7.5.
This manual describes *Glances* version 1.7.6.
Copyright © 2012-2014 Nicolas Hennion <nicolas@nicolargo.com>
January 2014
March 2014
.. contents:: Table of Contents
......
.. Glances documentation master file, created by
sphinx-quickstart on Tue Mar 25 19:57:21 2014.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to Glances's documentation!
===================================
**Glances** is a cross-platform curses-based monitoring tool written in Python.
It uses the psutil library and some internal code to get information from your system.
.. image:: https://raw.github.com/nicolargo/glances/master/docs/images/screenshot-wide.png
Get the code
------------
The `source <http://github.com/nicolargo/glances>`_ is available on GitHub.
Contents
--------
Contents:
.. toctree::
:maxdepth: 2
glances-doc
Indices and tables
==================
......@@ -26,3 +19,4 @@ Indices and tables
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
......@@ -19,7 +19,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
__appname__ = 'glances'
__version__ = "1.7.5"
__version__ = "1.7.6"
__author__ = "Nicolas Hennion <nicolas@nicolargo.com>"
__licence__ = "LGPL"
......@@ -903,7 +903,7 @@ class glancesLogs:
if item_type.startswith("MEM"):
# Sort TOP process by memory_percent
sortby = 'memory_percent'
elif item_type.startswith("CPU IO") and is_Linux:
elif item_type.startswith("CPU_IO") and is_Linux:
# Sort TOP process by io_counters (only for Linux OS)
sortby = 'io_counters'
elif item_type.startswith("MON"):
......
.TH glances 1 "March, 2014" "version 1.7.5" "USER COMMANDS"
.TH glances 1 "March, 2014" "version 1.7.6" "USER COMMANDS"
.SH NAME
glances \- A cross-platform curses-based monitoring tool
.SH SYNOPSIS
......
......@@ -33,13 +33,13 @@ else:
setup(
name='Glances',
version='1.7.5',
version='1.7.6',
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-1.7.5.tar.gz',
# download_url='https://s3.amazonaws.com/glances/glances-1.7.6.tar.gz',
license="LGPL",
keywords="cli curses monitoring system",
install_requires=requires,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册