@@ -9,9 +9,13 @@ Glances - An eye on your system
99 :target: https://github.com/nicolargo/glances/
1010 :alt: Github stars
1111
12+ .. image :: https://img.shields.io/docker/pulls/nicolargo/glances
13+ :target: https://hub.docker.com/r/nicolargo/glances/
14+ :alt: Docker pull
15+
1216.. image :: https://pepy.tech/badge/glances/month
1317 :target: https://pepy.tech/project/glances
14- :alt: Downloads
18+ :alt: Pypi downloads
1519
1620.. image :: https://img.shields.io/travis/nicolargo/glances/master.svg?maxAge=3600&label=Linux%20/%20BSD%20/%20macOS
1721 :target: https://travis-ci.org/nicolargo/glances
@@ -24,8 +28,8 @@ Glances - An eye on your system
2428.. image :: https://scrutinizer-ci.com/g/nicolargo/glances/badges/quality-score.png?b=develop
2529 :target: https://scrutinizer-ci.com/g/nicolargo/glances/?branch=develop
2630
27- .. image :: https://img.shields.io/badge/Donate-PayPal-green.svg
28- :target: https://www.paypal.me /nicolargo
31+ .. image :: https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&link=https://github.com/sponsors/nicolargo
32+ :target: https://github.com/sponsors /nicolargo
2933
3034.. image :: https://img.shields.io/twitter/url/https/twitter.com/cloudposse.svg?style=social&label=Follow%20%40nicolargo
3135 :target: https://twitter.com/nicolargo
@@ -65,7 +69,8 @@ Optional dependencies:
6569- ``docker `` (for the Docker monitoring support) [Linux/macOS-only]
6670- ``elasticsearch `` (for the Elastic Search export module)
6771- ``hddtemp `` (for HDD temperature monitoring support) [Linux-only]
68- - ``influxdb `` (for the InfluxDB export module)
72+ - ``influxdb `` (for the InfluxDB version 1 export module)
73+ - ``influxdb-client `` (for the InfluxDB version 2 export module) [Only for Python >= 3.6]
6974- ``kafka-python `` (for the Kafka export module)
7075- ``netifaces `` (for the IP plugin)
7176- ``nvidia-ml-py3 `` (for the GPU plugin)
@@ -161,31 +166,44 @@ If you need to install Glances in a specific user location, use:
161166 export PYTHONUSERBASE=~/mylocalpath
162167 pip install --user glances
163168
169+ The current develop branch is also published to the test.pypi.org package index.
170+ If you want to test the develop version, enter:
171+
172+ .. code-block :: console
173+
174+ pip install -i https://test.pypi.org/simple/ Glances
175+
164176 Docker: the funny way
165177---------------------
166178
167179A Glances container is available. It includes the latest development
168180HEAD version. You can use it to monitor your server and all your other
169181containers!
170182
171- Get the Glances container:
183+ Get the Glances container (latest develop branch) :
172184
173185.. code-block :: console
174186
175- docker pull nicolargo/glances
187+ docker pull nicolargo/glances:dev
188+
189+ Note, you can choose another branch with :
190+
191+ - nicolargo/glances:latest for the last master branch (included multiple architectures 386, amd64, arm/v7 and arm64)
192+ - nicolargo/glances:dev for the last develop branch (included multiple architectures 386, amd64, arm/v7 and arm64)
193+ - nicolargo/glances:<version> for the specific <version> (included multiple architectures 386, amd64, arm/v7 and arm64)
176194
177195Run the container in *console mode *:
178196
179197.. code-block :: console
180198
181- docker run --rm -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host --network host -it docker.io/ nicolargo/glances
199+ docker run --rm -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host --network host -it nicolargo/glances:dev
182200
183201 Additionally, if you want to use your own glances.conf file, you can
184202create your own Dockerfile:
185203
186204.. code-block :: console
187205
188- FROM nicolargo/glances
206+ FROM nicolargo/glances:dev
189207 COPY glances.conf /glances/conf/glances.conf
190208 CMD python -m glances -C /glances/conf/glances.conf $GLANCES_OPT
191209
@@ -194,7 +212,7 @@ docker run options:
194212
195213.. code-block :: console
196214
197- docker run -v `pwd`/glances.conf:/glances/conf/glances.conf -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host -it docker.io/ nicolargo/glances
215+ docker run -v `pwd`/glances.conf:/glances/conf/glances.conf -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host -it nicolargo/glances:dev
198216
199217 Where \` pwd\` /glances.conf is a local directory containing your glances.conf file.
200218
@@ -203,7 +221,7 @@ variable setting parameters for the glances startup command):
203221
204222.. code-block :: console
205223
206- docker run -d --restart="always" -p 61208-61209:61208-61209 -e GLANCES_OPT="-w" -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host docker.io/ nicolargo/glances
224+ docker run -d --restart="always" -p 61208-61209:61208-61209 -e GLANCES_OPT="-w" -v /var/run/docker.sock:/var/run/docker.sock:ro --pid host nicolargo/glances:dev
207225
208226 GNU/Linux
209227---------
@@ -416,8 +434,7 @@ Donation
416434
417435If this project help you, you can give me a tip ;)
418436
419- .. image :: https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif
420- :target: https://www.paypal.me/nicolargo
437+ See the sponsors _ page.
421438
422439Author
423440======
@@ -440,3 +457,4 @@ Glances is distributed under the LGPL version 3 license. See ``COPYING`` for mor
440457.. _forum : https://groups.google.com/forum/?hl=en#!forum/glances-users
441458.. _wiki : https://github.com/nicolargo/glances/wiki/How-to-contribute-to-Glances-%3F
442459.. _package : https://repology.org/metapackage/glances/packages
460+ .. _sponsors : https://github.com/sponsors/nicolargo
0 commit comments