GithubHelp home page GithubHelp logo

odigos-io / offsets-tracker Goto Github PK

View Code? Open in Web Editor NEW
29.0 3.0 7.0 16 KB

This project tracks offsets of fields inside of Go structs across versions for achieveing automatic instrumentation using eBPF

Home Page: https://keyval.dev

License: Apache License 2.0

Go 100.00%
golang go ebpf opentelemetry opentelemetry-go

offsets-tracker's Issues

Use version ranges in offset_results.json file

We can reduce the size of offset_results.json file by using version ranges for versions with the same offset.
For example, instead of writing:

{
      "struct": "google.golang.org/grpc/internal/transport.Stream",
      "field_name": "method",
      "offsets": [
        {
          "offset": 72,
          "version": "v1.0.2"
        },
        {
          "offset": 72,
          "version": "v1.0.3"
        },
        {
          "offset": 72,
          "version": "v1.0.4"
        }]
}

We can write:

{
      "struct": "google.golang.org/grpc/internal/transport.Stream",
      "field_name": "method",
      "offsets": [
        {
          "offset": 72,
          "min_version": "v1.0.2"
          "nax_version": "v1.0.4"
        }]
}

Find offsets of function arguments

DWARF includes information on the stack offsets of function arguments.
Tracking those offsets will make writing eBPF based instrumentation much easier.

Replace go list invocation with code

Currently, offsets-tracker invokes the process go list -versions for discovering Go standard library versions.
This makes us dependent on the Go binary.
We probably can replace this process invocation with Go code (which can be found in the offical Go repository)

Generating offsets from local Go version

Is it possible to run this just based on my local Go version, rather than downloading them remotely? It would be nice to auto-detect what version I'm running (or for example, when running an app in a golang container) and make this part of the build stage for adding otel auto-instrumentation to an app.

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.