Microservices - Monitoring and Observability
Consider this simplified code snippet in a microservice receiving an HTTP request:
def handle_request(request):
correlation_id = request.headers.get('X-Correlation-ID')
log(f"Start processing request {correlation_id}")
# ... process ...
log(f"End processing request {correlation_id}")
What will be logged if the incoming request has header X-Correlation-ID: abc123?