mirror of https://github.com/nicolargo/glances.git
Remove pystache by chevron (mustache implementation) #1817
This commit is contained in:
parent
551bdbfe85
commit
829174bbf0
|
|
@ -65,6 +65,7 @@ Optional dependencies:
|
|||
- ``bernhard`` (for the Riemann export module)
|
||||
- ``bottle`` (for Web server mode)
|
||||
- ``cassandra-driver`` (for the Cassandra export module)
|
||||
- ``chevron`` (for the action script feature)
|
||||
- ``couchdb`` (for the CouchDB export module)
|
||||
- ``docker`` (for the Docker monitoring support) [Linux/macOS-only]
|
||||
- ``elasticsearch`` (for the Elastic Search export module)
|
||||
|
|
@ -82,7 +83,6 @@ Optional dependencies:
|
|||
- ``pymdstat`` (for RAID support) [Linux-only]
|
||||
- ``pySMART.smartx`` (for HDD Smart support) [Linux-only]
|
||||
- ``pysnmp`` (for SNMP support)
|
||||
- ``pystache`` (for the action script feature)
|
||||
- ``pyzmq`` (for the ZeroMQ export module)
|
||||
- ``requests`` (for the Ports, Cloud plugins and RESTful export module)
|
||||
- ``scandir`` (for the Folders plugin) [Only for Python < 3.5]
|
||||
|
|
|
|||
|
|
@ -87,7 +87,7 @@ install:
|
|||
- "powershell .ci\\appveyor\\install.ps1"
|
||||
# - ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py')
|
||||
- "%WITH_COMPILER% %PYTHON%/python.exe -m pip --version"
|
||||
- "%WITH_COMPILER% %PYTHON%/python.exe -m pip install --upgrade --user psutil bottle requests netifaces pystache py-cpuinfo scandir"
|
||||
- "%WITH_COMPILER% %PYTHON%/python.exe -m pip install --upgrade --user psutil bottle requests netifaces chevron py-cpuinfo scandir"
|
||||
- "%WITH_COMPILER% %PYTHON%/python.exe -m pip freeze"
|
||||
- "%WITH_COMPILER% %PYTHON%/python.exe setup.py install"
|
||||
|
||||
|
|
|
|||
|
|
@ -155,7 +155,7 @@ nf_conntrack_percent_warning=80
|
|||
nf_conntrack_percent_critical=90
|
||||
|
||||
[wifi]
|
||||
disable=False
|
||||
disable=True
|
||||
# Define the list of hidden wireless network interfaces (comma-separated regexp)
|
||||
hide=lo,docker.*
|
||||
# Define SIGNAL thresholds in db (lower is better...)
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ then add the ``_action`` line to the Glances configuration file:
|
|||
critical_action=python /path/to/foo.py
|
||||
|
||||
All the stats are available in the command line through the use of the
|
||||
`{{mustache}}`_ syntax. `Pystache`_ is required to render the mustache's template syntax.
|
||||
`{{mustache}}`_ syntax. `Chevron`_ is required to render the mustache's template syntax.
|
||||
|
||||
Another example would be to create a log file
|
||||
containing used vs total disk space if a space trigger warning is
|
||||
|
|
@ -74,4 +74,4 @@ use with caution:
|
|||
critical_action_repeat=/home/myhome/bin/bipper.sh
|
||||
|
||||
.. _{{mustache}}: https://mustache.github.io/
|
||||
.. _Pystache: https://github.com/defunkt/pystache
|
||||
.. _Chevron: https://github.com/noahmorrison/chevron
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -51,7 +51,7 @@ def get_install_requires():
|
|||
|
||||
def get_install_extras_require():
|
||||
extras_require = {
|
||||
'action': ['pystache'],
|
||||
'action': ['chevron'],
|
||||
# Zeroconf 0.19.1 is the latest one compatible with Python 2 (issue #1293)
|
||||
'browser': ['zeroconf==0.19.1' if PY2 else 'zeroconf>=0.19.1'],
|
||||
'cloud': ['requests'],
|
||||
|
|
|
|||
Loading…
Reference in New Issue