Skip to content

it-geeks-club/pyspectator-website

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Summary

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.

Screenshots

General information

CPU

Disk devices

Network

Requirements

  • OS: Linux, Windows, FreeBSD, Solaris
  • Python version: 3.X
  • Packages: pyspectator, tornado

How to install

Run as root user:

pip install -U pyspectator_tornado

How to use

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"