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

add Jaeger exporter #174

Merged
merged 15 commits into from
Oct 8, 2019

Commits on Sep 25, 2019

  1. add Jaeger exporter

    This commit adds a Jeager exporter for OpenTelemetry.  This exporter is based
    on https://github.com/census-instrumentation/opencensus-python/tree/master/contrib/opencensus-ext-jaeger.
    
    The exporter uses thrift and can be configured to send data to the agent and
    also to a remote collector.
    mauriciovasquezbernal committed Sep 25, 2019
    Configuration menu
    Copy the full SHA
    6124eea View commit details
    Browse the repository at this point in the history

Commits on Sep 27, 2019

  1. handle review #1

    - use Args: notation in documentation
    - remove license boilerplate from empty file
    - use "not x" instead of "len(x) == 0"
    - rename logger
    mauriciovasquezbernal committed Sep 27, 2019
    Configuration menu
    Copy the full SHA
    515527e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3bc29a2 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2019

  1. fix merge

    mauriciovasquezbernal committed Sep 30, 2019
    Configuration menu
    Copy the full SHA
    f32aee8 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2019

  1. avoid use of deque.copy()

    deque.copy() was introduced in python3.5, this commit removes it's usage and
    replaces it for deque(another_deque).
    mauriciovasquezbernal committed Oct 1, 2019
    Configuration menu
    Copy the full SHA
    6b93079 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into mauricio/add_jaeger_exporter

    use deque(dq) instead of deque.copy()
    mauriciovasquezbernal committed Oct 1, 2019
    Configuration menu
    Copy the full SHA
    3d2f089 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2019

  1. Configuration menu
    Copy the full SHA
    11cac7c View commit details
    Browse the repository at this point in the history
  2. fix tests

    order of some data structures was causing random fails.
    mauriciovasquezbernal committed Oct 2, 2019
    Configuration menu
    Copy the full SHA
    fd91817 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2019

  1. add readme

    mauriciovasquezbernal committed Oct 3, 2019
    Configuration menu
    Copy the full SHA
    a0e3402 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    93e49f1 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2019

  1. futher reviews

    - remove "optional" from docs
    - fix some type annotations
    - make pylint check the code
    - fix pylint issues
    mauriciovasquezbernal committed Oct 4, 2019
    Configuration menu
    Copy the full SHA
    3b6872a View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2019

  1. include generated files on the repo again

    there is a long discussion ongoing yet about how to include generated files
    in the repo, so for now just put them here.
    mauriciovasquezbernal committed Oct 7, 2019
    Configuration menu
    Copy the full SHA
    88e02b4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6de0518 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b40a30f View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2019

  1. remove type annotations

    were are not checking annotations with mypy, so remove types annotation completely
    mauriciovasquezbernal committed Oct 8, 2019
    Configuration menu
    Copy the full SHA
    508e166 View commit details
    Browse the repository at this point in the history