📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-22 05:41:23
📂
/ (Root)
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
cl_plus
📍 /opt/cloudlinux/venv/lib/python3.11/site-packages/cl_plus
🔄 Refresh
✏️
Editing: consts.py
Read Only
# coding=utf-8 # # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2020 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENCE.TXT # # pylint: disable=no-absolute-import import re # This variable will be updated by RPM spec during build process PKG_VERSION = "1.1.20-1.el8.cloudlinux" # in order to remove difference in version between 6/7/8 cl # cm-1.0.0-1.el7h.cloudlinux.rpm -> cm-1.0.0-1.elX.cloudlinux.rpm # cm-1.0.0-1.el8.cloudlinux.rpm -> cm-1.0.0-1.elX.cloudlinux.rpm PKG_VERSION_TINY = re.sub(r'\.el\w(h?)\.', '.elX.', PKG_VERSION) # https://cl.sentry.cloudlinux.com/settings/cloudlinux_os/projects/cmt-endservertools/ SENTRY_DSN = 'https://f0bce3fe36914408a5cf9e8ca781286c@cl.sentry.cloudlinux.com/3' # Family metric sample indexes (for node_exporter metrics) METRIC_NAME = 0 METRIC_LABELS = 1 METRIC_VALUE = 2 COLLECTORS_DEFAULT_INTERVAL = 5 # seconds
💾 Save Changes
❌ Cancel