LinuxMonitor 1.2.0__tar.gz → 1.2.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: LinuxMonitor
3
- Version: 1.2.0
3
+ Version: 1.2.2
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.2.0
3
+ Version: 1.2.2
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
@@ -30,7 +30,7 @@ __email__ = "quentin@comte-gaz.com"
30
30
  __license__ = "MIT License"
31
31
  __copyright__ = "Copyright Quentin Comte-Gaz (2024)"
32
32
  __python_version__ = "3.+"
33
- __version__ = "1.2.0 (2024/09/16)"
33
+ __version__ = "1.2.2 (2024/09/16)"
34
34
  __status__ = "Usable for any Linux project"
35
35
 
36
36
  import json
@@ -806,7 +806,9 @@ class LinuxMonitor:
806
806
 
807
807
  # Create an aiohttp client session to make the request
808
808
  async with aiohttp.ClientSession() as session:
809
+ start_time: float = time.time()
809
810
  async with session.get(url, auth=auth, headers=headers, timeout=timeout_in_sec) as response:
811
+ end_time: float = time.time()
810
812
  # Default allowed status codes (200-299)
811
813
  allowed_statuses = list(range(200, 300))
812
814
 
@@ -816,9 +818,12 @@ class LinuxMonitor:
816
818
 
817
819
  # Check if the status code is within the allowed list
818
820
  if response.status in allowed_statuses:
819
- out_msg: str = f"✅ **{display_name} answered with valid status code {response.status}**."
820
- logging.info(msg=out_msg)
821
- return True, out_msg
821
+ if not display_only_if_critical:
822
+ out_msg: str = f"✅ **{display_name} answered with valid status code {response.status}** in {end_time - start_time:.2f}sec."
823
+ logging.info(msg=out_msg)
824
+ return True, out_msg
825
+ else:
826
+ return True, ""
822
827
  else:
823
828
  # Get the reason phrase (e.g., "Unauthorized" for 401)
824
829
  status_reason: str = responses.get(response.status, "Unknown status")
@@ -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.2.0",
9
+ version="1.2.2",
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