From 82dc1036b51033f4596f397b9af5f801f4cbbc26 Mon Sep 17 00:00:00 2001 From: Vihas Makwana Date: Wed, 24 Jul 2024 01:19:35 +0530 Subject: [PATCH] fix: typo --- metricbeat/module/system/test_system.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/metricbeat/module/system/test_system.py b/metricbeat/module/system/test_system.py index e6a61756533..cdb6aebc92e 100644 --- a/metricbeat/module/system/test_system.py +++ b/metricbeat/module/system/test_system.py @@ -389,7 +389,7 @@ def test_process_summary(self): for evt in output: self.assert_fields_are_documented(evt) if evt.get("error", None) is not None: - # errors are non-fatal errors logged by system/process. Ignore and proceed furture + # "error" is an non-fatal error logged by system/process. Ignore and proceed further continue summary = evt["system"]["process"]["summary"] @@ -424,7 +424,7 @@ def test_process(self): found_cmdline = False for evt in output: if evt.get("error", None) is not None: - # errors are non-fatal errors logged by system/process. Ignore and proceed furture + # "error" is an non-fatal error logged by system/process. Ignore and proceed further continue process = evt["system"]["process"] # Not all process will have 'cmdline' due to permission issues, @@ -485,7 +485,7 @@ def test_process_unix(self): found_cwd = not sys.platform.startswith("linux") for evt in output: if evt.get("error", None) is not None: - # errors are non-fatal errors logged by system/process. Ignore and proceed furture + # "error" is an non-fatal error logged by system/process. Ignore and proceed further continue found_cwd |= "working_directory" in evt["process"]