Your goal is to parse a log file and do some analysis on it. The log file contains all requests to a server within a specific timeframe.
You are given the following method/url definitions:
GET /api/users/{user_id}/count_pending_messages
GET /api/users/{user_id}/get_messages
GET /api/users/{user_id}/get_friends_progress
GET /api/users/{user_id}/get_friends_score
POST /api/users/{user_id}
GET /api/users/{user_id}
Where user_id is the id of the user calling the backend.