Sha256: 729c9dcab4e656d8a3617ecc6b55b2fd71160790663a8a0578854c8fbc7cb92a
Contents?: true
Size: 751 Bytes
Versions: 9
Compression:
Stored size: 751 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
9 entries across 9 versions & 1 rubygems