LinuxMonitor 1.3.7__tar.gz → 1.3.8__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {linuxmonitor-1.3.7 → linuxmonitor-1.3.8/LinuxMonitor.egg-info}/PKG-INFO +1 -1
- {linuxmonitor-1.3.7/LinuxMonitor.egg-info → linuxmonitor-1.3.8}/PKG-INFO +1 -1
- {linuxmonitor-1.3.7 → linuxmonitor-1.3.8}/linuxmonitor/linuxmonitor.py +3 -3
- {linuxmonitor-1.3.7 → linuxmonitor-1.3.8}/setup.py +1 -1
- {linuxmonitor-1.3.7 → linuxmonitor-1.3.8}/LICENSE.md +0 -0
- {linuxmonitor-1.3.7 → linuxmonitor-1.3.8}/LinuxMonitor.egg-info/SOURCES.txt +0 -0
- {linuxmonitor-1.3.7 → linuxmonitor-1.3.8}/LinuxMonitor.egg-info/dependency_links.txt +0 -0
- {linuxmonitor-1.3.7 → linuxmonitor-1.3.8}/LinuxMonitor.egg-info/requires.txt +0 -0
- {linuxmonitor-1.3.7 → linuxmonitor-1.3.8}/LinuxMonitor.egg-info/top_level.txt +0 -0
- {linuxmonitor-1.3.7 → linuxmonitor-1.3.8}/README.md +0 -0
- {linuxmonitor-1.3.7 → linuxmonitor-1.3.8}/linuxmonitor/__init__.py +0 -0
- {linuxmonitor-1.3.7 → linuxmonitor-1.3.8}/linuxmonitor/__main__.py +0 -0
- {linuxmonitor-1.3.7 → linuxmonitor-1.3.8}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: LinuxMonitor
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.8
|
|
4
4
|
Summary: Get information and warning status of Linux server like service, port, ping, ssl certificate, disk/folder/cpu/ram/swap usage, ip connection, ... (Python and shell library, Linux ONLY)
|
|
5
5
|
Home-page: https://github.com/QuentinCG/Linux-Monitor-Python-Library
|
|
6
6
|
Author: Quentin Comte-Gaz
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: LinuxMonitor
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.8
|
|
4
4
|
Summary: Get information and warning status of Linux server like service, port, ping, ssl certificate, disk/folder/cpu/ram/swap usage, ip connection, ... (Python and shell library, Linux ONLY)
|
|
5
5
|
Home-page: https://github.com/QuentinCG/Linux-Monitor-Python-Library
|
|
6
6
|
Author: Quentin Comte-Gaz
|
|
@@ -33,7 +33,7 @@ __email__ = "quentin@comte-gaz.com"
|
|
|
33
33
|
__license__ = "MIT License"
|
|
34
34
|
__copyright__ = "Copyright Quentin Comte-Gaz (2024)"
|
|
35
35
|
__python_version__ = "3.+"
|
|
36
|
-
__version__ = "1.3.
|
|
36
|
+
__version__ = "1.3.8 (2024/09/19)"
|
|
37
37
|
__status__ = "Usable for any Linux project"
|
|
38
38
|
|
|
39
39
|
import json
|
|
@@ -1897,7 +1897,7 @@ class LinuxMonitor:
|
|
|
1897
1897
|
out_msg: str = ""
|
|
1898
1898
|
display_name: str = command_name
|
|
1899
1899
|
for command_config_key in self.config['commands'].keys():
|
|
1900
|
-
if
|
|
1900
|
+
if command_config_key == command_name:
|
|
1901
1901
|
display_name = self.config['commands'][command_config_key]['display_name']
|
|
1902
1902
|
command: str = self.config['commands'][command_config_key]['command']
|
|
1903
1903
|
is_private_cmd: bool = self.config['commands'][command_config_key]['is_private']
|
|
@@ -1965,7 +1965,7 @@ class LinuxMonitor:
|
|
|
1965
1965
|
for command_config_key in self.config['commands'].keys():
|
|
1966
1966
|
if is_private or is_private == self.config['commands'][command_config_key]['is_private']:
|
|
1967
1967
|
display_name: str = self.config['commands'][command_config_key]['display_name']
|
|
1968
|
-
out_msg += f"- {display_name}\n"
|
|
1968
|
+
out_msg += f"- `{command_config_key}`: {display_name}\n"
|
|
1969
1969
|
|
|
1970
1970
|
logging.info(msg=out_msg)
|
|
1971
1971
|
return out_msg
|
|
@@ -6,7 +6,7 @@ with io.open(file='README.md', mode='r', encoding='utf-8') as readme_file:
|
|
|
6
6
|
|
|
7
7
|
setup(
|
|
8
8
|
name="LinuxMonitor",
|
|
9
|
-
version="1.3.
|
|
9
|
+
version="1.3.8",
|
|
10
10
|
description="Get information and warning status of Linux server like service, port, ping, ssl certificate, disk/folder/cpu/ram/swap usage, ip connection, ... (Python and shell library, Linux ONLY)",
|
|
11
11
|
long_description=readme,
|
|
12
12
|
long_description_content_type="text/markdown",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|