Linux 186-227-203-186.cprapid.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
Apache
Server IP : 186.227.203.186 & Your IP : 216.73.217.146
Domains : 154 Domain
User : pmcaxingo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
usr /
share /
lve-stats /
Delete
Unzip
Name
Size
Permission
Date
Action
plugins
[ DIR ]
drwxr-xr-x
2026-02-17 11:00
plugins.other
[ DIR ]
drwxr-xr-x
2026-03-29 18:13
scriptlets
[ DIR ]
drwxr-xr-x
2026-03-29 18:13
utils
[ DIR ]
drwxr-xr-x
2026-03-29 18:13
cloudlinux-statistics.py
1.13
KB
-rw-r--r--
2026-02-17 11:00
cloudlinux-statsnotifier.py
517
B
-rw-r--r--
2026-02-17 11:00
cloudlinux-top.py
754
B
-rw-r--r--
2026-02-17 11:00
configure-lvestats-burstwatcher.sh
477
B
-r-xr-xr-x
2026-02-17 11:00
dbgovchart.py
756
B
-rw-r--r--
2026-02-17 11:00
lve-bursting-cleanup.py
2.93
KB
-rw-r--r--
2026-02-17 11:00
lve-bursting-info.py
488
B
-rw-r--r--
2026-02-17 11:00
lve-create-db.py
704
B
-rw-r--r--
2026-02-17 11:00
lve-read-snapshot.py
749
B
-rw-r--r--
2026-02-17 11:00
lve_stats_configs_reader
17.9
KB
-rwsr-xr-x
2026-02-17 11:00
lvechart.py
852
B
-rw-r--r--
2026-02-17 11:00
lveinfo.py
681
B
-rw-r--r--
2026-02-17 11:00
lvestats-burstwatcher.py
1.04
KB
-rw-r--r--
2026-02-17 11:00
lvestats-server.py
2.42
KB
-rw-r--r--
2026-02-17 11:00
Save
Rename
# coding=utf-8 # # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT import sys import lvestats.lib.commons.decorators from clcommon.lib.cledition import lve_supported_or_exit from clcommon.utils import silence_stdout_until_process_exit from lvestats.lib import config from lvestats.lib.chart.lvechartmain import LveChart __author__ = 'shaman' @lvestats.lib.commons.decorators.no_sigpipe @lve_supported_or_exit def main(cnf): result = LveChart(cnf).main(args=sys.argv[1:]) silence_stdout_until_process_exit() return result if __name__ == '__main__': try: exitcode = main(config.read_config()) except config.ConfigError as ce: ce.log_and_exit() else: sys.exit(exitcode)