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

Move core files to contrib #47

Closed
This pull request is big! We’re only showing the most recent 250 commits.

Commits on May 28, 2020

  1. Configuration menu
    Copy the full SHA
    960d0a3 View commit details
    Browse the repository at this point in the history
  2. datadog: set sampling rate (open-telemetry#740)

    Set the sampling rate in the Datadog exported span if span was sampled with the ProbabilitySampler.
    
    Co-authored-by: Diego Hurtado <ocelotl@users.noreply.github.com>
    majorgreys and ocelotl committed May 28, 2020
    Configuration menu
    Copy the full SHA
    30c953d View commit details
    Browse the repository at this point in the history

Commits on May 29, 2020

  1. Configuration menu
    Copy the full SHA
    f8f2ca4 View commit details
    Browse the repository at this point in the history
  2. ext/system-metrics: adding instrumentation to collect system metrics (o…

    …pen-telemetry#652)
    
    Adding an extension to provide users an easy mechanism to collect metrics for their system.
    alrex committed May 29, 2020
    Configuration menu
    Copy the full SHA
    bfc54bf View commit details
    Browse the repository at this point in the history

Commits on May 30, 2020

  1. sdk: Flush metrics on exit (open-telemetry#749)

    In PushController before exit, flush the meter by calling tick(), ensuring that all metrics are flushed.
    
    Co-authored-by: alrex <aboten@lightstep.com>
    aabmass and alrex committed May 30, 2020
    Configuration menu
    Copy the full SHA
    602ddb0 View commit details
    Browse the repository at this point in the history

Commits on Jun 1, 2020

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

Commits on Jun 2, 2020

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

Commits on Jun 3, 2020

  1. opentracing-shim: add testbed for otshim (open-telemetry#727)

    This commit ports the OpenTracing testbed[1] to check that the ot-shim is
    working as expected using different frameworks.
    
    Gevent doesn't support context vars yet[2], so those tests are not compatible
    with opentelemetry and were not ported.
    
    [1] https://github.com/opentracing/opentracing-python/tree/master/testbed
    [2] gevent/gevent#1407
    
    Co-authored-by: Mauricio Vásquez <mauricio@kinvolk.io>
    Co-authored-by: alrex <aboten@lightstep.com>
    3 people committed Jun 3, 2020
    Configuration menu
    Copy the full SHA
    acb7f48 View commit details
    Browse the repository at this point in the history
  2. chore: removing Oberon00 from approvers (open-telemetry#770)

    Co-authored-by: Yusuke Tsutsumi <yusuke@tsutsumi.io>
    alrex and toumorokoshi committed Jun 3, 2020
    Configuration menu
    Copy the full SHA
    2ad9f49 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2020

  1. cloud-trace: Cloud Trace exporter (open-telemetry#698)

    Co-authored-by: Cheng-Lung Sung <clsung@gmail.com>
    Andrew Xue and clsung committed Jun 4, 2020
    Configuration menu
    Copy the full SHA
    c42749a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    75a1311 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2020

  1. requests: better exception handling (open-telemetry#765)

    Canonical codes for different types of exceptions
    
    Span attributes extracted from exception
    
    Correct span closing for requests with raised errors (A span wasn't closed due to a RequestException)
    
    Co-authored-by: alrex <aboten@lightstep.com>
    HiveTraum and alrex committed Jun 5, 2020
    Configuration menu
    Copy the full SHA
    91f656f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b108596 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2020

  1. Configuration menu
    Copy the full SHA
    20cf4cb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d755375 View commit details
    Browse the repository at this point in the history
  3. Add lzchen to maintainers (open-telemetry#784)

    * Add lzchen to maintainers
    
    Closes open-telemetry#778.
    
    Co-authored-by: alrex <aboten@lightstep.com>
    toumorokoshi and alrex committed Jun 8, 2020
    Configuration menu
    Copy the full SHA
    7ad8bbc View commit details
    Browse the repository at this point in the history
  4. refactor: Add common utils to opentelemetry-auto-instrumentation, ren…

    …ame opentelemetry-auto-instrumentation (open-telemetry#741)
    cnnradams committed Jun 8, 2020
    Configuration menu
    Copy the full SHA
    1041e11 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2020

  1. Configuration menu
    Copy the full SHA
    93194e1 View commit details
    Browse the repository at this point in the history
  2. api: adding trace.get_current_span (open-telemetry#552)

    The span context is no longer coupled with the tracer itself.
    As such, providing a get_current_span method bound to the
    trace api module rather than a specific tracer is semantically
    correct, and removes a hurdle where someone who wants to retrieve
    the current trace would have to create a tracer to do so.
    
    renaming and exporting get_span_in_context to get_current_span,
    as the intention of the API is similar, and reduces unneeded
    aliasing and duplication.
    
    set_span_in_context is not renamed, as set_current_span would have
    implied that the span would then be active in the default context,
    which is only true after attaching the resulting context returned
    by set_span_in_context. Keeping that name at least implies some
    asymmetric behavior from get_current_span.
    
    After discussion in the SIG, we decided to remove the
    legacy get_current_span APIs from Tracer and TracerProvider
    to reduce long-term confusion of how to idiomatically retrieve
    the span.
    
    Co-authored-by: alrex <aboten@lightstep.com>
    Co-authored-by: Hector Hernandez <39923391+hectorhdzg@users.noreply.github.com>
    Co-authored-by: Leighton Chen <lechen@microsoft.com>
    Co-authored-by: Diego Hurtado <ocelotl@users.noreply.github.com>
    Co-authored-by: Mauricio Vásquez <mauricio@kinvolk.io>
    Co-authored-by: Andrew Xue <aaxue@google.com>
    Co-authored-by: Cheng-Lung Sung <clsung@gmail.com>
    8 people committed Jun 9, 2020
    Configuration menu
    Copy the full SHA
    3fa15aa View commit details
    Browse the repository at this point in the history
  3. proto: Add proto files (open-telemetry#728)

    Initial addition of opentelemetry-proto based protobufs.
    
    Co-authored-by: alrex <alrex.boten@gmail.com>
    Co-authored-by: Yusuke Tsutsumi <yusuke@tsutsumi.io>
    3 people committed Jun 9, 2020
    Configuration menu
    Copy the full SHA
    7acb565 View commit details
    Browse the repository at this point in the history
  4. cloud-monitor: Add cloud monitoring exporter (open-telemetry#739)

    Adding an exporter that supports sending metrics data to cloud monitoring (formerly known as stackdriver).
    
    Co-authored-by: Chris Kleinknecht <libc@google.com>
    Co-authored-by: Yusuke Tsutsumi <yusuke@tsutsumi.io>
    3 people committed Jun 9, 2020
    Configuration menu
    Copy the full SHA
    cde0b0f View commit details
    Browse the repository at this point in the history
  5. botocore: Add botocore instrumentation (open-telemetry#689)

    Adding initial boto core implementation.
    
    Co-authored-by: alrex <alrex.boten@gmail.com>
    ocelotl and codeboten committed Jun 9, 2020
    Configuration menu
    Copy the full SHA
    5c17a06 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    31e29fc View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    672a89c View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2020

  1. Configuration menu
    Copy the full SHA
    507261d View commit details
    Browse the repository at this point in the history
  2. Instrumentation for Pyramid (open-telemetry#776)

    Co-authored-by: Yusuke Tsutsumi <yusuke@tsutsumi.io>
    cnnradams and toumorokoshi committed Jun 10, 2020
    Configuration menu
    Copy the full SHA
    d27979f View commit details
    Browse the repository at this point in the history
  3. Make force_flush available on SDK's tracer provider (open-telemetry#594)

    Co-authored-by: Yusuke Tsutsumi <yusuke@tsutsumi.io>
    mariojonke and toumorokoshi committed Jun 10, 2020
    Configuration menu
    Copy the full SHA
    db27c7c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    94aabcb View commit details
    Browse the repository at this point in the history
  5. chore: installation of test packages in eachdist (open-telemetry#794)

    eachdist.py did not support the installation of test packages,
    (as defined by the extra_requires:test package group). As a
    result, test packages were being added to dev-requirements.txt
    
    By having eachdist.py develop install test packages, and moving
    develop/test package definitions to the individual instrumentations,
    it is easier to determine which packages require which dependencies
    for testing purposes, and enables support for existing dependencies
    that follow the extra_requires:test pattern.
    toumorokoshi committed Jun 10, 2020
    Configuration menu
    Copy the full SHA
    731f577 View commit details
    Browse the repository at this point in the history
  6. ext/otlp: Add OTLP span exporter (open-telemetry#787)

    Co-authored-by: Leighton Chen <lechen@microsoft.com>
    Co-authored-by: alrex <aboten@lightstep.com>
    3 people committed Jun 10, 2020
    Configuration menu
    Copy the full SHA
    376c43e View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2020

  1. chore: add opentelemetry-test as a dependancy (open-telemetry#809)

    opentelemetry-test was not listed as a test dependency in the asgi instrumentation.
    Andrew Xue committed Jun 11, 2020
    Configuration menu
    Copy the full SHA
    a9f004a View commit details
    Browse the repository at this point in the history
  2. chore: standardizing setup.cfg files (open-telemetry#807)

    Minor cleanup of setup.cfg files. Updated the example app to move configuration from setup.py into setup.cfg as well.
    
    Co-authored-by: Diego Hurtado <ocelotl@users.noreply.github.com>
    Co-authored-by: Yusuke Tsutsumi <yusuke@tsutsumi.io>
    3 people committed Jun 11, 2020
    Configuration menu
    Copy the full SHA
    5ea4ccf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    dff34f4 View commit details
    Browse the repository at this point in the history
  4. chore: bump dev version number

    Alex Boten authored and codeboten committed Jun 11, 2020
    Configuration menu
    Copy the full SHA
    0ce8cb6 View commit details
    Browse the repository at this point in the history
  5. cloud-trace: add troubleshooting (open-telemetry#795)

    adding some troubleshooting tips for users with common failures
    Andrew Xue committed Jun 11, 2020
    Configuration menu
    Copy the full SHA
    43e78ae View commit details
    Browse the repository at this point in the history
  6. chore: add test coverage for Cloud Monitoring exporter (open-telemetr…

    …y#804)
    
    Previously cloud monitoring was missing coverage.
    Andrew Xue committed Jun 11, 2020
    Configuration menu
    Copy the full SHA
    ba2e62d View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2020

  1. api: Adding record_error to span API (open-telemetry#790)

    As per open-telemetry/opentelemetry-specification#427, we need an interface for users to record errors.
    alrex committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    d22ed88 View commit details
    Browse the repository at this point in the history
  2. pymemcache: Add pymemcache instrumentation (open-telemetry#772)

    initial implementation
    ericmustin committed Jun 12, 2020
    Configuration menu
    Copy the full SHA
    ca232c9 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2020

  1. docs: Docs for Pyramid and SQLite3 (open-telemetry#806)

    Adding missing documentation for Pyramid and SQLite3
    cnnradams committed Jun 13, 2020
    Configuration menu
    Copy the full SHA
    74f2159 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2020

  1. docs: update datadog docs (open-telemetry#803)

    Update the Datadog docs for installation and using propagation.
    majorgreys committed Jun 15, 2020
    Configuration menu
    Copy the full SHA
    0b823a1 View commit details
    Browse the repository at this point in the history
  2. api/sdk: Rename CounterAggregator -> SumAggregator (open-telemetry#816)

    Enables broader usage of the aggregator, across multiple counter types.
    aabmass committed Jun 15, 2020
    Configuration menu
    Copy the full SHA
    b70450e View commit details
    Browse the repository at this point in the history
  3. starlette instrumentation (open-telemetry#777)

    adding an initial starlette instrumentation.
    
    tox does exact match on fields delimited by a dash. Thus,
    any instrumentation that includes "instrumentation" in the name
    would collide with testing of the "opentelemetry-instrumentation"
    package.
    
    Renaming opentelemetry-instrumentation to opentelemetry-instrumentation-base to fix that.
    
    Co-authored-by: Leighton Chen <lechen@microsoft.com>
    Co-authored-by: alrex <aboten@lightstep.com>
    3 people committed Jun 15, 2020
    Configuration menu
    Copy the full SHA
    39fa078 View commit details
    Browse the repository at this point in the history

Commits on Jun 16, 2020

  1. fix(tests): install asgi early (open-telemetry#831)

    The lint job raising an error at installation:
    
    ERROR: Could not find a version that satisfies the requirement opentelemetry-ext-asgi==0.10.dev0 (from opentelemetry-instrumentation-starlette==0.10.dev0) (from versions: 0.8b0, 0.9b0)
    ERROR: No matching distribution found for opentelemetry-ext-asgi==0.10.dev0 (from opentelemetry-instrumentation-starlette==0.10.dev0)
    
    The opentelemetry-ext-asgi should be installed before depending modules.
    majorgreys committed Jun 16, 2020
    Configuration menu
    Copy the full SHA
    521115f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    02b1968 View commit details
    Browse the repository at this point in the history
  3. ext/cloudtrace: added more Cloud Trace troubleshooting tips (open-tel…

    …emetry#827)
    
    Co-authored-by: Shawn Brunsting <brunsting@google.com>
    Co-authored-by: Chris Kleinknecht <libc@google.com>
    3 people committed Jun 16, 2020
    Configuration menu
    Copy the full SHA
    fe4f341 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    17558b8 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2020

  1. Configuration menu
    Copy the full SHA
    f2bc613 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e35d84f View commit details
    Browse the repository at this point in the history
  3. Initial elasticsearch instrumentation (open-telemetry#747)

    This commit adds auto-instrumentation for elasticsearch. The
    instrumentation has been mostly ported over from OpenTracing
    elasticsearch instrumentation.
    
    Co-authored-by: Yusuke Tsutsumi <yusuke@tsutsumi.io>
    Co-authored-by: alrex <aboten@lightstep.com>
    3 people committed Jun 17, 2020
    Configuration menu
    Copy the full SHA
    9a2216a View commit details
    Browse the repository at this point in the history
  4. Add instrumentation for Celery (open-telemetry#780)

    Ported from the DataDog instrumentation.
    
    Co-authored-by: Diego Hurtado <ocelotl@users.noreply.github.com>
    Co-authored-by: Mauricio Vásquez <mauricio@kinvolk.io>
    Co-authored-by: alrex <alrex.boten@gmail.com>
    4 people committed Jun 17, 2020
    Configuration menu
    Copy the full SHA
    a284367 View commit details
    Browse the repository at this point in the history
  5. add cloud trace propagator (open-telemetry#819)

    Adding initial cloud trace propagator
    
    Co-authored-by: Aaron Abbott <aaronabbott@google.com>
    Co-authored-by: Diego Hurtado <ocelotl@users.noreply.github.com>
    3 people committed Jun 17, 2020
    Configuration menu
    Copy the full SHA
    9d74918 View commit details
    Browse the repository at this point in the history
  6. Instrumentation for asyncpg (open-telemetry#814)

    Co-authored-by: Yusuke Tsutsumi <yusuke@tsutsumi.io>
    HiveTraum and toumorokoshi committed Jun 17, 2020
    Configuration menu
    Copy the full SHA
    a7f0b75 View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2020

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

Commits on Jun 22, 2020

  1. Configuration menu
    Copy the full SHA
    1238fc8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9e20f74 View commit details
    Browse the repository at this point in the history
  3. add gco agent span label (open-telemetry#833)

    Andrew Xue committed Jun 22, 2020
    Configuration menu
    Copy the full SHA
    b2c0d53 View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2020

  1. Configuration menu
    Copy the full SHA
    3c9f99d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d35e626 View commit details
    Browse the repository at this point in the history
  3. add changelog for cloud exporters (open-telemetry#849)

    Andrew Xue committed Jun 23, 2020
    Configuration menu
    Copy the full SHA
    8be986c View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2020

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

Commits on Jun 26, 2020

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

Commits on Jun 29, 2020

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

Commits on Jun 30, 2020

  1. mysql: Fix auto instrumentation entry point (open-telemetry#858)

    entry point for the mysql instrumentation pointed to pymysql instrumentation which caused loading of the instrumentation to fail since it does not exist.
    
    Co-authored-by: alrex <aboten@lightstep.com>
    Co-authored-by: Yusuke Tsutsumi <yusuke@tsutsumi.io>
    3 people committed Jun 30, 2020
    Configuration menu
    Copy the full SHA
    0c102a1 View commit details
    Browse the repository at this point in the history
  2. chore: use token for test package upload

    alrex committed Jun 30, 2020
    Configuration menu
    Copy the full SHA
    d20ae9b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b56fe2a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    170c2c7 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2020

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

Commits on Jul 2, 2020

  1. Configuration menu
    Copy the full SHA
    6ea3f23 View commit details
    Browse the repository at this point in the history
  2. chore: Making eachdist release catch more deps (open-telemetry#867)

    In the last release, eachdist missed updating dependencies
    on ext-datadog, which has a slightly different, but valid,
    way of specifying the version (omitting some spaces).
    
    Making the eachdist regex more lenient to catch other valid
    version specifications.
    
    Also modifying the ext-datadog dependency specification to
    match the format of all the others.
    
    Co-authored-by: Leighton Chen <lechen@microsoft.com>
    toumorokoshi and lzchen committed Jul 2, 2020
    Configuration menu
    Copy the full SHA
    2a9c3ac View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2020

  1. Strip letters (open-telemetry#877)

    Andrew Xue committed Jul 3, 2020
    Configuration menu
    Copy the full SHA
    112bade View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2020

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

Commits on Jul 6, 2020

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

Commits on Jul 7, 2020

  1. Configuration menu
    Copy the full SHA
    c0a5be5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d0e125a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    34698ff View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2020

  1. Update instrumentors to use span processors (open-telemetry#852)

    Fixes open-telemetry#832. By having tracer creation occur on demand, late tracer provider configuration will be honored. 
    
    This resolves issues with instrumentation occurring before tracer providers are set by the application developer, which would result in the no-op tracer used for the lifetime of the instrumentation.
    
    Co-authored-by: alrex <aboten@lightstep.com>
    Co-authored-by: Leighton Chen <lechen@microsoft.com>
    Co-authored-by: Yusuke Tsutsumi <yusuke@tsutsumi.io>
    4 people committed Jul 8, 2020
    Configuration menu
    Copy the full SHA
    09df35c View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2020

  1. Update resources tests (open-telemetry#893)

    Andrew Xue committed Jul 10, 2020
    Configuration menu
    Copy the full SHA
    8cbd9d4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    61edbfa View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2020

  1. Configuration menu
    Copy the full SHA
    e0f1410 View commit details
    Browse the repository at this point in the history
  2. fix typo in BatchExportSpanProcessor value error (open-telemetry#897)

    Co-authored-by: Leighton Chen <lechen@microsoft.com>
    Co-authored-by: Yusuke Tsutsumi <yusuke@tsutsumi.io>
    3 people committed Jul 13, 2020
    Configuration menu
    Copy the full SHA
    b085f37 View commit details
    Browse the repository at this point in the history
  3. ext/jaeger: Fixing the serialization of a tuple element by coercing i…

    …t into a string (open-telemetry#865)
    
    Could not serialize attribute aws.region to tag when exporting via jaeger
    Serialize tuple type values by coercing them into a string, since Jaeger does not
    support tuple types.
    bitspradp committed Jul 13, 2020
    Configuration menu
    Copy the full SHA
    e31c4bb View commit details
    Browse the repository at this point in the history
  4. step down toumorokoshi to approver (open-telemetry#901)

    As discussed in the SIG, toumorokoshi is stepping down
    as a maintainer.
    
    Co-authored-by: alrex <aboten@lightstep.com>
    toumorokoshi and alrex committed Jul 13, 2020
    Configuration menu
    Copy the full SHA
    7c987d4 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    675334b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1dde6ff View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2020

  1. Configuration menu
    Copy the full SHA
    5cb01d6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    545068d View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2020

  1. fastapi instrumentation (open-telemetry#890)

    Co-authored-by: Leighton Chen <lechen@microsoft.com>
    toumorokoshi and lzchen committed Jul 15, 2020
    Configuration menu
    Copy the full SHA
    7bec76a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5d82b0a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2a952b3 View commit details
    Browse the repository at this point in the history

Commits on Jul 16, 2020

  1. Configuration menu
    Copy the full SHA
    ee9d28a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cfd9225 View commit details
    Browse the repository at this point in the history
  3. remove google exporter files (open-telemetry#918)

    Andrew Xue committed Jul 16, 2020
    Configuration menu
    Copy the full SHA
    23e577e View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2020

  1. Configuration menu
    Copy the full SHA
    a818cc6 View commit details
    Browse the repository at this point in the history
  2. chore: finish migrating to circleci (open-telemetry#920)

    Co-authored-by: Leighton Chen <lechen@microsoft.com>
    alrex and lzchen committed Jul 20, 2020
    Configuration menu
    Copy the full SHA
    ce5cb96 View commit details
    Browse the repository at this point in the history
  3. chore: updating circle ci to add tracecontext and mypy jobs (open-tel…

    …emetry#921)
    
    * chore: updating circle ci to add tracecontext and mypy jobs
    alrex committed Jul 20, 2020
    Configuration menu
    Copy the full SHA
    69740b1 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2020

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

Commits on Jul 22, 2020

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

Commits on Jul 24, 2020

  1. ext/aiopg: Add instrumentation for aiopg (open-telemetry#801)

    Co-authored-by: Leighton Chen <lechen@microsoft.com>
    Co-authored-by: Alex Boten <aboten@lightstep.com>
    3 people committed Jul 24, 2020
    Configuration menu
    Copy the full SHA
    f2c6c85 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    935280c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    004896f View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2020

  1. meta: adding aabmass as approver (open-telemetry#941)

    once approved the PR, aabmass will be added to the approvers team
    alrex committed Jul 27, 2020
    Configuration menu
    Copy the full SHA
    4a922d6 View commit details
    Browse the repository at this point in the history
  2. Drop mauriciovasquezbernal from approvers (open-telemetry#948)

    I haven't contributed to the project in a while and I don't expect to start
    contributing again. This commit removes myself as an approver of the project.
    mauriciovasquezbernal committed Jul 27, 2020
    Configuration menu
    Copy the full SHA
    090fb7c View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2020

  1. ext/asyncpg: Shouldn't capture query parameters by default (open-tele…

    …metry#854)
    
    * Update CHANGELOG.md
    Co-authored-by: alrex <aboten@lightstep.com>
    thomasdesr committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    7f74a89 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8bc7786 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f682cf5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    158d6c9 View commit details
    Browse the repository at this point in the history
  5. bumping version to 0.12.dev0

    Alex Boten committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    d67ad7b View commit details
    Browse the repository at this point in the history
  6. Merge branch 'master' into v0.11b0-update

    alrex committed Jul 28, 2020
    Configuration menu
    Copy the full SHA
    e082bd6 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2020

  1. chore: merging release branch updates

    alrex committed Jul 29, 2020
    Configuration menu
    Copy the full SHA
    35fdac8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eec050b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fc58032 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2020

  1. Configuration menu
    Copy the full SHA
    8c4fca5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1112792 View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2020

  1. Configuration menu
    Copy the full SHA
    242d5a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    28d0cdf View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2020

  1. Configuration menu
    Copy the full SHA
    6e34dfe View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3143a4b View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    57ca703 View commit details
    Browse the repository at this point in the history

Commits on Aug 5, 2020

  1. Configuration menu
    Copy the full SHA
    eb8b1ea View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9558900 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    81025e1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2e70088 View commit details
    Browse the repository at this point in the history
  5. opentracing-shim: Return consistent ScopeShim objects (open-telemetry…

    …#922)
    
    This uses the OpenTelemetry context management mechanism to store a
    ScopeShim object in order to make active return the same object as the
    one returned by start_active_span.
    ocelotl committed Aug 5, 2020
    Configuration menu
    Copy the full SHA
    8b1da35 View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2020

  1. Configuration menu
    Copy the full SHA
    590c32c View commit details
    Browse the repository at this point in the history
  2. Stop TracerProvider from being overridden (open-telemetry#959)

    Co-authored-by: Leighton Chen <lechen@microsoft.com>
    ocelotl and lzchen committed Aug 6, 2020
    Configuration menu
    Copy the full SHA
    85a2f43 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c42c5f3 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2020

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

Commits on Aug 12, 2020

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

Commits on Aug 13, 2020

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

Commits on Aug 14, 2020

  1. Configuration menu
    Copy the full SHA
    e8f7b6f View commit details
    Browse the repository at this point in the history
  2. instrumentation/opentracing-shim: Preserve parent-child relationship …

    …between OpenTelemetry and OpenTracing spans (open-telemetry#924)
    ocelotl committed Aug 14, 2020
    Configuration menu
    Copy the full SHA
    3341a8e View commit details
    Browse the repository at this point in the history
  3. Revisit OpenTracing Shim docs (open-telemetry#925)

    Co-authored-by: Yusuke Tsutsumi <tsutsumi.yusuke@gmail.com>
    ocelotl and toumorokoshi committed Aug 14, 2020
    Configuration menu
    Copy the full SHA
    2bc7d35 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2020

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

Commits on Aug 17, 2020

  1. Configuration menu
    Copy the full SHA
    1576a0d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5aa1d81 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2020

  1. Configuration menu
    Copy the full SHA
    452be59 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c9709d2 View commit details
    Browse the repository at this point in the history
  3. bug (open-telemetry#1011)

    lzchen committed Aug 18, 2020
    Configuration menu
    Copy the full SHA
    3cae077 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2020

  1. Revert "pin flake8 at 3.7.9 (open-telemetry#679)" (open-telemetry#1017)

    This reverts commit 021723a.
    Underlying issue was fixed by commit 20cf4cb.
    ffe4 committed Aug 19, 2020
    Configuration menu
    Copy the full SHA
    eaf5bba View commit details
    Browse the repository at this point in the history
  2. Update README.md (open-telemetry#1021)

    alrex committed Aug 19, 2020
    Configuration menu
    Copy the full SHA
    0d5f15a View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2020

  1. Configuration menu
    Copy the full SHA
    ee094c2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    163564a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    281a0e6 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2020

  1. Fix grpc tests when running from cmd-line/eachdist script (open-telem…

    …etry#1027)
    
    * when running the grpc tests with pytest or eachdist from the command
      line the 2nd test trying to connect to the test server failed with
      a connection refused message.
      Seems like the connection from the previous test was still alive due to
      the channel not being properly closed.
    mariojonke committed Aug 21, 2020
    Configuration menu
    Copy the full SHA
    dfc7aa5 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2020

  1. exporter/jaeger: Either collector submit batch or Agent emit batch (o…

    …pen-telemetry#982)
    
    * Either collector submit batch or Agent emit batch
    vtdat committed Aug 26, 2020
    Configuration menu
    Copy the full SHA
    e21ee21 View commit details
    Browse the repository at this point in the history

Commits on Aug 27, 2020

  1. Configuration menu
    Copy the full SHA
    f6a658e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9b41a57 View commit details
    Browse the repository at this point in the history
  3. Make return value of get_correlations immutable (open-telemetry#1024)

    * Make return value of `get_correlations` immutable
    ffe4 committed Aug 27, 2020
    Configuration menu
    Copy the full SHA
    6ba985a View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2020

  1. docs: fix outdated alpha statement (open-telemetry#1047)

    `README.md` and the opentelemetry website say this library is in beta,
    and releases have been called betas since March, so update
    `docs/index.rst` to be consistent with that.
    gthb committed Aug 28, 2020
    Configuration menu
    Copy the full SHA
    7b6aba0 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2020

  1. docs: updating readme (open-telemetry#1052)

    * docs: updating readme
    alrex committed Aug 31, 2020
    Configuration menu
    Copy the full SHA
    dd47cd4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c435600 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2020

  1. RequestsInstrumentor: Add support for prepared requests (open-telemet…

    …ry#1040)
    
    in addition to Session.request instrument Session.send to also
    create spans for prepared requests.
    mariojonke committed Sep 2, 2020
    Configuration menu
    Copy the full SHA
    140e5f9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e650fe7 View commit details
    Browse the repository at this point in the history
  3. Add support for db cursors and connections in context managers (open-…

    …telemetry#1028)
    
    Here is an example snippet that will not report tracing without this patch:
    
    with psycopg2.connect(...) as conn, conn.cursor() as cursor:
        cursor.execute("select 1;")
    
    Co-authored-by: Carl Bordum Hansen <carl@bordum.dk>
    ffe4 and carlbordum committed Sep 2, 2020
    Configuration menu
    Copy the full SHA
    2245558 View commit details
    Browse the repository at this point in the history
  4. chore: fix intermittent build failures (open-telemetry#1067)

    This test was causing pypy3-core-getting-started jobs to fail intermittently. Removing the arbitrary sleep and replacing it with a retry strategy.
    alrex committed Sep 2, 2020
    Configuration menu
    Copy the full SHA
    e45354c View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2020

  1. Configuration menu
    Copy the full SHA
    3bbab02 View commit details
    Browse the repository at this point in the history
  2. Populate resource attributes as per semantic conventions (open-teleme…

    …try#1053)
    
    As per semantic conventions, set the `telemetry.sdk` parameters.
    alrex committed Sep 3, 2020
    Configuration menu
    Copy the full SHA
    8992741 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    8b3479a View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2020

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

Commits on Sep 8, 2020

  1. Remove non-inclusive language from comments in pylint (open-telemetry…

    …#1077)
    
    * Remove non-inclusive language from comments in pylint
    Co-authored-by: Daniel <61800298+ffe4@users.noreply.github.com>
    flands committed Sep 8, 2020
    Configuration menu
    Copy the full SHA
    63685b1 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2020

  1. Improve BatchExportSpanProcessor (open-telemetry#1062)

    * it was possible for force flush calls to miss the flush finished
      notifications by the worker thread. in case a flush token got added
      in the main thread and the worker thread processed and notified the
      flush condition before the main thread called wait on the flush
      condition, the wakup is missed and the main thread has to wait the
      full flush timeout
    * calls to force flush were not really thread safe since the state
      if a flush operation is in progress was indictated by a single boolean
      flag which gets reset when the first force flush call finishes.
    * instead of having a boolean flag to indicate a flush request use an
      Event. When a call to force flush is made it is looked up if a
      flush request event is currently pending or a new one is created.
      The worker thread will check if a flush request event exists, unset it
      and use a local reference for signaling once the export operation finished.
      Force flush calls will wait in the meantime on the flush request event until
      they are signaled by the worker thread.
      This also makes calls to force flush thread safe since multiple threads
      can/might wait on one event.
    mariojonke committed Sep 9, 2020
    Configuration menu
    Copy the full SHA
    f6e0705 View commit details
    Browse the repository at this point in the history
  2. exporter/zipkin: adding support for env var OTEL_EXPORTER_ZIPKIN_ENDP…

    …OINT (open-telemetry#1064)
    
    * add support for env var: OTEL_EXPORTER_ZIPKIN_ENDPOINT
    * update method signature to use url
    alrex committed Sep 9, 2020
    Configuration menu
    Copy the full SHA
    370cc6b View commit details
    Browse the repository at this point in the history
  3. sdk: rename resource labels to attributes (open-telemetry#1082)

    This aligns with the specification for Resources
    alrex committed Sep 9, 2020
    Configuration menu
    Copy the full SHA
    50478c2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    21994df View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6be4ae3 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    4726bbf View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2020

  1. docs: adding faq (open-telemetry#1068)

    Adding an FAQ section, which can also serve as a quick reference.
    
    Not having such a section makes common scenarios harder to discover.
    toumorokoshi committed Sep 10, 2020
    Configuration menu
    Copy the full SHA
    272bc0e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    65ddc2d View commit details
    Browse the repository at this point in the history

Commits on Sep 11, 2020

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

Commits on Sep 14, 2020

  1. Zipkin exporter report instrumentation info (open-telemetry#1097)

    * Zipkin exporter report instrumentation info
    dengliming committed Sep 14, 2020
    Configuration menu
    Copy the full SHA
    6588a70 View commit details
    Browse the repository at this point in the history
  2. build/infra: Add GitHub Action for tox runs (open-telemetry#984)

    The Python 3.5 intrumentation test segfaults when importing the mysql connector. Running this test on Ubuntu-20.04 fixes this issue.
    ffe4 committed Sep 14, 2020
    Configuration menu
    Copy the full SHA
    86460c9 View commit details
    Browse the repository at this point in the history
  3. instrumentation/botocore: fix failing test (open-telemetry#1100)

    The failing test was introduced I believe by a change in behaviour noted in this issue: getmoto/moto#3292. The solution is to set a region in the create_bucket call.
    
    Fixes open-telemetry#1088
    alrex committed Sep 14, 2020
    Configuration menu
    Copy the full SHA
    23cf584 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d376df1 View commit details
    Browse the repository at this point in the history
  5. dropping support for python 3.4 (open-telemetry#1099)

    * dropping support for python 3.4
    alrex committed Sep 14, 2020
    Configuration menu
    Copy the full SHA
    d7ce152 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    1e34279 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2020

  1. Configuration menu
    Copy the full SHA
    071b1b3 View commit details
    Browse the repository at this point in the history
  2. Fix missing step in docs (open-telemetry#1113)

    As far as I can tell, the tutorial in the docs doesn't actually work
    without this line.
    alertedsnake committed Sep 15, 2020
    Configuration menu
    Copy the full SHA
    751e813 View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2020

  1. Configuration menu
    Copy the full SHA
    eaa7764 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    553f6e8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1abdc02 View commit details
    Browse the repository at this point in the history

Commits on Sep 17, 2020

  1. Added instrumentation for Tornado 6 and above (open-telemetry#1018)

    This commit adds auto-instrumentation for Tornado 6 and above on Python
    versions 3.5 and above.
    owais committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    5473200 View commit details
    Browse the repository at this point in the history
  2. release: updating changelogs and version to 0.13b0 (open-telemetry#1129)

    * updating changelogs and version to 0.13b0
    alrex committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    02aec8f View commit details
    Browse the repository at this point in the history
  3. chore: bump dev version (open-telemetry#1131)

    alrex committed Sep 17, 2020
    Configuration menu
    Copy the full SHA
    b923c52 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e8f5eb5 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2020

  1. Configuration menu
    Copy the full SHA
    a59e268 View commit details
    Browse the repository at this point in the history
  2. exporter/datadog: add support for resource labels and service.name (o…

    …pen-telemetry#1074)
    
    * exporter/datadog: add support for resource labels and service.name
    ericmustin committed Sep 18, 2020
    Configuration menu
    Copy the full SHA
    6503daf View commit details
    Browse the repository at this point in the history
  3. exporter/zipkin: Add status to the tags for the Zipkin Exporter (open…

    …-telemetry#1124)
    
    * [Issue open-telemetry#1111] Add span status to tags for Zipkin exporter
    wilguo committed Sep 18, 2020
    Configuration menu
    Copy the full SHA
    e275d70 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    497b322 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2020

  1. Configuration menu
    Copy the full SHA
    efcfbb8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7f01f05 View commit details
    Browse the repository at this point in the history
  3. Store ints as ints in the configuration object (open-telemetry#1119)

    Fixes open-telemetry#1118
    
    Co-authored-by: alrex <aboten@lightstep.com>
    ocelotl and alrex committed Sep 21, 2020
    Configuration menu
    Copy the full SHA
    99e8971 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9f5de45 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    ac35858 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2020

  1. Configuration menu
    Copy the full SHA
    44627a7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d8edd50 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2020

  1. Configuration menu
    Copy the full SHA
    30f79fd View commit details
    Browse the repository at this point in the history
  2. exporter/zipkin: Fix zipkin exporter translation bug (open-telemetry#…

    …1149)
    
    Zipkin exporter translation was setting `otel.status_code` attribute as
    an integer which resulted in Otel collector rejecting the spans. This
    commit casts the value to a string.
    owais committed Sep 23, 2020
    Configuration menu
    Copy the full SHA
    b8a8016 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    90d7400 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2020

  1. Configuration menu
    Copy the full SHA
    4af1341 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7636547 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    2b46d11 View commit details
    Browse the repository at this point in the history
  4. Make zipkin tag value length configurable (open-telemetry#1151)

    Zipkin exporter truncates tag values to a maximum length of 128
    characters. This commit makes this value configurable while keeping
    128 as the default value.
    owais committed Sep 24, 2020
    Configuration menu
    Copy the full SHA
    c1ec444 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2020

  1. Configuration menu
    Copy the full SHA
    872975b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b255940 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2020

  1. Zipkin: More deterministic unit test for comparing zipkin annotations (

    …open-telemetry#1168)
    
    Zipkin annotation values are strings containing JSON documents. We
    cannot have deterministic ordering of event attributes as they may come
    in any order and python versions older than 3.7 don't have ordered
    dicts. We extract the annotations from exported spans, parse the JSON
    documents into Python dicts and then compare them.
    owais committed Sep 29, 2020
    Configuration menu
    Copy the full SHA
    c534a2c View commit details
    Browse the repository at this point in the history
  2. Added ability to extract span attributes from django request objects. (

    …open-telemetry#1154)
    
    OTEL_PYTHON_DJANGO_TRACED_REQUEST_ATTRS env var can be set to a command
    separated list of attributes names that will be extracted from Django's
    request object and set as attributes on spans.
    owais committed Sep 29, 2020
    Configuration menu
    Copy the full SHA
    1522b44 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    28e3a39 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9be899e View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2020

  1. Configuration menu
    Copy the full SHA
    f4521fd View commit details
    Browse the repository at this point in the history
  2. docs: updating trace API docstrings (open-telemetry#1170)

    The current docstrings were not factually correct, and different
    wording provided better clarity:
    
    - start_as_current_span shoudl return the current span back
      to the previous current span in the context, rather than the
      parent span. This is the behavior of the SDK.
    - There is not "tracer context", simply the "context" object. So
      renaming references there.
    toumorokoshi committed Sep 30, 2020
    Configuration menu
    Copy the full SHA
    a71d383 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c68ce46 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5eb0598 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    e50e3a8 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    10e2583 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    982b667 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2020

  1. docs: updating tox target in contributing doc (open-telemetry#1183)

    The tox targets were updated a while ago, but the
    contributing doc was not.
    alrex committed Oct 1, 2020
    Configuration menu
    Copy the full SHA
    33f417f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0e0c3e3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c8df54b View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2020

  1. meta: adding owais as approver (open-telemetry#1192)

    Co-authored-by: Leighton Chen <lechen@microsoft.com>
    alrex and lzchen committed Oct 2, 2020
    Configuration menu
    Copy the full SHA
    308a1a9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    14fad78 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2020

  1. Configuration menu
    Copy the full SHA
    568641f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b565d6b View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2020

  1. Fix issue when metrics are not available (open-telemetry#1207)

    Not all configured metrics are available on all operating
    systems, added a hasattr call before calling the observer.
    alrex committed Oct 6, 2020
    Configuration menu
    Copy the full SHA
    f9218ca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8ccc5cf View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6fac795 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2020

  1. Configuration menu
    Copy the full SHA
    803f582 View commit details
    Browse the repository at this point in the history
  2. Adding Resource to MetricRecord (open-telemetry#1209)

    Co-authored-by: Diego Hurtado <ocelotl@users.noreply.github.com>
    alrex and ocelotl committed Oct 7, 2020
    Configuration menu
    Copy the full SHA
    8d7cba0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    68b7cea View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2020

  1. Added ability to extract span attributes from tornado request objects (

    open-telemetry#1178)
    
    OTEL_PYTHON_TONADO_TRACED_REQUEST_ATTRS env var can be set to a command
    separated list of attributes names that will be extracted from Tornado's
    request object and set as attributes on spans.
    
    Co-authored-by: (Eliseo) Nathaniel Ruiz Nowell <enruizno@uwaterloo.ca>
    owais and NathanielRN committed Oct 8, 2020
    Configuration menu
    Copy the full SHA
    4a66652 View commit details
    Browse the repository at this point in the history
  2. Parent is now always passed in via Context, intead of Span or SpanCon…

    …text (open-telemetry#1146)
    
    Co-authored-by: Diego Hurtado <ocelotl@users.noreply.github.com>
    alrex and ocelotl committed Oct 8, 2020
    Configuration menu
    Copy the full SHA
    0e852ea View commit details
    Browse the repository at this point in the history
  3. Use is_recording flag in aiopg, asyncpg, dbapi, psycopg2, pymemcache,…

    … pymongo, redis, sqlalchemy instrumentations (open-telemetry#1212)
    lzchen committed Oct 8, 2020
    Configuration menu
    Copy the full SHA
    affe911 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2020

  1. Configuration menu
    Copy the full SHA
    c7cc4d9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5760c0e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5f2cbfa View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2020

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

Commits on Oct 13, 2020

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

Commits on Oct 14, 2020

  1. Configuration menu
    Copy the full SHA
    c782f14 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    535c2e6 View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2020

  1. Configuration menu
    Copy the full SHA
    f669b67 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b54540e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6f514a3 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2020

  1. Configuration menu
    Copy the full SHA
    beccc3b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5554152 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5fc08ad View commit details
    Browse the repository at this point in the history
  4. Make SpanProcessor.on_start accept parent Context (open-telemetry#1251)

    * context from Tracer.start_span is passed through to the SpanProcessor
    * fix linting issue in falcon test app when linting with eachdist script
    * fix global error handler test as it read installed extensions
    * reset global Configuration object state after tests were run
    mariojonke committed Oct 16, 2020
    Configuration menu
    Copy the full SHA
    2d873e5 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    b646475 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    09865b8 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2020

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