Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: open-telemetry/opentelemetry-collector
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 30b28de
Choose a base ref
...
head repository: open-telemetry/opentelemetry-collector
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e8353e1
Choose a head ref
  • 18 commits
  • 33 files changed
  • 7 contributors

Commits on Jul 11, 2022

  1. Empty featuregate values will happen to be a panic (#5663)

    * allow empty featuregate values
    
    * add changelog for #5663
    matianjun1 authored Jul 11, 2022
    Configuration menu
    Copy the full SHA
    e319cbe View commit details
    Browse the repository at this point in the history
  2. [chore] update dependencies (#5672)

    As per dependabot recommendations.
    Alex Boten authored Jul 11, 2022
    Configuration menu
    Copy the full SHA
    6133c82 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2022

  1. failed on unregistered featuregate (#5660)

    * failed on unregistered featuregate
    * add test for existing/noexisting gates
    * change command to use Apply for now
    
    Signed-off-by: Ziqi Zhao <[email protected]>
    fatsheep9146 authored Jul 12, 2022
    Configuration menu
    Copy the full SHA
    1b32ae0 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2022

  1. Change metadata lookup to be case insensitive (#5646)

    * Change metadata lookup to be case insensitive
    
    Before this change, users would make references to headers such as "authorization" and "X-CloudFront-Viewer-Latitude", which would potentially fail, as they would be stored in the context as "X-Cloudfront-Viewer-Latitude" or "Authorization".
    
    This PR changes this behavior, to attempt a case insensitive lookup to the backing map in case the key wasn't found under the requested casing. Under the assumption that the lookup key specified by users won't change, on a subsequent lookup, we proactively copy the value to the looked up key, to make the next lookup faster.
    
    Fixes #5610
    Fixes open-telemetry/opentelemetry-collector-contrib#8994
    
    Signed-off-by: Juraci Paixão Kröhling <[email protected]>
    
    * Add changelog entry
    
    Signed-off-by: Juraci Paixão Kröhling <[email protected]>
    jpkrohling authored Jul 13, 2022
    Configuration menu
    Copy the full SHA
    6417a3a View commit details
    Browse the repository at this point in the history
  2. add LogMessage and move LogStabilityLevel (#5633)

    * add LogMessage and move LogStabilityLevel
    
    This change will make the func available for extensions as well.
    
    * add docstring
    
    * fix typo
    
    * fix impi
    
    * apply review feedback
    Alex Boten authored Jul 13, 2022
    Configuration menu
    Copy the full SHA
    6266e5b View commit details
    Browse the repository at this point in the history
  3. [release process] add helm charts to release issue template (#5650)

    * Update release.md
    
    * add headers for responsible parties
    
    Co-authored-by: Dmitrii Anoshin <[email protected]>
    TylerHelmuth and dmitryax authored Jul 13, 2022
    Configuration menu
    Copy the full SHA
    d48e930 View commit details
    Browse the repository at this point in the history
  4. [exporter/logging] Decouple loglevel field from level of logged mes…

    …sages (#5678)
    
    * [exporter/logging] Decouple `loglevel` field from level of logged messages
    
    * Update CHANGELOG.md
    
    Co-authored-by: Alex Boten <[email protected]>
    mx-psi and Alex Boten authored Jul 13, 2022
    Configuration menu
    Copy the full SHA
    a831d51 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2022

  1. [pdata] export NewSliceFromRaw (#5679)

    * export NewSliceFromRaw
    
    * Add changelog entry
    
    * Update pdata/pcommon/alias.go
    
    Co-authored-by: Dmitrii Anoshin <[email protected]>
    Co-authored-by: Alex Boten <[email protected]>
    3 people authored Jul 15, 2022
    Configuration menu
    Copy the full SHA
    a7c047b View commit details
    Browse the repository at this point in the history
  2. [exporter/logging] Create logging exporter logger from service logger (

    …#5677)
    
    Build the logger on the logging exporter's logger from the one on `TelemetrySettings`, so that the logger honors the configuration settings on `telemetry::logs` and the configuration options on `CollectorSettings.LoggingOptions`.
    
    Depends on #5678
    
    **Link to tracking Issue:** Fixes #5652
    
    **Documentation:** Documented the feature gate.
    mx-psi authored Jul 15, 2022
    Configuration menu
    Copy the full SHA
    5f506a9 View commit details
    Browse the repository at this point in the history
  3. add prepare-release make target (#5503)

    * add prepare-release make target
    
    make prepare-release does the following:
    - checks the local repository is clean
    - search/replace PREVIOUS_VERSION with RELEASE_CANDIDATE
    - runs make genotelcorecol
    - creates a commit on a new branch
    - runs make multimod-prerelease
    - commits the changes to the branch
    - creates a PR
    
    * add check for gh
    Alex Boten authored Jul 15, 2022
    Configuration menu
    Copy the full SHA
    7c125fb View commit details
    Browse the repository at this point in the history
  4. skip changelog for [chore] prs (#5676)

    * skip changelog for [chore] prs
    
    Add a check in the changelog job to skip the job if the title of the PR contains [chore]. This makes it possible for a user who's change doesn't require a changelog entry and doesn't have write access to the repository to skip this check.
    
    For now I've left the check for the "Skip Changelog" label as well, in the future, this should be removed and the label can be removed altogether.
    
    * Update .github/workflows/changelog.yml
    
    Co-authored-by: Tyler Helmuth <[email protected]>
    Alex Boten and TylerHelmuth authored Jul 15, 2022
    Configuration menu
    Copy the full SHA
    0509360 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2022

  1. add metrics otelcol_exporter_queue_capacity

    Signed-off-by: Ziqi Zhao <[email protected]>
    fatsheep9146 committed Jul 17, 2022
    Configuration menu
    Copy the full SHA
    9f60666 View commit details
    Browse the repository at this point in the history
  2. add unit test for new metric

    Signed-off-by: Ziqi Zhao <[email protected]>
    fatsheep9146 committed Jul 17, 2022
    Configuration menu
    Copy the full SHA
    06254ad View commit details
    Browse the repository at this point in the history
  3. add entry to changelog

    Signed-off-by: Ziqi Zhao <[email protected]>
    fatsheep9146 committed Jul 17, 2022
    Configuration menu
    Copy the full SHA
    2519551 View commit details
    Browse the repository at this point in the history
  4. fix unittest

    Signed-off-by: Ziqi Zhao <[email protected]>
    fatsheep9146 committed Jul 17, 2022
    Configuration menu
    Copy the full SHA
    d49b152 View commit details
    Browse the repository at this point in the history
  5. fix for reviews

    Signed-off-by: Ziqi Zhao <[email protected]>
    fatsheep9146 committed Jul 17, 2022
    Configuration menu
    Copy the full SHA
    c6da553 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    73fe155 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2022

  1. update monitoring doc

    Signed-off-by: Ziqi Zhao <[email protected]>
    fatsheep9146 committed Jul 18, 2022
    Configuration menu
    Copy the full SHA
    e8353e1 View commit details
    Browse the repository at this point in the history
Loading