Sha256: a8f8c314a7802ad49904993bc6aa29e3d122a2c3bd5e7a3c91587081cf57720e
Contents?: true
Size: 909 Bytes
Versions: 18
Compression:
Stored size: 909 Bytes
Contents
# Copyright (c) 2023 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true require 'contrast/utils/timer' module Contrast module Logger # Our decorator for the Ougai logger allowing for the logging of the # request lifecycle, used to provide context during troubleshooting. module Request # Utility method to log the start of a request def request_start debug('Beginning request analysis') end # Utility method to log the end of a request, including the time it took # for that request to be processed. def request_end context = Contrast::Agent::REQUEST_TRACKER.current elapsed_time = context ? (Contrast::Utils::Timer.now_ms - context.timer.start_ms) : -1 debug('Ending request analysis', elapsed_time_ms: elapsed_time) end end end end
Version data entries
18 entries across 18 versions & 1 rubygems