Sha256: 70720b040a0961f724eaa187d9693e365a416aa2a4eb5ff48d8c51e9307b252e
Contents?: true
Size: 903 Bytes
Versions: 25
Compression:
Stored size: 903 Bytes
Contents
require 'ddtrace/contrib/integration' require 'ddtrace/contrib/graphql/configuration/settings' require 'ddtrace/contrib/graphql/patcher' module Datadog module Contrib module GraphQL # Description of GraphQL integration class Integration include Contrib::Integration MINIMUM_VERSION = Gem::Version.new('1.7.9') register_as :graphql, auto_patch: true def self.version Gem.loaded_specs['graphql'] && Gem.loaded_specs['graphql'].version end def self.loaded? !defined?(::GraphQL).nil? \ && !defined?(::GraphQL::Tracing::DataDogTracing).nil? end def self.compatible? super && version >= MINIMUM_VERSION end def default_configuration Configuration::Settings.new end def patcher Patcher end end end end end
Version data entries
25 entries across 25 versions & 2 rubygems