pyspectator_tornado is a web-monitoring tool ported on Tornado with pyspectator as a main monitoring module. It's able to collect and display general information about workstation, cpu, memory, disk devices and network.
- OS: Linux, Windows, FreeBSD, Solaris
- Python version: 3.X
- Packages: pyspectator, tornado
Run as root user:
pip install -U pyspectator_tornado
To start working with pyspectator_tornado system you must execute file "start.py" in a root directory of project.
Most simple method, where pyspectator_tornado will be binded on port "8888" and available by address: "localhost:8888":
python start.py
If you want use simple address "localhost" or port "8888" is busy by another application, you specify custom port, for example:
python start.py --port=80
# now pyspectator_tornado is available by address "localhost"
Also you can bind site with some domain name:
python start.py --port=80 --address=your-domain-name.com
# now pyspectator_tornado is available by next addresses:
# "localhost" and "your-domain-name.com"