Skip to content

Commit

Permalink
version 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolargo committed Oct 16, 2022
1 parent 4cdd2d9 commit 7003616
Show file tree
Hide file tree
Showing 10 changed files with 571 additions and 555 deletions.
48 changes: 47 additions & 1 deletion NEWS.rst
Expand Up @@ -6,7 +6,53 @@
Version 3.3.0
===============

Version under development: see roadmap here https://github.com/nicolargo/glances/milestone/60
Enhancements:

* Migration from AngularJS to Angular/React/Vue #2100 (many thanks to @fr4nc0is)
* Improve the IP module with a link to Censys #2105
* Add the public IP information to the WebUI #2105
* Add an option to show a configurable clock/time module to display #2150
* Add sort information on Docker plugin (console mode). Related to #2138
* Password files in same configuration dir in effect #2143
* If the container name is long, then display the start, not the end - Related to #1732
* Make the Web UI same than Console for CPU plugin
* [WINDOWS] Reorganise CPU stats display #2131
* Remove the static exportable_plugins list from glances_export.py #1556
* Limiting data exported for economic storage #1443

Bug corrected:

* glances.conf FS hide not applying #1666
* AMP: regex with special chars #2152
* fix(help-screen): add missing shortcuts and columnize algorithmically #2135
* Correct issue with the regexp filter (use fullmatch instead of match)
* Errors when running Glances as web service #1702
* Apply alias to Duplicate sensor name #1686
* Make the hide function in sensors section compliant with lower/upercase #1590
* Web UI truncates the days part of CPU time counter of the process list #2108
* Correct alignement issue with the diskio plugin (Console UI)

Documentation and CI:

* Refactor Docker file CI
* Add Codespell to the CI pipeline #2148
* Please add docker-compose example and document example. #2151
* [DOC] Glances failed to start and some other issues - BSD #2106
* [REQUEST Docker image] Output log to stdout #2128 (for debian)
* Fix code scanning alert - Clear-text logging of sensitive information #2124
* Improve makefile (with online documentation)
* buildx failed with: ERROR: failed to solve: python:3.10-slim-buster: no match for platform in manifest #2120
* [Update docs] Can I export only the fields I need in csv report? #2113
* Windows Python 3 installation fails on dependency package "future" #2109

Contributors for this version:

* fr4nc0is : a very special thanks to @fr4nc0is for his huge work on the Glances v3.3.0 WebUI !!!
* Kostis Anagnostopoulos
* Kian-Meng Ang
* dependabot[bot]
* matthewaaronthacker
* and your servant Nicolargo

===============
Version 3.2.7
Expand Down
24 changes: 10 additions & 14 deletions README.rst
Expand Up @@ -57,15 +57,6 @@ Glances is written in Python and uses libraries to grab information from
your system. It is based on an open architecture where developers can
add new plugins or exports modules.

Social networks
===============

.. image:: https://raw.githubusercontent.com/nicolargo/glances/develop/docs/_static/twitter-icon.png
:target: https://twitter.com/nicolargo

.. image:: https://raw.githubusercontent.com/nicolargo/glances/develop/docs/_static/reddit.png
:target: https://www.reddit.com/r/glances/

Requirements
============

Expand All @@ -86,6 +77,7 @@ Glances version 4.0 will no longer supports Python 2.x.

Optional dependencies:

- ``batinfo`` (for battery monitoring)
- ``bernhard`` (for the Riemann export module)
- ``bottle`` (for Web server mode)
- ``cassandra-driver`` (for the Cassandra export module)
Expand Down Expand Up @@ -148,7 +140,7 @@ To install it, use the following command:
pip install --user 'glances[web]'
For a full installation (with all features:
For a full installation (with all features):

.. code-block:: console
Expand Down Expand Up @@ -205,7 +197,7 @@ The following tags are availables:
- *alpine-latest* for a basic Alpine Glances (latest release) version with minimal dependencies
- *latest* for a basic Debian Glances image (latest release) with minimal dependencies
- *alpine-dev* for a basic Alpine Glances image (development branch) with all dependencies
- *latest* for a basic Debian Glances image (development branch) with all dependencies
- *dev* for a basic Debian Glances image (development branch) with all dependencies

You can also specify a version (example: *alpine-3.2.7-full*).

Expand Down Expand Up @@ -250,7 +242,8 @@ may not be the latest version.

Note: The Debian package (and all other Debian-based distributions) do
not include anymore the JS statics files used by the Web interface
(see ``issue2021``).
(see ``issue2021``). If you want to add it to your Glances installation,
follow the instructions: ``issue2021comment``.

FreeBSD
-------
Expand Down Expand Up @@ -454,7 +447,9 @@ Donation

If you like this open-source project, you can become a sponsor.

See the sponsors_ page (one-time or monthly tier available).
See the Github sponsors_ page (one-time or monthly tier available).

Or send me some bitcoins: 185KN9FCix3svJYp7JQM7hRMfSKyeaJR4X

Author
======
Expand All @@ -478,4 +473,5 @@ Glances is distributed under the LGPL version 3 license. See ``COPYING`` for mor
.. _wiki: https://github.com/nicolargo/glances/wiki/How-to-contribute-to-Glances-%3F
.. _package: https://repology.org/metapackage/glances/packages
.. _sponsors: https://github.com/sponsors/nicolargo
.. _issue2021: https://github.com/nicolargo/glances/issues/2021#issuecomment-1197831157
.. _issue2021: https://github.com/nicolargo/glances/issues/2021#issuecomment-1197831157
.. _issue2021comment: https://github.com/nicolargo/glances/issues/2021#issuecomment-1197831157
1 change: 0 additions & 1 deletion conf/glances.conf
Expand Up @@ -581,7 +581,6 @@ db=glances
#user=root
#password=root


[kafka]
# Configuration for the --export kafka option
# http://kafka.apache.org/
Expand Down
24 changes: 21 additions & 3 deletions docker-compose/glances.conf
Expand Up @@ -175,6 +175,17 @@ tx_critical=90

[ip]
disable=False
public_refresh_interval=300
public_ip_disabled=False
# Configuration for the Censys online service
# Need to create an aacount: https://censys.io/login
censys_url=https://search.censys.io/api
# Get your own credential here: https://search.censys.io/account/api
# Enter your credential and uncomment the following lines
#censys_username=<censys_api_id>
#censys_password=<censys_secret>
# List of fields to be displayed in user interface (comma separated)
censys_fields=location:continent,location:country,autonomous_system:name

[connections]
# Display additional information about TCP connections
Expand Down Expand Up @@ -209,9 +220,9 @@ hide=loop.*,/dev/loop*

[fs]
disable=False
# Define the list of hidden file system (comma-separated regexp)
# Define the list of file system to hide (comma-separated regexp)
hide=/boot.*,/snap.*
# Define the list of file system to be show (comma-separated)
# Define the list of file system to show (comma-separated regexp)
#show=/,/srv
# Define filesystem space thresholds in %
# Default values if not defined: 50/70/90
Expand Down Expand Up @@ -290,6 +301,9 @@ battery_critical=95
# Sensors alias
#temp1_alias=Motherboard 0
#temp2_alias=Motherboard 1
#core 0_temperature_core_alias=CPU Core 0 temp
#core 0_fans_speed_alias=CPU Core 0 fan
#or
#core 0_alias=CPU Core 0
#core 1_alias=CPU Core 1

Expand Down Expand Up @@ -419,13 +433,16 @@ disable=False
#server_4_port=61237

[passwords]
# Define the passwords list
# Define the passwords list related to the [serverlist] section
# Syntax: host=password
# Where: host is the hostname
# password is the clear password
# Additionally (and optionally) a default password could be defined
#localhost=abc
#default=defaultpassword
#
# Define the path of the local '.pwd' file (default is system one)
#local_password_path=~/.config/glances

##############################################################################
# Exports
Expand Down Expand Up @@ -561,6 +578,7 @@ host=localhost
port=5984
db=glances
# user and password are optional (comment if not configured on the server side)
# If they are used, then the https protocol will be used
#user=root
#password=root

Expand Down

0 comments on commit 7003616

Please sign in to comment.