update ssview.py for view ServerStatus in console when attacked

pull/110/head
windows98 2021-07-14 12:02:35 +08:00
parent a77f94c8d6
commit 9601ef1655
1 changed files with 56 additions and 24 deletions

View File

@ -1,11 +1,25 @@
#!/usr/bin/env python #!/usr/bin/env python
# coding: utf-8 # coding: utf-8
# Update by : https://github.com/cppla/ServerStatus # Update by : https://github.com/cppla/ServerStatus
# 支持Python版本2.7 to 3.5; requirements.txt: requests, PrettyTable # 支持Python版本2.7 to 3.8; requirements.txt: requests, PrettyTable
# 时间: 20180828 # 时间: 20210714 主要是为了受到CC attack时候方便查看机器状态 && 程序在非gui环境下目前有闪屏的bug
'''
maybe better by youself """
''' ServerStatus in console or shell, demo:
+--------+----------+--------+----------+------+-------------+-----------------+--------+------+------+
| Flight | 节点名 | 位置 | 在线时间 | 负载 | 网络 | 流量 | 处理器 | 内存 | 硬盘 |
+--------+----------+--------+----------+------+-------------+-----------------+--------+------+------+
| MH361 | 微软云 | 香港 | 50 | 0.11 | 0.00M|0.00M | 195.93G|173.64G | 0% | 28% | 29% |
| MH361 | 腾讯云 | 香港 | 50 | 0.38 | 0.00M|0.00M | 51.89G|58.95G | 2% | 18% | 34% |
| MH361 | 微软云 | 新加坡 | 14 | 0.13 | 0.00M|0.00M | 17.28G|10.24G | 1% | 20% | 5% |
| MH361 | 甲骨文1 | 春川 | 61 | 0.0 | 0.00M|0.00M | 8.90G|10.20G | 0% | 25% | 5% |
| MH361 | 甲骨文2 | 春川 | 61 | 0.0 | 0.00M|0.00M | 11.82G|13.71G | 0% | 16% | 5% |
| MH370 | 甲骨文3 | 春川 | - | - | - | - | - | - | - |
| MH361 | cdn-aws1 | edge | 2 | 0.0 | 0.00M|0.00M | 5.33G|5.83G | 0% | 24% | 10% |
| MH361 | cdn-aws2 | edge | 1 | 0.03 | 0.01M|0.01M | 9.47G|4.97G | 0% | 17% | 18% |
| MH361 | cdn-aws3 | edge | 2 | 0.0 | 0.00M|0.00M | 3.73G|2.27G | 0% | 21% | 8% |
+--------+----------+--------+----------+------+-------------+-----------------+--------+------+------+
"""
import os import os
import sys import sys
@ -13,9 +27,9 @@ import requests
import time import time
from prettytable import PrettyTable from prettytable import PrettyTable
# todo: 程序在非gui环境下目前有闪屏的bug
scroll = True scroll = True
clear = lambda: os.system('clear' if 'linux' in sys.platform else 'cls') clear = lambda: os.system('clear' if 'linux' in sys.platform or 'darwin' in sys.platform else 'cls')
def sscmd(address): def sscmd(address):
while True: while True:
@ -43,6 +57,23 @@ def sscmd(address):
], ],
) )
for i in jsonR["servers"]: for i in jsonR["servers"]:
if i["online4"] is False and i["online6"] is False:
ss.add_row(
[
'MH370',
"%s" % i["name"],
# "%s" % i["type"],
"%s" % i["location"],
'-',
'-',
'-',
'-',
'-',
'-',
'-',
]
)
else:
ss.add_row( ss.add_row(
[ [
"%s" % 'MH361' if i["ip_status"] is True else 'MH370', "%s" % 'MH361' if i["ip_status"] is True else 'MH370',
@ -64,6 +95,7 @@ def sscmd(address):
print(ss) print(ss)
time.sleep(1) time.sleep(1)
if __name__ == '__main__': if __name__ == '__main__':
default = 'https://tz.cloudcpp.com/json/stats.json' default = 'https://tz.cloudcpp.com/json/stats.json'
ads = sys.argv[1] if len(sys.argv) == 2 else default ads = sys.argv[1] if len(sys.argv) == 2 else default