You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bpf_printk("write_span_context: failed to write trace flags: %ld", ret);
return-4;
}
This is required to correctly support trace context propagation and integration with the auto-instrumentation telemetry.
Because of this fundamental requirement, there are no known replacements for using this BPF API. Meaning that a non-locked down kernel and elevated permissions are required to run this probe. This needs to be clearly documented and the alternate behavior when this is not supported needs to be explained to users.
The text was updated successfully, but these errors were encountered:
The
autosdk
probe usebpf_probe_write_user
to enable theauto/sdk
package but also to write trace/span IDs:opentelemetry-go-instrumentation/internal/pkg/instrumentation/bpf/go.opentelemetry.io/auto/sdk/bpf/probe.bpf.c
Lines 55 to 74 in 787af33
This is required to correctly support trace context propagation and integration with the auto-instrumentation telemetry.
Because of this fundamental requirement, there are no known replacements for using this BPF API. Meaning that a non-locked down kernel and elevated permissions are required to run this probe. This needs to be clearly documented and the alternate behavior when this is not supported needs to be explained to users.
The text was updated successfully, but these errors were encountered: