Thanks to visit codestin.com
Credit goes to github.com

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-cpp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.16.0
Choose a base ref
...
head repository: open-telemetry/opentelemetry-cpp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.16.1
Choose a head ref
  • 13 commits
  • 189 files changed
  • 11 contributors

Commits on Jun 27, 2024

  1. Configuration menu
    Copy the full SHA
    7701239 View commit details
    Browse the repository at this point in the history
  2. [SDK] Added reserve for spans array in BatchSpanProcessor. (#2724)

    * Added reserve for spans array in BatchSpanProcessor.
    
        Added reserve for spans array in BatchSpanProcessor.
        
        Helps to allocate the amount of memory needed for number of records so that dynamic memory allocation doesn't happen in the consume method.
        
        .push_back() reallocates memory each time the method is called.
        
        Using .reserve() would avoid memory reallocation as already the memory is allocated.
        
        References:
        https://cplusplus.com/reference/vector/vector/push_back/
        https://cplusplus.com/reference/vector/vector/reserve/
    
    * Added reserve for spans array in BatchLogProcessor.
    
    Added reserve for spans array in BatchLogProcessor. Same as previously done for BatchSpanProcessor
    
    * Update batch_log_record_processor.cc
    
    * Update batch_span_processor.cc
    
    * Update sdk/src/logs/batch_log_record_processor.cc
    msiddhu authored Jun 27, 2024
    Configuration menu
    Copy the full SHA
    f0e0ef0 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2024

  1. [DOC] Update "Using triplets" section in building-with-vcpkg document…

    …ation. (#2726)
    
    * Update triplet links in building-with-vcpkg documentation.
    
    * Update docs/building-with-vcpkg.md
    
    Co-authored-by: Tom Tan <[email protected]>
    
    ---------
    
    Co-authored-by: Marc Alff <[email protected]>
    Co-authored-by: Tom Tan <[email protected]>
    3 people authored Jun 30, 2024
    Configuration menu
    Copy the full SHA
    ead2d1b View commit details
    Browse the repository at this point in the history
  2. 1 Configuration menu
    Copy the full SHA
    5e21b8a View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2024

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

Commits on Jul 3, 2024

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

Commits on Jul 5, 2024

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

Commits on Jul 6, 2024

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

Commits on Jul 11, 2024

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

Commits on Jul 12, 2024

  1. Configuration menu
    Copy the full SHA
    63fa4fd View commit details
    Browse the repository at this point in the history
  2. [CI] Enable bzlmod (#2995)

    keith authored Jul 12, 2024
    1 Configuration menu
    Copy the full SHA
    323a279 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2024

  1. [Metrics SDK] Fix hash calculation for nostd::string (#2999)

    * add test to validate cardinaity limit
    
    * format
    
    * warning
    
    * Format
    
    * maint mode CI
    
    * modify test to reproduce the issue
    
    * Format
    
    * remove vscode settings
    
    * remove redundant test
    
    * remove unused code
    
    * fix to calculate hash on string_view
    
    * remove iostream
    
    * template specialization for const char *, and varous string type tests
    
    * unused variable warning
    
    * more warnings
    
    * format
    
    * fix use-after-stack-scope
    
    * format
    
    * another try
    
    * format
    
    ---------
    
    Co-authored-by: Tom Tan <[email protected]>
    lalitb and ThomsonTan authored Jul 17, 2024
    2 Configuration menu
    Copy the full SHA
    d8ae09e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    baecbb9 View commit details
    Browse the repository at this point in the history
Loading