Coder Social home page Coder Social logo

Comments (3)

evanderkoogh avatar evanderkoogh commented on May 26, 2024 1

I would love PRs. I am really looking to make this a project that can work even when I don’t have as much time to work on.

It is too important for the ecosystem to let things slip πŸ˜‰

from otel-cf-workers.

rtbenfield avatar rtbenfield commented on May 26, 2024

Awesome! I can also share my use case here in case anyone comes across this issue with a similar one.

We have a Worker that receives an HTTP request generated by our users. That HTTP request may have a traceparent header from their app's instrumentation. We then do some work with that request and forward it to another system, but need to preserve the original traceparent value that we received. We use otel-cf-workers to capture traces from within our Worker, but need to essentially disable the context tracking from external requests in or out. The automatic instrumentation is currently overriding the traceparent of the outbound request.

With #24, we will be able to either disable the outbound trace context completely or intelligently with a snippet like:

const config: ResolveConfigFn = (env: Env, trigger) => {
  return {
    exporter: {
      // ...
    },
    fetch: {
      includeTraceContext(request) {
        // disable context propagation if the request has an existing traceparent
        return !request.headers.has("traceparent");
      }
    },
    service: {
      // ...
    },
  }
}

from otel-cf-workers.

evanderkoogh avatar evanderkoogh commented on May 26, 2024

Thanks for the PR.. that is greatly appreciated :)

from otel-cf-workers.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.