Sha256: 6d7bb7556a46c9f7faa0470af416c43122a6c640336b60e5988307f698e1c828
Contents?: true
Size: 647 Bytes
Versions: 25
Compression:
Stored size: 647 Bytes
Contents
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module Contrast module Config # Common Configuration settings. Those in this section pertain to the # sampling functionality of the Agent. class SamplingConfiguration < BaseConfiguration KEYS = { enable: EMPTY_VALUE, baseline: EMPTY_VALUE, request_frequency: EMPTY_VALUE, response_frequency: EMPTY_VALUE, window_ms: EMPTY_VALUE }.cs__freeze def initialize hsh super(hsh, KEYS) end end end end
Version data entries
25 entries across 25 versions & 1 rubygems