Skip to content

Instantly share code, notes, and snippets.

@ftnext
Last active February 27, 2026 15:33
Show Gist options
  • Select an option

  • Save ftnext/b5915c58b3d1d53eb51ac40e4ee2dc68 to your computer and use it in GitHub Desktop.

Select an option

Save ftnext/b5915c58b3d1d53eb51ac40e4ee2dc68 to your computer and use it in GitHub Desktop.
# https://github.com/ftnext/fastapi-playground/blob/1908d81cde87f27c495cbcffa4c5142777118f9c/opentelemetry/client.rb
require 'bundler/setup'
Bundler.require
ENV['OTEL_TRACES_EXPORTER'] = 'console'
OpenTelemetry::SDK.configure do |c|
c.use 'OpenTelemetry::Instrumentation::Faraday'
end
conn = Faraday.new('http://localhost:8000')
conn.get('/')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment