Sha256: f54c7c10b57984b5061d14e5abb6b0cee7525cb3abec0b732c4acc7a8e15cc5e
Contents?: true
Size: 772 Bytes
Versions: 11
Compression:
Stored size: 772 Bytes
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. # frozen_string_literal: true module NewRelic::Agent module InfiniteTracing module Constants SUPPORTABILITY_PREFIX = "Supportability/InfiniteTracing/Span" SPANS_SEEN_METRIC = "#{SUPPORTABILITY_PREFIX}/Seen" SPANS_SENT_METRIC = "#{SUPPORTABILITY_PREFIX}/Sent" QUEUE_DUMPED_METRIC = "#{SUPPORTABILITY_PREFIX}/AgentQueueDumped" RESPONSE_ERROR_METRIC = "#{SUPPORTABILITY_PREFIX}/Response/Error" GRPC_ERROR_NAME_METRIC = "#{SUPPORTABILITY_PREFIX}/gRPC/%s" GRPC_OTHER_ERROR_METRIC = GRPC_ERROR_NAME_METRIC % "Other" end end end
Version data entries
11 entries across 11 versions & 1 rubygems