Sha256: aa0b159511c260c1c747697444fcc00fb3db9b834d2ed44ac602d900866cfb88
Contents?: true
Size: 938 Bytes
Versions: 5
Compression:
Stored size: 938 Bytes
Contents
# typed: true module Datadog module Contrib module Elasticsearch # Elasticsearch integration constants module Ext APP = 'elasticsearch'.freeze ENV_ENABLED = 'DD_TRACE_ELASTICSEARCH_ENABLED'.freeze ENV_ANALYTICS_ENABLED = 'DD_TRACE_ELASTICSEARCH_ANALYTICS_ENABLED'.freeze ENV_ANALYTICS_ENABLED_OLD = 'DD_ELASTICSEARCH_ANALYTICS_ENABLED'.freeze ENV_ANALYTICS_SAMPLE_RATE = 'DD_TRACE_ELASTICSEARCH_ANALYTICS_SAMPLE_RATE'.freeze ENV_ANALYTICS_SAMPLE_RATE_OLD = 'DD_ELASTICSEARCH_ANALYTICS_SAMPLE_RATE'.freeze SERVICE_NAME = 'elasticsearch'.freeze SPAN_QUERY = 'elasticsearch.query'.freeze SPAN_TYPE_QUERY = 'elasticsearch'.freeze TAG_BODY = 'elasticsearch.body'.freeze TAG_METHOD = 'elasticsearch.method'.freeze TAG_PARAMS = 'elasticsearch.params'.freeze TAG_URL = 'elasticsearch.url'.freeze end end end end
Version data entries
5 entries across 5 versions & 1 rubygems