Sha256: a3a9f3e56429b41b57c81641658b160e7a843785fe81b5dcf0de434863bd7578
Contents?: true
Size: 1.23 KB
Versions: 14
Compression:
Stored size: 1.23 KB
Contents
# typed: true module Datadog module Tracing module Contrib module Presto # Presto integration constants # @public_api Changing resource names, tag names, or environment variables creates breaking changes. module Ext ENV_ENABLED = 'DD_TRACE_PRESTO_ENABLED'.freeze ENV_ANALYTICS_ENABLED = 'DD_TRACE_PRESTO_ANALYTICS_ENABLED'.freeze ENV_ANALYTICS_SAMPLE_RATE = 'DD_TRACE_PRESTO_ANALYTICS_SAMPLE_RATE'.freeze DEFAULT_PEER_SERVICE_NAME = 'presto'.freeze SPAN_QUERY = 'presto.query'.freeze SPAN_KILL = 'presto.kill_query'.freeze TAG_SCHEMA_NAME = 'presto.schema'.freeze TAG_CATALOG_NAME = 'presto.catalog'.freeze TAG_USER_NAME = 'presto.user'.freeze TAG_TIME_ZONE = 'presto.time_zone'.freeze TAG_LANGUAGE = 'presto.language'.freeze TAG_PROXY = 'presto.http_proxy'.freeze TAG_MODEL_VERSION = 'presto.model_version'.freeze TAG_QUERY_ID = 'presto.query.id'.freeze TAG_QUERY_ASYNC = 'presto.query.async'.freeze TAG_COMPONENT = 'presto'.freeze TAG_OPERATION_QUERY = 'query'.freeze TAG_OPERATION_KILL = 'kill'.freeze end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems