Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Python Log Parsing for Errors
00:00
5 left

Python Log Parsing for Errors

MediumPython

Problem

Write a basic Python script to parse a log file and count the number of specific error messages.

Implement count_error_messages(log_text, error_messages), where log_text is a string containing the file contents and error_messages is a list of distinct strings. Return a dictionary mapping each requested message to its number of non-overlapping occurrences in the complete log text. A message may occur multiple times on one line, and messages with no matches must still appear with count 0.

Constraints

  • 0 <= len(log_text) <= 100000
  • 0 <= len(error_messages) <= 100
  • Each error message is a distinct non-empty string
  • Count occurrences as non-overlapping substring matches
  • Return every requested error message in the result

Function Signature

def count_error_messages(log_text, error_messages):
Interviewer

Your question is Python Log Parsing for Errors. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.