Sha256: fb2f6d8d0a7703b39fd8996f784ffe9f09643eb2f8186b05cf702c7a247eea47
Contents?: true
Size: 1.2 KB
Versions: 6
Compression:
Stored size: 1.2 KB
Contents
# typed: false # frozen_string_literal: true unless Rails.env.development? # establish the environment for OTEL ENV["OTEL_EXPORTER_OTLP_ENDPOINT"] = "https://api.honeycomb.io" ENV["OTEL_EXPORTER_OTLP_HEADERS"] = fetch_infra_secret( label: "OTEL_EXPORTER_OTLP_HEADERS", default: "x-honeycomb-team=your-api-key", ) ENV["OTEL_SERVICE_NAME"] = "plug-#{plug_shortname}-#{Rails.env}" require "opentelemetry/sdk" require "opentelemetry/exporter/otlp" require "opentelemetry/semantic_conventions" OpenTelemetry::SDK.configure do |c| c.logger = Rails.logger c.use_all( "OpenTelemetry::Instrumentation::PG" => { db_statement: :obfuscate }, "OpenTelemetry::Instrumentation::Rack" => { use_rack_events: false }, ) if productionish? c.add_span_processor( OpenTelemetry::SDK::Trace::Export::BatchSpanProcessor.new( OpenTelemetry::Exporter::OTLP::Exporter.new, ), ) else # useful for testing instrumentation c.add_span_processor( OpenTelemetry::SDK::Trace::Export::SimpleSpanProcessor.new( OpenTelemetry::SDK::Trace::Export::SpanExporter.new, ), ) end # development is intentionally disabled end end
Version data entries
6 entries across 6 versions & 1 rubygems