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

Merge pull request #1 from open-telemetry/main #2143

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

Commits on Jul 18, 2022

  1. move tracing sdk setup from setUpClass to setUp (open-telemetry#2819)

    * move tracing sdk setup from setUpClass to setUp
    
    * Update contrib SHA
    srikanthccv committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    9b8646d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    30a4d45 View commit details
    Browse the repository at this point in the history
  3. Change tracing to use Resource.to_json() (open-telemetry#2784)

    * Change tracing to use Resource.to_json()
    
    * Edited CHANGELOG
    
    * Added PR # to CHANGELOG
    
    * Change tracing to use Resource.to_json()
    
    * Edited CHANGELOG
    
    * Added PR # to CHANGELOG
    
    * Generalized removal of empty or blank values
    
    * Simplified trace to_json to include empty and null values.
    
    Co-authored-by: Diego Hurtado <[email protected]>
    Co-authored-by: Leighton Chen <[email protected]>
    Co-authored-by: Srikanth Chekuri <[email protected]>
    4 people committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    f14d936 View commit details
    Browse the repository at this point in the history

Commits on Jul 21, 2022

  1. docs: Add an example for preferred temporality and aggregation for me…

    …tric reader (open-telemetry#2832)
    
    * example
    
    * remove test
    
    * comments
    
    * docs
    
    * docs
    
    * seconds
    lzchen committed Jul 21, 2022
    Configuration menu
    Copy the full SHA
    2ad9515 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2022

  1. Revert "Python 3.11: Enhanced error locations in tracebacks (open-tel…

    …emetry#2771)" (open-telemetry#2839)
    
    This reverts commit aa36730.
    
    It is no longer required on Python 3.11.0b4 and later; see
    open-telemetry/opentelemetry-python#2771 (comment)
    and
    https://mail.python.org/archives/list/[email protected]/message/73YP4RS4QOJXUS63BQZVLTQHK3OP3L3H/.
    
    Specifically, the ^^^^… are now omitted when they would “underline” the
    whole preceding line, which is the case here, so the expected output is
    the same as for Python 3.10 and earlier.
    musicinmybrain committed Jul 25, 2022
    Configuration menu
    Copy the full SHA
    05b27be View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2022

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

Commits on Aug 1, 2022

  1. Instrument instances are always created through a Meter (open-telemet…

    …ry#2844)
    
    * Instrument instances are always created through a Meter
    
    * Fix lint and add changelog
    
    * fix lint
    srikanthccv committed Aug 1, 2022
    Configuration menu
    Copy the full SHA
    43288ca View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2022

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

Commits on Aug 3, 2022

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

Commits on Aug 4, 2022

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

Commits on Aug 5, 2022

  1. Use force_flush (open-telemetry#2853)

    * Use force_flush
    
    Fixes open-telemetry#2816
    
    * Refactor time out passing
    
    * Fix test cases
    
    * Add documentation
    
    * Add test case
    
    * Fix docs
    
    * Remove final decorator
    
    * Check for timeout in async calls
    
    * Remove timeout checking in metric reader
    
    * Add force_flush to PeriodicExportingMetricReader
    
    * Use TimeoutError
    
    * Fix lint
    
    * Address timeout comments
    
    * Add MetricsTimeoutError
    
    * Fix test case
    ocelotl committed Aug 5, 2022
    Configuration menu
    Copy the full SHA
    1cae35f View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2022

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

Commits on Aug 15, 2022

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

Commits on Aug 17, 2022

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

Commits on Aug 19, 2022

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

Commits on Aug 20, 2022

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

Commits on Aug 22, 2022

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

Commits on Aug 25, 2022

  1. Mark test as flaky (#2886)

    ocelotl committed Aug 25, 2022
    Configuration menu
    Copy the full SHA
    55977d9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9f198fd View commit details
    Browse the repository at this point in the history
  3. Update package metadata (open-telemetry#2867)

    * Update package metadata
    
    * support Python 3.6
    
    * address review
    
    * update
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    Co-authored-by: Leighton Chen <[email protected]>
    3 people committed Aug 25, 2022
    Configuration menu
    Copy the full SHA
    a602192 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2022

  1. Refactor testing console exporter (#2877)

    * Use devnull instead of stdout when testing console exporter
    
    Fixes open-telemetry#2876
    
    * Fix lint
    
    * Refactor test case
    
    * Debug test in CI
    
    * Fix test
    
    * Move reset metrics to setup and teardown
    
    * Remove repeated code
    ocelotl committed Aug 26, 2022
    Configuration menu
    Copy the full SHA
    6ccdada View commit details
    Browse the repository at this point in the history

Commits on Aug 29, 2022

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

Commits on Aug 30, 2022

  1. Configuration menu
    Copy the full SHA
    ea97617 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6ed381a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a688925 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    1674b59 View commit details
    Browse the repository at this point in the history
  5. Update package metadata (#2896)

    ofek committed Aug 30, 2022
    Configuration menu
    Copy the full SHA
    c69d10c View commit details
    Browse the repository at this point in the history
  6. Update package metadata (#2903)

    ofek committed Aug 30, 2022
    Configuration menu
    Copy the full SHA
    4cdcac6 View commit details
    Browse the repository at this point in the history
  7. Update package metadata (#2897)

    ofek committed Aug 30, 2022
    Configuration menu
    Copy the full SHA
    f49f764 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    da51dbc View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a127085 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    35882fd View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    14c0780 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    e494a75 View commit details
    Browse the repository at this point in the history
  13. Update package metadata (#2895)

    ofek committed Aug 30, 2022
    Configuration menu
    Copy the full SHA
    e3ec929 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    03cc61b View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2022

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

Commits on Sep 1, 2022

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

Commits on Sep 6, 2022

  1. Update README.md (#2916)

    srikanthccv committed Sep 6, 2022
    Configuration menu
    Copy the full SHA
    71c1148 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    2d591e4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    05fd6f3 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2022

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

Commits on Sep 9, 2022

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

Commits on Sep 13, 2022

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

Commits on Sep 20, 2022

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

Commits on Sep 22, 2022

  1. Add force_flush to span exporters (#2919)

    * Add force_flush to span exporters
    
    * Fix lint
    
    * add missing method to grpc exporter
    
    * Update contrib SHA
    
    * Add CHANGELOG entry
    srikanthccv committed Sep 22, 2022
    Configuration menu
    Copy the full SHA
    c0e8f40 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2022

  1. Update scripts (#2944)

    srikanthccv committed Sep 26, 2022
    Configuration menu
    Copy the full SHA
    42db164 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6a61eba View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2022

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

Commits on Oct 6, 2022

  1. Fix dead link (#2962)

    Fixes #2961
    ocelotl committed Oct 6, 2022
    Configuration menu
    Copy the full SHA
    6e9af76 View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2022

  1. Update contrib repo SHA (#2966)

    Fixes #2965
    ocelotl committed Oct 7, 2022
    Configuration menu
    Copy the full SHA
    96414a7 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2022

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

Commits on Oct 12, 2022

  1. exporter-otlp-proto-http: add user agent string (#2959)

    * `exporter-otlp-proto-http`: add user agent string
    
    Adding user agent string to OTLP HTTP exporter. As part of the change, I refactored the content-type header as well.
    
    Part of #2958
    
    * update changelog
    
    * fix linting, fix link
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    Alex Boten and srikanthccv committed Oct 12, 2022
    Configuration menu
    Copy the full SHA
    8927ae5 View commit details
    Browse the repository at this point in the history

Commits on Oct 13, 2022

  1. Add http-metrics to semantic conventions (#2976)

    * sem
    
    * lint
    lzchen committed Oct 13, 2022
    Configuration menu
    Copy the full SHA
    321f90f View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2022

  1. Fix Pytest version (#2987)

    Fixes #2986
    ocelotl committed Oct 25, 2022
    Configuration menu
    Copy the full SHA
    6453a32 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2022

  1. Fix Python version for docs (#2985)

    * Fix Python version for docs
    
    Fixes #2984
    
    * Add FIXME
    ocelotl committed Oct 26, 2022
    Configuration menu
    Copy the full SHA
    4c740f9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8318f01 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c338eb1 View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2022

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

Commits on Oct 31, 2022

  1. Configuration menu
    Copy the full SHA
    11f49d5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    370af5f View commit details
    Browse the repository at this point in the history
  3. Add py3.11 to workflow (#2997)

    * Add py3.11 to workflow
    
    * Update classifiers
    
    * Spacing
    
    * Add CHANGELOG entry
    
    Co-authored-by: Leighton Chen <[email protected]>
    srikanthccv and lzchen committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    8beae7d View commit details
    Browse the repository at this point in the history
  4. Add and use missing metrics environment variables (#2968)

    * Add and use missing metrics environment variables
    
    Fixes #2967
    
    * Add missing environment variables
    
    * Remove redundant test
    
    * Add test case for HTTPS endpoint
    
    * Fix mocks
    ocelotl committed Oct 31, 2022
    Configuration menu
    Copy the full SHA
    fa19e1f View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2022

  1. Add exponent and logarithm mappings (#2960)

    * Add exponent and logarithm mappings
    
    Fixes #2957
    
    * Fix comments
    
    * Remove example function
    
    * Fix lint and spelling
    
    * Add link to spec
    
    * Fix documentation to reference the exceptions
    
    * Refactor min and max scale
    
    * Set self._scale in parent only
    
    * Add explanation for IEEE 754
    
    * Use mantissa consistently
    
    * Refactor lock definition
    
    * Fix wrong fixed value
    
    * Fix lint
    
    * Fix test name
    
    * Update opentelemetry-sdk/tests/metrics/exponential_histogram/test_exponent_mapping.py
    
    Co-authored-by: Aaron Abbott <[email protected]>
    
    * Fix operator separator
    
    * Rename boundary functions
    
    * Add links to reference implementation
    
    * Fix lint and spelling
    
    * Revert "Refactor lock definition"
    
    This reverts commit 064bb2b7d7f04f93891580c9cce4a6ee135bacd1.
    
    * Refactor initialization
    
    * Fix math format
    
    * Rename to normal and denormal
    
    * Remove errors from public interface
    
    Co-authored-by: Aaron Abbott <[email protected]>
    ocelotl and aabmass committed Nov 1, 2022
    Configuration menu
    Copy the full SHA
    7d51d20 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3132a56 View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2022

  1. Configuration menu
    Copy the full SHA
    4055dcf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d655eb8 View commit details
    Browse the repository at this point in the history
  3. Update SHA (#3012)

    lzchen committed Nov 2, 2022
    Configuration menu
    Copy the full SHA
    b34782f View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2022

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

Commits on Nov 8, 2022

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

Commits on Nov 17, 2022

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

Commits on Nov 21, 2022

  1. Custom sampler fix (#3026)

    * Fixed circular dependency that can happen when injecting custom samplers
    
    * lint
    
    * Deleted duplicate tests
    
    * lint
    
    * lint
    
    * lint
    
    * lint
    
    * lint
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/_configuration/__init__.py
    
    Co-authored-by: Leighton Chen <[email protected]>
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/_configuration/__init__.py
    
    Co-authored-by: Leighton Chen <[email protected]>
    
    * typing
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/_configuration/__init__.py
    
    Co-authored-by: Leighton Chen <[email protected]>
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/_configuration/__init__.py
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    
    * Retry tests
    
    * Fixed circular dependency that can happen when injecting custom samplers
    
    * lint
    
    * Deleted duplicate tests
    
    * lint
    
    * lint
    
    * lint
    
    * lint
    
    * lint
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/_configuration/__init__.py
    
    Co-authored-by: Leighton Chen <[email protected]>
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/_configuration/__init__.py
    
    Co-authored-by: Leighton Chen <[email protected]>
    
    * typing
    
    * Retry tests
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/_configuration/__init__.py
    
    Co-authored-by: Leighton Chen <[email protected]>
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/_configuration/__init__.py
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    
    * Updated contrib sha
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    Co-authored-by: Leighton Chen <[email protected]>
    Co-authored-by: Diego Hurtado <[email protected]>
    4 people committed Nov 21, 2022
    Configuration menu
    Copy the full SHA
    b02ff47 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2022

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

Commits on Nov 28, 2022

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

Commits on Nov 29, 2022

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

Commits on Nov 30, 2022

  1. Configuration menu
    Copy the full SHA
    638988c View commit details
    Browse the repository at this point in the history
  2. Add a more informative error message when parsing ENV headers (#3044)

    * Add a more informative error message when parsing ENV headers
    
    Also, rename the function to make it clear that this parsing is specific
    to headers provided via ENV variables.
    
    Fixes open-telemetry#2376
    
    * Use parse_env_headers in metrics and logs as well
    
    * Fix lint
    
    * Fix mypy
    ocelotl committed Nov 30, 2022
    Configuration menu
    Copy the full SHA
    212d50a View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2022

  1. Configuration menu
    Copy the full SHA
    90a0b68 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4f83b73 View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2022

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

Commits on Dec 6, 2022

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

Commits on Dec 9, 2022

  1. Fix tox version for CI (#3081)

    Fixes #3079
    ocelotl committed Dec 9, 2022
    Configuration menu
    Copy the full SHA
    66f3b0b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0f9cfdd View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2023

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

Commits on Jan 2, 2023

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

Commits on Jan 6, 2023

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

Commits on Jan 10, 2023

  1. Fix bug in example (#3111)

    moshiba committed Jan 10, 2023
    Configuration menu
    Copy the full SHA
    2fa6210 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2023

  1. Configuration menu
    Copy the full SHA
    665bd48 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f5fb6b1 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2023

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

Commits on Jan 13, 2023

  1. fixed all instances of @tracer.start_as_current_span("name"): to @tracer

    .start_as_current_span("name") as decorators do not have colons (#3127)
    drichards188 committed Jan 13, 2023
    Configuration menu
    Copy the full SHA
    5a996fd View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2023

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

Commits on Jan 20, 2023

  1. Fix validation of baggage values (#3058)

    * Fix validation of baggage values
    
    Fixes #2934
    
    * Remove test case
    ocelotl committed Jan 20, 2023
    Configuration menu
    Copy the full SHA
    a99cc21 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2023

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

Commits on Jan 24, 2023

  1. Fix User-Agent header value for OTLP exporters (#3128)

    * Update values as required for issue
    
    * add CHANGED_FILES link
    
    * update changelog
    
    * update test to validate setting
    
    * update only oltp exporter
    
    * update grpc exporter
    
    * Update CHANGELOG.md
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    
    * remove CHANGED_FILES#
    
    * update location of imports for linting
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    keithkroeger and srikanthccv committed Jan 24, 2023
    Configuration menu
    Copy the full SHA
    8f312c4 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2023

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

Commits on Jan 31, 2023

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

Commits on Feb 1, 2023

  1. Remove usage of pkg_resources (#3047)

    * Remove usage of pkg_resources
    
    Fixes #2927
    
    * WIP
    
    * WIP
    
    * Add test case for _load_providers
    
    * Fix test case for 3.9
    
    * Fix lint
    
    * Fix 3.7 sdk tests
    
    * Fix lint
    
    * Fix lint
    
    * Fix mypy again
    
    * WIP
    
    * WIP
    
    * WIP
    
    * WIP
    
    * Move to module
    
    * Fix SDK
    
    * Fix mypy
    
    * Refactor load call
    
    * Fix mypy
    
    * Fix lint
    
    * Fix opencensus exporter
    
    * Refactor implementation
    
    * Add missing dependency
    
    * Undo changes in shim
    
    * Fix dependency
    
    * Revert "Undo changes in shim"
    
    This reverts commit bd82b8feb2ab38678bd62fd6a9a53db88dc2737d.
    
    * Update dependencies
    
    * Update dependency for opencensus exporter
    
    * Add descriptive error
    ocelotl committed Feb 1, 2023
    Configuration menu
    Copy the full SHA
    2e14fe1 View commit details
    Browse the repository at this point in the history

Commits on Feb 2, 2023

  1. Configuration menu
    Copy the full SHA
    4286d63 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9551678 View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2023

  1. Revert "Suppress warning for SDK instantiation of InstrumentationInfo…

    … (#3041)" (#3157)
    
    This reverts commit a11c0cc.
    
    Co-authored-by: Diego Hurtado <[email protected]>
    srikanthccv and ocelotl committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    6544004 View commit details
    Browse the repository at this point in the history
  2. PeriodicExportingMetricsReader with value = infinity to support expli…

    …cit metric collection (#3059)
    howardyoo committed Feb 3, 2023
    Configuration menu
    Copy the full SHA
    3a1c3b0 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e0e6a3a View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2023

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

Commits on Feb 13, 2023

  1. Add attribute key to mixed types warning message (#3162)

    Co-authored-by: Srikanth Chekuri <[email protected]>
    Petter Friberg and srikanthccv committed Feb 13, 2023
    Configuration menu
    Copy the full SHA
    34d11d5 View commit details
    Browse the repository at this point in the history
  2. update public_symbols_checker.py to detect removed symbols (#3159)

    * update public_symbols_checker.py to detect removed symbols
    
    * Update scripts/public_symbols_checker.py
    
    ---------
    
    Co-authored-by: Diego Hurtado <[email protected]>
    srikanthccv and ocelotl committed Feb 13, 2023
    Configuration menu
    Copy the full SHA
    e183935 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    acc11a0 View commit details
    Browse the repository at this point in the history
  4. deprecate jaeger exporters (#3158)

    * deprecate jaeger exporters
    
    * correct version
    
    * Add CHANGELOG entry
    
    * Add deprecation message to README
    srikanthccv committed Feb 13, 2023
    Configuration menu
    Copy the full SHA
    363a3b9 View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2023

  1. Configuration menu
    Copy the full SHA
    6785335 View commit details
    Browse the repository at this point in the history
  2. Update some test environments to 3.10 (#3149)

    * Update some test environments to 3.10
    
    Fixes #3148
    
    * Update environments in workflows file as well
    ocelotl committed Feb 14, 2023
    Configuration menu
    Copy the full SHA
    0f76769 View commit details
    Browse the repository at this point in the history

Commits on Feb 15, 2023

  1. Update __all__ to statically define reexports (#3143)

    * Statically define __all__ for stable modules
    
    This prevents errors from typecheckers since
    they can now see that members are explicitly reexported
    
    * Add explicit __all__ to experimental _logs modules
    
    * Add changelog for 3143
    
    ---------
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    jenshnielsen and srikanthccv committed Feb 15, 2023
    Configuration menu
    Copy the full SHA
    e03650a View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2023

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

Commits on Feb 21, 2023

  1. Configuration menu
    Copy the full SHA
    3df55e9 View commit details
    Browse the repository at this point in the history
  2. Bump werkzeug in /docs/examples/fork-process-model/flask-uwsgi (#3180)

    Bumps [werkzeug](https://github.com/pallets/werkzeug) from 1.0.1 to 2.2.3.
    - [Release notes](https://github.com/pallets/werkzeug/releases)
    - [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst)
    - [Commits](pallets/werkzeug@1.0.1...2.2.3)
    
    ---
    updated-dependencies:
    - dependency-name: werkzeug
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Srikanth Chekuri <[email protected]>
    dependabot[bot] and srikanthccv committed Feb 21, 2023
    Configuration menu
    Copy the full SHA
    588c5fb View commit details
    Browse the repository at this point in the history
  3. Bump werkzeug in /docs/examples/fork-process-model/flask-gunicorn (#3…

    …179)
    
    Bumps [werkzeug](https://github.com/pallets/werkzeug) from 1.0.1 to 2.2.3.
    - [Release notes](https://github.com/pallets/werkzeug/releases)
    - [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst)
    - [Commits](pallets/werkzeug@1.0.1...2.2.3)
    
    ---
    updated-dependencies:
    - dependency-name: werkzeug
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Leighton Chen <[email protected]>
    Co-authored-by: Srikanth Chekuri <[email protected]>
    3 people committed Feb 21, 2023
    Configuration menu
    Copy the full SHA
    c757e4a View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2023

  1. Configuration menu
    Copy the full SHA
    2d1f0b9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    54a1003 View commit details
    Browse the repository at this point in the history
  3. PeriodicExportingMetricReader will continue collection times out (#30…

    …98) (#3100)
    
    In cases where collection times out, the period exporting reader thread should
    not terminate, but instead catch, log, and continue on after the regular interval
    seconds.
    
    Prior to this commit, a metric collection timeout would terminate the thread and
    stop reporting metrics to the wrapped exporter resulting in the appearance in
    observability tooling of metrics just stopping without reason.
    markallanson committed Feb 23, 2023
    Configuration menu
    Copy the full SHA
    559e06d View commit details
    Browse the repository at this point in the history
  4. Update docs (#3188)

    * Update docs
    
    * fix spell
    srikanthccv committed Feb 23, 2023
    Configuration menu
    Copy the full SHA
    69de3dc View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2023

  1. bugfix: indent not used in MetricsData to_json (#3197)

    Alex Boten committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    a9a96aa View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2023

  1. Initialize package and docs for OpenCensus shim (#3204)

    * Initialize package and docs for opencensus shim
    
    * Fix lint and remove pypy tests
    aabmass committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    d2edb40 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2023

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

Commits on Mar 13, 2023

  1. Add Exponential Histogram (#2964)

    * Bump werkzeug in /docs/examples/fork-process-model/flask-gunicorn (#3179)
    
    Bumps [werkzeug](https://github.com/pallets/werkzeug) from 1.0.1 to 2.2.3.
    - [Release notes](https://github.com/pallets/werkzeug/releases)
    - [Changelog](https://github.com/pallets/werkzeug/blob/main/CHANGES.rst)
    - [Commits](pallets/werkzeug@1.0.1...2.2.3)
    
    ---
    updated-dependencies:
    - dependency-name: werkzeug
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Leighton Chen <[email protected]>
    Co-authored-by: Srikanth Chekuri <[email protected]>
    
    * Refactor buckets interface
    
    * Add missing test case
    
    * Remove wrong return
    
    * Add comments
    
    * Refactor object resetting
    
    * More fixes
    
    * Refactor exporting of buckets
    
    * Fix bug
    
    * Fix spelling
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/metrics/_internal/aggregation.py
    
    Co-authored-by: Aaron Abbott <[email protected]>
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/metrics/_internal/aggregation.py
    
    Co-authored-by: Aaron Abbott <[email protected]>
    
    * Fix exception messages
    
    * Remove scaling check
    
    * Fix typo
    
    * Remove wrong instrument
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/metrics/_internal/aggregation.py
    
    Co-authored-by: Aaron Abbott <[email protected]>
    
    * Add attribute setting lo lock scope
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/metrics/_internal/exponential_histogram/buckets.py
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    
    * Fix collect
    
    * Remove unreachable code
    
    * Fix exporter test cases
    
    * Add comment
    
    * Expand lock scope
    
    * Revert "Expand lock scope"
    
    This reverts commit fd9c47b8c6feb5b8361d5054d199856ae2870d82.
    
    * Expand lock scope
    
    * Add min_max_size test case
    
    * Fix lint
    
    * Use properties for buckets attributes
    
    * Fix bug
    
    * Add comment
    
    * WIP
    
    * Reset values at the beginning of collect
    
    * Merging WIP
    
    * Add merge submethods
    
    * Refactor to use auxiliary methods
    
    * Add downscale method
    
    * WIP
    
    * Finish merge
    
    * Refactor storage of positive and negative WIP
    
    * WIP
    
    * Add test_merge_simple_event_test
    
    * WIP
    
    * WIP
    
    * WIP
    
    * WIP
    
    * Fix lint
    
    * Fix lint
    
    * Add delta test case
    
    * Avoid using current_point attributes
    
    ---------
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Leighton Chen <[email protected]>
    Co-authored-by: Srikanth Chekuri <[email protected]>
    Co-authored-by: Aaron Abbott <[email protected]>
    5 people committed Mar 13, 2023
    Configuration menu
    Copy the full SHA
    f0a0cc4 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2023

  1. Configuration menu
    Copy the full SHA
    af582e9 View commit details
    Browse the repository at this point in the history
  2. Implement shutdown procedure for OTLP grpc exporters (#3138)

    * Implement shutdown procedure for OTLP grpc exporters
    
    - Add `_shutdown` variable for checking if the exporter has been
      shutdown.
    - Prevent export if the `_shutdown` flag has been set. Log a warning
      message is exporter has been shutdown.
    - Use thread lock to synchronize the last export call before shutdown
      timeout. The `shutdown` method will wait until the `timeout_millis`
      if there is an ongoing export. If there is no ongiong export, set the
      `_shutdown` flag to prevent further exports and return.
    - Add unit tests for the `OTLPExporterMixIn` and the sub classes for
      traces and metrics.
    
    * lint files
    
    * add changelog entry for fix
    
    * lint test files
    
    ---------
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    Co-authored-by: Leighton Chen <[email protected]>
    3 people committed Mar 14, 2023
    Configuration menu
    Copy the full SHA
    c84ba94 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2023

  1. Update opencensus docker image (#3221)

    Fixes #3220
    ocelotl committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    2d9858f View commit details
    Browse the repository at this point in the history
  2. Fix use of built-in samplers in SDK configuration (#3176)

    * Add built-in sampler classes
    
    Signed-off-by: Matej Gera <[email protected]>
    
    * Add entry points for built-in samplers
    
    Signed-off-by: Matej Gera <[email protected]>
    
    * Add CHANGELOG
    
    Signed-off-by: Matej Gera <[email protected]>
    
    * Handle rate arg properly
    
    Signed-off-by: Matej Gera <[email protected]>
    
    * Adjust class and entry points naming
    
    Signed-off-by: Matej Gera <[email protected]>
    
    ---------
    
    Signed-off-by: Matej Gera <[email protected]>
    Co-authored-by: Srikanth Chekuri <[email protected]>
    matej-g and srikanthccv committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    a70e4a0 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2023

  1. Use importlib-metadata regardless of Python version (#3217)

    * Use importlib-metadata regardless of Python version
    
    Fixes #3167
    
    * Fix lint
    
    * Add FIXME comment
    
    * Constraint importlib-metadata versions
    ocelotl committed Mar 16, 2023
    Configuration menu
    Copy the full SHA
    6379c1c View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2023

  1. Configuration menu
    Copy the full SHA
    f40be51 View commit details
    Browse the repository at this point in the history
  2. Implement LowMemory temporality presets (#3223)

    * Implement LowMemory temporality
    
    Fixes #3075
    
    * Fix lint
    ocelotl committed Mar 17, 2023
    Configuration menu
    Copy the full SHA
    42f8736 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2023

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

Commits on Mar 22, 2023

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

Commits on Mar 28, 2023

  1. Configuration menu
    Copy the full SHA
    b30b935 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    58e2ef0 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2023

  1. Configuration menu
    Copy the full SHA
    7e67d52 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c11d551 View commit details
    Browse the repository at this point in the history
  3. fix: export ExponentialBucketHistogramAggregation from opentelemetry.…

    …sdk.metrics.view (#3240)
    
    * fix: export ExponentialBucketHistogramAggregation from opentelemetry.sdk.metrics.view
    
    Without this PR if one wants to use exponential histrograms, which were added in realease 1.17.0 (https://github.com/open-telemetry/opentelemetry-python/blob/main/CHANGELOG.md#version-1170038b0-2023-03-22), one needs to import it from the private package opentelemetry.sdk.metrics._internal.aggregation.
    
    This PR fixes #3239.
    sk- committed Mar 29, 2023
    Configuration menu
    Copy the full SHA
    6b38349 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2023

  1. Incorporate resource detectors to auto instrumentation (#3181)

    * Make entry_points behave the same across Python versions
    
    Fixes #3167
    
    * Refactor function
    
    * Fix mypy
    
    * Incorporate resource detectors to auto instrumentation
    
    This is an experimental feature.
    
    Fixes #3172
    
    * Rename environment variable
    
    * Revert previous commits
    
    * Refactor to use importlib-metadata library
    
    * Use get_aggregate_resources
    
    * Fix mypy
    
    * Add CHANGELOG entry
    
    * Fix typo in environment variable
    
    * Add OTELResourceDetector by default
    
    * Move to unreleased section
    
    * Fix entry point name in the documentation
    
    * Update opentelemetry-sdk/src/opentelemetry/sdk/resources/__init__.py
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    
    ---------
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    ocelotl and srikanthccv committed Mar 31, 2023
    Configuration menu
    Copy the full SHA
    2e0d8ee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3c98eee View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2023

  1. Update OpenCensus shim to update OpenCensus execution context (#3231)

    * Update OpenCensus shim to update OpenCensus execution context
    
    Previously, the shim was only writing to OTel context. This updates it to write to both OC and OTel.
    
    Also updated the code to use the `span_context` provided when instrumentation instantiates the `Tracer`.
    aabmass committed Apr 3, 2023
    Configuration menu
    Copy the full SHA
    17aa1e8 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2023

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

Commits on Apr 5, 2023

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

Commits on Apr 14, 2023

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

Commits on Apr 26, 2023

  1. Update contrib repo SHA (#3282)

    This is being done in order to fix CI, the underlying issue being a
    test case in the aiohttp instrumentation that is failing.
    
    Fixes #3278
    ocelotl committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    98c23c8 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2023

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

Commits on May 3, 2023

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

Commits on May 4, 2023

  1. Configuration menu
    Copy the full SHA
    49c8d85 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3732fd4 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2023

  1. Update version to 1.19.0.dev/0.40b0.dev (#3297)

    Co-authored-by: Diego Hurtado <[email protected]>
    opentelemetrybot and ocelotl committed May 12, 2023
    Configuration menu
    Copy the full SHA
    e9530c5 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2023

  1. remove srikanthccv from maintainers (#3302)

    Co-authored-by: Leighton Chen <[email protected]>
    srikanthccv and lzchen committed May 22, 2023
    Configuration menu
    Copy the full SHA
    4d0de54 View commit details
    Browse the repository at this point in the history

Commits on May 24, 2023

  1. Use BoundedAttributes instead of raw dict to extract attributes from …

    …LogRecord #3114 (#3310)
    
    Co-authored-by: Diego Hurtado <[email protected]>
    Co-authored-by: OpenTelemetry Bot <[email protected]>
    3 people committed May 24, 2023
    Configuration menu
    Copy the full SHA
    46757ff View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2023

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

Commits on Jun 7, 2023

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

Commits on Jun 13, 2023

  1. Add max_scale option (#3323)

    ocelotl committed Jun 13, 2023
    Configuration menu
    Copy the full SHA
    2f804fa View commit details
    Browse the repository at this point in the history
  2. Bump requests from 2.28.1 to 2.31.0 (#3317)

    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Srikanth Chekuri <[email protected]>
    Co-authored-by: Diego Hurtado <[email protected]>
    3 people committed Jun 13, 2023
    Configuration menu
    Copy the full SHA
    a5520e8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5ec5064 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2023

  1. Update contrib SHA (#3348)

    Fixes #3347
    ocelotl committed Jun 15, 2023
    Configuration menu
    Copy the full SHA
    6b9f389 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2023

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

Commits on Jun 26, 2023

  1. Add unit to view instrument selection criteria (#3341)

    Co-authored-by: Srikanth Chekuri <[email protected]>
    shalevr and srikanthccv committed Jun 26, 2023
    Configuration menu
    Copy the full SHA
    9026027 View commit details
    Browse the repository at this point in the history
  2. Add dropped_attributes_count support in exporters (#3351)

    Co-authored-by: Diego Hurtado <[email protected]>
    nstawski and ocelotl committed Jun 26, 2023
    Configuration menu
    Copy the full SHA
    ad2de35 View commit details
    Browse the repository at this point in the history

Commits on Jun 27, 2023

  1. Configuration menu
    Copy the full SHA
    251b74a View commit details
    Browse the repository at this point in the history
  2. Show helpful message when propagator is not found (#3259)

    Co-authored-by: Leighton Chen <[email protected]>
    Co-authored-by: Diego Hurtado <[email protected]>
    3 people committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    f4aecdf View commit details
    Browse the repository at this point in the history
  3. Remove log messages from console (#3357)

    Co-authored-by: Shalev Roda <[email protected]>
    ocelotl and shalevr committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    b15de88 View commit details
    Browse the repository at this point in the history
  4. Update approvers list (#3358)

    shalevr committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    6559e07 View commit details
    Browse the repository at this point in the history

Commits on Jun 28, 2023

  1. Exporting resources attributes on target_info for Prometheus Exporter…

    … (#3279)
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    nerstak and srikanthccv committed Jun 28, 2023
    Configuration menu
    Copy the full SHA
    adbcf82 View commit details
    Browse the repository at this point in the history

Commits on Jul 5, 2023

  1. Configuration menu
    Copy the full SHA
    67e6deb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    84357bf View commit details
    Browse the repository at this point in the history
  3. feat: include endpoint in grpc logs (#3362)

    Co-authored-by: Srikanth Chekuri <[email protected]>
    sk- and srikanthccv committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    570d27e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    3f459d3 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2023

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

Commits on Jul 11, 2023

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

Commits on Jul 12, 2023

  1. Configuration menu
    Copy the full SHA
    98985b5 View commit details
    Browse the repository at this point in the history
  2. Update the body type in the log (#3343)

    Co-authored-by: Shalev Roda <[email protected]>
    Co-authored-by: Srikanth Chekuri <[email protected]>
    3 people committed Jul 12, 2023
    Configuration menu
    Copy the full SHA
    7bb21f5 View commit details
    Browse the repository at this point in the history
  3. Remove setuptools runtime dependency (#3372)

    Co-authored-by: Diego Hurtado <[email protected]>
    jenshnielsen and ocelotl committed Jul 12, 2023
    Configuration menu
    Copy the full SHA
    f86d2fd View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    04ab744 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    57d4580 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c094ca8 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2023

  1. Update version to 1.20.0.dev/0.41b0.dev (#3378)

    Co-authored-by: Diego Hurtado <[email protected]>
    opentelemetrybot and ocelotl committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    93992ce View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2023

  1. Update grpcio version (#3384)

    ocelotl committed Jul 17, 2023
    Configuration menu
    Copy the full SHA
    8378db9 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2023

  1. Default Observed Timestamp (#3377)

    Co-authored-by: Diego Hurtado <[email protected]>
    jeremydvoss and ocelotl committed Jul 27, 2023
    Configuration menu
    Copy the full SHA
    b9f31e9 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2023

  1. Modify Prometheus exporter to translate non-monotonic Sums into gauge…

    …s (#3306)
    
    Co-authored-by: Srikanth Chekuri <[email protected]>
    brettimus and srikanthccv committed Aug 7, 2023
    Configuration menu
    Copy the full SHA
    c9277ff View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2023

  1. Configuration menu
    Copy the full SHA
    9b713db View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fccd958 View commit details
    Browse the repository at this point in the history
  3. Add micro benchmark tests for metric instrument operations (#3267)

    Co-authored-by: Srikanth Chekuri <[email protected]>
    lzchen and srikanthccv committed Aug 17, 2023
    Configuration menu
    Copy the full SHA
    8e81bbf View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d8490c5 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2023

  1. Bump uwsgi from 2.0.19.1 to 2.0.22 in /docs/examples/fork-process-mod…

    …el/flask-uwsgi (#3415)
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Aug 28, 2023
    Configuration menu
    Copy the full SHA
    0fa0ce5 View commit details
    Browse the repository at this point in the history

Commits on Aug 30, 2023

  1. Factor out duplicate backoff code (#3396)

    Co-authored-by: Diego Hurtado <[email protected]>
    pmcollins and ocelotl committed Aug 30, 2023
    Configuration menu
    Copy the full SHA
    9121382 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5b64e4f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d604f8c View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2023

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

Commits on Sep 4, 2023

  1. Update version to 1.21.0.dev/0.42b0.dev (#3421)

    Co-authored-by: Diego Hurtado <[email protected]>
    opentelemetrybot and ocelotl committed Sep 4, 2023
    Configuration menu
    Copy the full SHA
    8ce9446 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8775c5f View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2023

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

Commits on Sep 7, 2023

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

Commits on Sep 14, 2023

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

Commits on Sep 15, 2023

  1. resolve requirement conflicts with grpcio-status in other transient d…

    …ependancies when using python 3.11 (#3258)
    psi29a committed Sep 15, 2023
    Configuration menu
    Copy the full SHA
    f02029c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6973de2 View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2023

  1. Configuration menu
    Copy the full SHA
    647fbc7 View commit details
    Browse the repository at this point in the history
  2. Cleanup YAML file (#3440)

    malaterre committed Sep 19, 2023
    Configuration menu
    Copy the full SHA
    0c382ee View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2023

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

Commits on Sep 26, 2023

  1. Update __init__.py (#3448)

    lzchen committed Sep 26, 2023
    Configuration menu
    Copy the full SHA
    c8e5c3e View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2023

  1. Configuration menu
    Copy the full SHA
    495d705 View commit details
    Browse the repository at this point in the history
  2. schema (#3454)

    lzchen committed Oct 2, 2023
    Configuration menu
    Copy the full SHA
    7f8c75d View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2023

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

Commits on Oct 4, 2023

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

Commits on Oct 9, 2023

  1. Configuration menu
    Copy the full SHA
    5ae8f66 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5986c25 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2023

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

Commits on Oct 13, 2023

  1. Fix SumAggregation (#3390)

    Co-authored-by: Aaron Abbott <[email protected]>
    ocelotl and aabmass committed Oct 13, 2023
    Configuration menu
    Copy the full SHA
    d054dff View commit details
    Browse the repository at this point in the history

Commits on Nov 3, 2023

  1. Fix Jaeger exporter and getting started testing failures (#3498)

    Fixes #3497
    Fixes #3501
    ocelotl committed Nov 3, 2023
    Configuration menu
    Copy the full SHA
    4a2cb86 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    edaaade View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    952339c View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2023

  1. Configuration menu
    Copy the full SHA
    c2a1bcf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6676a28 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fcaa6c0 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2a8d4ed View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a74e82b View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2023

  1. Update version to 1.22.0.dev/0.43b0.dev (#3493)

    Co-authored-by: Diego Hurtado <[email protected]>
    opentelemetrybot and ocelotl committed Nov 7, 2023
    Configuration menu
    Copy the full SHA
    91ac1be View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2023

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

Commits on Nov 16, 2023

  1. Fix typing in ReadableSpan (#3528)

    Co-authored-by: Srikanth Chekuri <[email protected]>
    adriangb and srikanthccv committed Nov 16, 2023
    Configuration menu
    Copy the full SHA
    3d9de97 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    36aaa84 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2023

  1. Configuration menu
    Copy the full SHA
    c0576a0 View commit details
    Browse the repository at this point in the history
  2. Update lint deps and configs (#3533)

    Co-authored-by: Diego Hurtado <[email protected]>
    srikanthccv and ocelotl committed Nov 22, 2023
    Configuration menu
    Copy the full SHA
    cc8fd88 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f399195 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    de89b22 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2023

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

Commits on Dec 7, 2023

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

Commits on Dec 14, 2023

  1. Update contrib SHA (#3585)

    Fixes #3584
    ocelotl committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    3cc459e View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2023

  1. Prometheus exporter sanitize info metric (#3572)

    * Prometheus Exporter sanitize info metric
    
    * Update CHANGELOG.md
    
    * Test Prometheus exporter target info sanitize
    
    * Prometheus exporter paint it black
    
    ---------
    
    Co-authored-by: Diego Hurtado <[email protected]>
    kornerc and ocelotl committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    b7e1888 View commit details
    Browse the repository at this point in the history
  2. Rename benchmarks branch to gh-pages (#3581)

    Fixes #3580
    ocelotl committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    48fdb63 View commit details
    Browse the repository at this point in the history
  3. Update version to 1.23.0.dev/0.44b0.dev (#3582)

    * Update version to 1.23.0.dev/0.44b0.dev
    
    * Update SHA
    
    ---------
    
    Co-authored-by: Diego Hurtado <[email protected]>
    opentelemetrybot and ocelotl committed Dec 15, 2023
    Configuration menu
    Copy the full SHA
    bede4d2 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2023

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

Commits on Jan 5, 2024

  1. Fix docker proto tests (#3611)

    * Fix docker proto tests
    
    * Remove changelog
    iurisilvio committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    8e7334b View commit details
    Browse the repository at this point in the history
  2. Separate contrib jobs per instrumentation (#3507)

    * Separate contrib jobs per instrumentation
    
    Fixes #3499
    
    * Separate exporters
    
    * Refactor listings
    
    * Fix lists
    ocelotl committed Jan 5, 2024
    Configuration menu
    Copy the full SHA
    975733c View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2024

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

Commits on Jan 25, 2024

  1. Remove useless shebang lines (#3650)

    These files do not have the executable bit set in their filesystem
    permissions, so the shebang lines are not useful.
    
    Fixes #3643.
    musicinmybrain committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    8b262d3 View commit details
    Browse the repository at this point in the history
  2. Don’t pin an exact version of responses for testing (#3642)

    * Don’t pin an exact version of responses for testing
    
    In the test dependencies for opentelemetry-exporter-otlp-proto-http,
    allow `responses >= 0.22.0` rather than `responses == 0.22.0`.
    
    These tests use responses in a very straightforward way, and it’s
    unlikely that they will be affected by any future breaking changes;
    meanwhile, allowing newer versions helps with compatibility with newer
    Python interpreter versions and makes distribution packagers’ lives
    easier.
    
    * Upper-bound responses test dependency to the current minor release
    
    As requested in:
    
    open-telemetry/opentelemetry-python#3642 (comment)
    
    ---------
    
    Co-authored-by: Diego Hurtado <[email protected]>
    musicinmybrain and ocelotl committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    373ed51 View commit details
    Browse the repository at this point in the history
  3. Add test context for no exception raised (#3630)

    * Add test context for no exception raised
    
    Fixes open-telemetry#1891
    
    * Add missing test class
    ocelotl committed Jan 25, 2024
    Configuration menu
    Copy the full SHA
    4bac02e View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2024

  1. Handle HTTP 2XX responses as successful in OTLP exporters (#3623)

    * Handle HTTP 2XX responses as successful in OTLP exporters
    
    * Add test cases for 2XX HTTP responses
    
    * Add CHANGELOG entry
    
    * Fix lint
    gshiva committed Jan 26, 2024
    Configuration menu
    Copy the full SHA
    c4d17e9 View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2024

  1. Merge pull request #1 from open-telemetry/main

    bring in sync
    abhinav283 committed Jan 30, 2024
    Configuration menu
    Copy the full SHA
    efc69c8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4086762 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    34c3478 View commit details
    Browse the repository at this point in the history