Sha256: fc1da5ed4e064e28a345f81e484a73026af70074819d622083477dc7e851cd10
Contents?: true
Size: 909 Bytes
Versions: 24
Compression:
Stored size: 909 Bytes
Contents
# Copyright (c) 2022 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
24 entries across 24 versions & 1 rubygems