Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Draft; don't merge] v2.0.0-alpha #2427

Draft
wants to merge 522 commits into
base: main
Choose a base branch
from
Draft

[Draft; don't merge] v2.0.0-alpha #2427

wants to merge 522 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Dec 21, 2023

  1. v2: stabilize contribs go.mod

    darccio committed Dec 21, 2023
    Configuration menu
    Copy the full SHA
    1c62b2f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    34ae239 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    004877c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7da8714 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    64b5f4b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6acbdcf View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    0ad0231 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    c592d67 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    e424dbf View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    93bb147 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    a480295 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    89d3f4f View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    740580a View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    b3096c2 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    41483cb View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    c0f9915 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    31f2051 View commit details
    Browse the repository at this point in the history

Commits on Dec 22, 2023

  1. Configuration menu
    Copy the full SHA
    6bb06a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    309701f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    006f64a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    469a902 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    10b254c View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2023

  1. Configuration menu
    Copy the full SHA
    0730a99 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    089e965 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    059d7ed View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    34efc83 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    cb961b8 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2023

  1. Configuration menu
    Copy the full SHA
    d4a099d View commit details
    Browse the repository at this point in the history

Commits on Jan 2, 2024

  1. Configuration menu
    Copy the full SHA
    cf01074 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    aca54f5 View commit details
    Browse the repository at this point in the history
  3. all: shift all usages of ddtrace.Span to *tracer.Span (#2408)

    As part of our v2 migration, we want to stop using the ddtrace.Span
    interface and use a struct type instead, to allow us to expand the API as
    the tracer grows.
    
    In order to do this, we need to:
    
    - expose tracer.span as tracer.Span
    - change everything to use *tracer.Span in place of ddtrace.Span
    knusbaum committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    dc47607 View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2024

  1. Configuration menu
    Copy the full SHA
    9766e12 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0ceee5a View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2024

  1. Configuration menu
    Copy the full SHA
    7936067 View commit details
    Browse the repository at this point in the history
  2. ddtrace/tracer: unexport span fields (#2473)

    The Span type is now exported from ddtrace/tracer. We don't want its
    fields exported, though.
    
    This PR unexports those fields but provides access for mocktracer through
    a new method called AsMap().
    knusbaum committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    9888023 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2024

  1. Configuration menu
    Copy the full SHA
    b2c7ecc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9145891 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f773e62 View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. Configuration menu
    Copy the full SHA
    7a56cd1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a925cf9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b3c324a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4cea60a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b755518 View commit details
    Browse the repository at this point in the history
  6. ddtracer/tracer: update TestStartupLog/errors & TestLogSamplingRules …

    …to new sampling rules implementation in v2 (#2492)
    
    Updates TestStartupLog/errors to handle the way that sampling rules work
    in #2448, as in v2 it causes to return an error when creating the tracer.
    The error is logged as before, but we don't need to run the tracer to
    create it.
    darccio committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    8910183 View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Configuration menu
    Copy the full SHA
    d03b755 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    43f3d5e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    672e8c6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0f76e55 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    97674e4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    5a5e357 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2024

  1. v2/contrib: go mod tidy

    darccio committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    36b4528 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e694cbd View commit details
    Browse the repository at this point in the history
  3. v2/contrib: go mod tidy

    darccio committed Jan 11, 2024
    Configuration menu
    Copy the full SHA
    c7497ac View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b19658f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e3db04b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    57f6f98 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2024

  1. Configuration menu
    Copy the full SHA
    e6f1b79 View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2024

  1. Configuration menu
    Copy the full SHA
    bb4e4ce View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2024

  1. ddtrace: pass log level in Logger interface (#2480)

    Co-authored-by: Dario Castañé <dario.castane@datadoghq.com>
    ahmed-mez and darccio committed Jan 16, 2024
    Configuration menu
    Copy the full SHA
    b17c920 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9039e16 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2024

  1. Configuration menu
    Copy the full SHA
    5c42d12 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. Configuration menu
    Copy the full SHA
    efab8c4 View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2024

  1. Configuration menu
    Copy the full SHA
    4c57801 View commit details
    Browse the repository at this point in the history
  2. go.mod: revert to 1.19

    darccio committed Jan 19, 2024
    Configuration menu
    Copy the full SHA
    b9bd457 View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

  1. Configuration menu
    Copy the full SHA
    c5c82eb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e62631d View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2024

  1. Configuration menu
    Copy the full SHA
    e720f57 View commit details
    Browse the repository at this point in the history
  2. go.mod: mod tidy

    darccio committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    e2083f5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dccb0ed View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2ed35bc View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    007518d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ec2e8e2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    68de6a7 View commit details
    Browse the repository at this point in the history
  8. go.mod: all contribs updated

    darccio committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    7db38ab View commit details
    Browse the repository at this point in the history
  9. go.mod: revert toolchain

    darccio committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    8ef67f7 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2024

  1. Configuration menu
    Copy the full SHA
    5c47d03 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9d87297 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fa51344 View commit details
    Browse the repository at this point in the history
  4. v2/contrib/confluentinc/confluent-kafka-go/kafka.v2: pin spf13/viper …

    …version to avoid package conflict re: gin-gonic/gin#1673
    darccio committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    b5f607d View commit details
    Browse the repository at this point in the history
  5. go.mod: mod tidy

    darccio committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    88d1ffb View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    953581a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    fc1516f View commit details
    Browse the repository at this point in the history
  8. go.work.sum: mod tidy

    darccio committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    64098b5 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    3753906 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    63d1bbc View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2024

  1. Configuration menu
    Copy the full SHA
    6de4f6a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a53f613 View commit details
    Browse the repository at this point in the history

Commits on Feb 1, 2024

  1. Configuration menu
    Copy the full SHA
    64fd9f5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2c96377 View commit details
    Browse the repository at this point in the history
  3. ci: trigger

    darccio committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    efda878 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    106f6bf View commit details
    Browse the repository at this point in the history
  5. ci: trigger

    darccio committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    58323b9 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c56e9c5 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    b8c2740 View commit details
    Browse the repository at this point in the history
  8. ci: trigger

    darccio committed Feb 1, 2024
    Configuration menu
    Copy the full SHA
    73a80d5 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2024

  1. Configuration menu
    Copy the full SHA
    09f5a14 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2024

  1. Configuration menu
    Copy the full SHA
    26f6781 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2024

  1. Configuration menu
    Copy the full SHA
    8879acf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ca37919 View commit details
    Browse the repository at this point in the history
  3. ddtrace/tracer: add private interface spanContextV1 to access unexpor…

    …ted fields in v1 span contexts
    darccio committed Feb 12, 2024
    Configuration menu
    Copy the full SHA
    c22ccf4 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0e11104 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    797daf5 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0fe3525 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    412c28f View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    6c0828a View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    c57d43e View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2024

  1. Configuration menu
    Copy the full SHA
    6389c7b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    255e6ae View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    43acc94 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    018ee94 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b607477 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2024

  1. Configuration menu
    Copy the full SHA
    1d21ea7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8364b6b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a633e06 View commit details
    Browse the repository at this point in the history
  4. ddtrace/opentelemetry: handle prioritzation of finish time set with E…

    …ndOptions over span.End with FinishTime
    darccio committed Feb 16, 2024
    Configuration menu
    Copy the full SHA
    c464ae9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    914f0c3 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

  1. Configuration menu
    Copy the full SHA
    f8d4db3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f576f22 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    aff5f3b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    386ab57 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2024

  1. Configuration menu
    Copy the full SHA
    0206562 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    07211ad View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    37ac519 View commit details
    Browse the repository at this point in the history
  4. go.work.sum: mod tidy

    darccio committed Feb 23, 2024
    Configuration menu
    Copy the full SHA
    bf09059 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. Configuration menu
    Copy the full SHA
    4f446ac View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2024

  1. Configuration menu
    Copy the full SHA
    e9992c5 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2024

  1. Configuration menu
    Copy the full SHA
    46baf89 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c8aa56d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4f374b6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    bd5878c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    db7669a View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ca7dda2 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f6fa61e View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    002b1bb View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    4c02f59 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    554a60c View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    3a25101 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    756319d View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    31e88b4 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    96a07d7 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    8b44630 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    a9dd3b3 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    767889e View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    73eb80d View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    01a2827 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    6e2084f View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    02ec36d View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    7403a88 View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. Configuration menu
    Copy the full SHA
    a9da587 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5290319 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a329b73 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    98e0a0e View commit details
    Browse the repository at this point in the history
  5. ci: trigger

    darccio committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    d584c4d View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1887b04 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2024

  1. Configuration menu
    Copy the full SHA
    60899f5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d2c7ed5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a67afb2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    92758f5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    4a1b536 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    3df8062 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    d4d2757 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    8775bf8 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    0f69c12 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    4634440 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    198d2b9 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    6c3cd02 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    317dae4 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    2a9ed66 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    80f100d View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    b239489 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    cc13161 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2024

  1. Configuration menu
    Copy the full SHA
    d07a4c5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b16ce3c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d7921f3 View commit details
    Browse the repository at this point in the history
  4. go.work.sum: go mod tidy

    darccio committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    178d5d1 View commit details
    Browse the repository at this point in the history
  5. ddtrace/tracer: WithStartSpanConfig must override existing tags if ex…

    …ecuted on an already initialized StartSpanConfig
    darccio committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    95b28ce View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    37d042c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    7c654a6 View commit details
    Browse the repository at this point in the history
  8. ddtrace/mocktracer: ensure that underlying span's tags are treated as…

    … highest priority everywhere
    darccio committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    986c365 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f10e297 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    b3f62a0 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    fdb8ac2 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    e22f199 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    c29e4b7 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    cf3d523 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    e86899c View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    d54c964 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    3046444 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    fee9c7c View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    b5be8a2 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    7691fda View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    0dad099 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    b22a5d7 View commit details
    Browse the repository at this point in the history
  23. ddtrace/tracer: update TestWithStartSpanConfigNonEmptyTags to new Wit…

    …hStartSpanConfig's tag behaviour
    darccio committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    af0eaa8 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    dfe9bd9 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    afa28a0 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    3af1c41 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    e3cfc0f View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    0209b53 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Configuration menu
    Copy the full SHA
    883dad1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    68327c9 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    894b1b1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3b155da View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    54a5c5c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8c9ac05 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    cbdabd0 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    5ff3b32 View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. Configuration menu
    Copy the full SHA
    fc1f329 View commit details
    Browse the repository at this point in the history
  2. go.mod: go mod tidy

    darccio committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    62e6edb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    39d29bd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    0730ca1 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2024

  1. internal/contrib/options: add Expand function to handle reduced alloc…

    …ations pattern for default start span options in contribs
    darccio committed Mar 15, 2024
    Configuration menu
    Copy the full SHA
    163dd88 View commit details
    Browse the repository at this point in the history
  2. v2/contrib: upgrade dd-trace-go/v2 & contribs

    Magic command: find . -type f -name go.mod | while read f; do cd $(dirname $f) && go1.19.13 get github.com/DataDog/dd-trace-go/v2@v2-dev && (grep "/v2/contrib" go.mod | grep -v module | cut -f1 -d' ' | sed 's/\t//g' | xargs -I {} go1.19.13 get {}@v2-dev) && go1.19.13 mod tidy && cd -; done
    darccio committed Mar 15, 2024
    Configuration menu
    Copy the full SHA
    301b62d View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. ci: trigger

    darccio committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    68e1ad2 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. Configuration menu
    Copy the full SHA
    a81194e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1559d0b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7ebff8f View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2024

  1. Configuration menu
    Copy the full SHA
    224a0bc View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. Configuration menu
    Copy the full SHA
    918fafc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3ad51a7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5b596d3 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2024

  1. ddtrace/tracer: fix tests

    darccio committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    1694bdb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c4cfc74 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    29a213f View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    7fc215e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    55cf688 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    09c1b4f View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8af9f77 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    9562112 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    e062db3 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    6f9f98f View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    42807ee View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. Configuration menu
    Copy the full SHA
    a36ab4e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    21c31dc View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    efa4ba6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    be6407b View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

  1. Configuration menu
    Copy the full SHA
    8d1ea11 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c8ff8d7 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    75c8781 View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. Configuration menu
    Copy the full SHA
    f0eee6a View commit details
    Browse the repository at this point in the history

Commits on May 16, 2024

  1. Configuration menu
    Copy the full SHA
    1422d9c View commit details
    Browse the repository at this point in the history
  2. Merge branch main into v2-dev

    darccio committed May 16, 2024
    Configuration menu
    Copy the full SHA
    ddac629 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8d6fa2b View commit details
    Browse the repository at this point in the history

Commits on May 17, 2024

  1. Configuration menu
    Copy the full SHA
    1bc2693 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    532a55a View commit details
    Browse the repository at this point in the history

Commits on May 21, 2024

  1. Configuration menu
    Copy the full SHA
    13caae9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5c87628 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    13d2706 View commit details
    Browse the repository at this point in the history
  4. chore: fix contribs go.mod

    darccio committed May 21, 2024
    Configuration menu
    Copy the full SHA
    32c9fe4 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2024

  1. Configuration menu
    Copy the full SHA
    0d5f5a7 View commit details
    Browse the repository at this point in the history