Skip to content

Commit 82dc103

Browse files
committed
fix: typo
1 parent 8940f7d commit 82dc103

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

metricbeat/module/system/test_system.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ def test_process_summary(self):
389389
for evt in output:
390390
self.assert_fields_are_documented(evt)
391391
if evt.get("error", None) is not None:
392-
# errors are non-fatal errors logged by system/process. Ignore and proceed furture
392+
# "error" is an non-fatal error logged by system/process. Ignore and proceed further
393393
continue
394394

395395
summary = evt["system"]["process"]["summary"]
@@ -424,7 +424,7 @@ def test_process(self):
424424
found_cmdline = False
425425
for evt in output:
426426
if evt.get("error", None) is not None:
427-
# errors are non-fatal errors logged by system/process. Ignore and proceed furture
427+
# "error" is an non-fatal error logged by system/process. Ignore and proceed further
428428
continue
429429
process = evt["system"]["process"]
430430
# Not all process will have 'cmdline' due to permission issues,
@@ -485,7 +485,7 @@ def test_process_unix(self):
485485
found_cwd = not sys.platform.startswith("linux")
486486
for evt in output:
487487
if evt.get("error", None) is not None:
488-
# errors are non-fatal errors logged by system/process. Ignore and proceed furture
488+
# "error" is an non-fatal error logged by system/process. Ignore and proceed further
489489
continue
490490
found_cwd |= "working_directory" in evt["process"]
491491

0 commit comments

Comments
 (0)