opentelemetry-ruby icon indicating copy to clipboard operation
opentelemetry-ruby copied to clipboard

OpenTelemetry Ruby API & SDK, and related gems

Results 153 opentelemetry-ruby issues
Sort by recently updated
recently updated
newest added

**Description of the bug** I'm trying to send traces to our otlp compliant tempo service Our jvm services can send traces without issues with only configuring the trace endpoint Now...

bug

Quick "Fix" proposal for bug https://github.com/open-telemetry/opentelemetry-ruby/issues/1148

This is a draft because the test in `span_test.rb` fails and I've given up on figuring out why and hoping someone sees what is wrong :). The testin `tracer_test.rb` works...

**Description of the bug** The max_packet_size is not correctly managed (at least) in OpenTelemetry::Exporter::Jaeger::AgentExporter, it actually correspond to the real content of data when we expect it is the real...

bug

Related to https://github.com/open-telemetry/opentelemetry-specification/issues/504 Java provides optional attribute value truncation: https://github.com/open-telemetry/opentelemetry-java/blob/a021a59b9433691c06ab2265b4c574eab825b0ed/sdk/tracing/src/main/java/io/opentelemetry/sdk/trace/SpanBuilderSdk.java#L195-L197 ```java if (traceConfig.shouldTruncateStringAttributeValues()) { value = StringUtils.truncateToSize(value, traceConfig.getMaxLengthOfAttributeValues()); } ``` We have some ad-hoc truncation and UTF8 validation in the...

stale

This pull request adds the following setting in the configuration of the example Rails application: ``` config.action_controller.default_protect_from_forgery = true ``` Before doing so, the application would not start and instead...

Recently ran into an issue trying to integrate Zipkin and used this to help identify the issue. After

spawning off some discussion here https://github.com/open-telemetry/opentelemetry-ruby/issues/947, there are two areas that ought to be addressed in instrumentation 1. Be more defensive with version compatibility 2. Have a way to safely...

## Description In my experience with OTel Python and JS, “auto instrumentation” refers to a feature that allows users to get traces without having to write 1 line of code...