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

feat: OTLP Log Record Exporter #12

Draft
wants to merge 19 commits into
base: main
Choose a base branch
from
Draft

Commits on Sep 12, 2024

  1. Configuration menu
    Copy the full SHA
    d44183d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ee8cda1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a64bdaa View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    112cd21 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2024

  1. test: Client cert fixes

    kaylareopelle committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    41d32fd View commit details
    Browse the repository at this point in the history
  2. chore: Readme updates

    kaylareopelle committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    7cba668 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2024

  1. Adds on_ending callback to allow processors to mutate spans before En…

    …d operation (open-telemetry#1713)
    
    * feature: adds on_ending method as an optional callback for span processors
    
    Signed-off-by: Gustavo Pantuza <[email protected]>
    
    * feature: calls every span processor that has on_ending implemented right after setting the end timestamp
    
    Signed-off-by: Gustavo Pantuza <[email protected]>
    
    * test: adds tests for the new on_ending method from span processors
    
    Signed-off-by: Gustavo Pantuza <[email protected]>
    
    * docs: Informs the on_ending callback is an experimental features from official spec
    
    Signed-off-by: Gustavo Pantuza <[email protected]>
    
    * Update sdk/lib/opentelemetry/sdk/trace/span_processor.rb
    
    Co-authored-by: Kayla Reopelle <[email protected]>
    
    * Update sdk/lib/opentelemetry/sdk/trace/span_processor.rb
    
    Co-authored-by: Kayla Reopelle <[email protected]>
    
    * refactor: switch method name from on_ending to on_finish to comply with project name strategy
    
    Signed-off-by: Gustavo Pantuza <[email protected]>
    
    ---------
    
    Signed-off-by: Gustavo Pantuza <[email protected]>
    Co-authored-by: Kayla Reopelle <[email protected]>
    pantuza and kaylareopelle authored Oct 1, 2024
    Configuration menu
    Copy the full SHA
    cdce3cc View commit details
    Browse the repository at this point in the history
  2. test: Fix intermittent test failures (open-telemetry#1730)

    Some tests in BatchLogRecordProcessor had timing issues due to
    the work method. Since we don't rely on that method for these tests,
    stub the work method to do nothing.
    
    Co-authored-by: Tanna McClure <[email protected]>
    Co-authored-by: Matthew Wear <[email protected]>
    3 people authored Oct 1, 2024
    Configuration menu
    Copy the full SHA
    3c356fc View commit details
    Browse the repository at this point in the history
  3. fix: update references to logging exporter (open-telemetry#1731)

    * fix: update references to logging exporter
    
    This exporter has been replaced by the debug exporter and will be removed soon
    
    Signed-off-by: Alex Boten <[email protected]>
    
    * update example to use v0.109.0 of the collector
    
    Signed-off-by: Alex Boten <[email protected]>
    
    ---------
    
    Signed-off-by: Alex Boten <[email protected]>
    Co-authored-by: Matthew Wear <[email protected]>
    codeboten and mwear authored Oct 1, 2024
    Configuration menu
    Copy the full SHA
    b0ecc1c View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

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

Commits on Oct 11, 2024

  1. feat: add basic metrics view (open-telemetry#1604)

    * feat: add basic metrics view support
    
    * feat: lint
    
    * feat: metric view lint
    
    * feat: metrics - use flatten for 1-d array MetricData
    
    * Update metrics_sdk/lib/opentelemetry/sdk/metrics/state/metric_stream.rb
    
    Co-authored-by: Kayla Reopelle <[email protected]>
    
    * Update metrics_sdk/lib/opentelemetry/sdk/metrics/meter_provider.rb
    
    Co-authored-by: Kayla Reopelle <[email protected]>
    
    * update doc
    
    * revision
    
    * align the test case
    
    * Update metrics_sdk/lib/opentelemetry/sdk/metrics/meter_provider.rb
    
    Co-authored-by: Kayla Reopelle <[email protected]>
    
    * Update metrics_sdk/lib/opentelemetry/sdk/metrics/meter_provider.rb
    
    Co-authored-by: Kayla Reopelle <[email protected]>
    
    * Update metrics_sdk/lib/opentelemetry/sdk/metrics/meter_provider.rb
    
    Co-authored-by: Kayla Reopelle <[email protected]>
    
    * Update metrics_sdk/lib/opentelemetry/sdk/metrics/view.rb
    
    Co-authored-by: Kayla Reopelle <[email protected]>
    
    * Update metrics_sdk/lib/opentelemetry/sdk/metrics/view/registered_view.rb
    
    Co-authored-by: Kayla Reopelle <[email protected]>
    
    * refactor view and add test
    
    * revision
    
    ---------
    
    Co-authored-by: Kayla Reopelle <[email protected]>
    Co-authored-by: Matthew Wear <[email protected]>
    3 people authored Oct 11, 2024
    Configuration menu
    Copy the full SHA
    7aa9c11 View commit details
    Browse the repository at this point in the history
  2. feat: Add log record attribute limits (open-telemetry#1696)

    * feat: Add log record attribute limits
    
    Similar to SpanLimits, add a LogRecordLimits class that handles
    configuration of attribute count and value length values.
    
    * Update logs_sdk/test/opentelemetry/sdk/logs/log_record_test.rb
    
    * Update logs_sdk/lib/opentelemetry/sdk/logs/log_record.rb
    
    * Update logs_sdk/lib/opentelemetry/sdk/logs/log_record.rb
    
    ---------
    
    Co-authored-by: Matthew Wear <[email protected]>
    kaylareopelle and mwear authored Oct 11, 2024
    Configuration menu
    Copy the full SHA
    c469bb5 View commit details
    Browse the repository at this point in the history
  3. fix: add mTLS for metrics exporter (open-telemetry#1712)

    * fix: add mTLS for metrics exporter
    
    * fix: add second pem for parameter override
    
    * update test case
    
    * Update exporter/otlp-metrics/README.md
    
    Co-authored-by: Bart de Water <[email protected]>
    
    ---------
    
    Co-authored-by: Bart de Water <[email protected]>
    Co-authored-by: Matthew Wear <[email protected]>
    3 people authored Oct 11, 2024
    Configuration menu
    Copy the full SHA
    75502b6 View commit details
    Browse the repository at this point in the history
  4. ci: Add conventional commits validation (open-telemetry#1693)

    Validate pull request titles to ensure they adhere to conventional
    commits. This matches the validation performed in contrib.
    
    Co-authored-by: Matthew Wear <[email protected]>
    kaylareopelle and mwear authored Oct 11, 2024
    Configuration menu
    Copy the full SHA
    15b39ff View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2024

  1. Configuration menu
    Copy the full SHA
    bcd4041 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'otlp-log-record-exporter' of github.com:kaylareopelle/o…

    …pentelemetry-ruby into otlp-log-record-exporter
    kaylareopelle committed Oct 15, 2024
    Configuration menu
    Copy the full SHA
    1e6545d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    18ec40f View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

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