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

[exporter/awsxray] Add aws sdk http error events to x-ray subsegment and strip prefix AWS.SDK. from aws remote service name #27232

Merged
merged 10 commits into from
Nov 3, 2023

Commits on Sep 27, 2023

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

Commits on Oct 9, 2023

  1. Pull Request review changes for #27232

    - Define "aws-api" as a const
    - Rename some variables in cause.go to make the intended behavior a little more clear
    - PR: #27232
    jknollmeyer committed Oct 9, 2023
    Configuration menu
    Copy the full SHA
    e846069 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2023

  1. Change the time used for X-Ray exception events to unix epoch time

    - timestamp.String() generates a string like "2023-10-10 01:58:24.675761 +0000 UTC", which is not a standardized format
    - Under the hood, it is just calling AsTime().String() https://github.com/open-telemetry/opentelemetry-collector/blob/pdata/v0.66.0/pdata/pcommon/timestamp.go#L36
    - Time.String() has the warning "The returned string is meant for debugging; for a stable serialized representation, use t.MarshalText, t.MarshalBinary, or t.Format with an explicit format string." https://pkg.go.dev/time#Time.String
    jknollmeyer committed Oct 10, 2023
    Configuration menu
    Copy the full SHA
    1c22163 View commit details
    Browse the repository at this point in the history

Commits on Oct 11, 2023

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

Commits on Oct 12, 2023

  1. Change the time used for X-Ray exception events to microsecond precision

    - This matches X-Ray guidance for timestamps - "Microsecond reoslution is recommended when available" https://docs.aws.amazon.com/xray/latest/devguide/xray-api-segmentdocuments.html#api-segmentdocuments-fields
    jknollmeyer committed Oct 12, 2023
    Configuration menu
    Copy the full SHA
    bfbafbe View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2023

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

Commits on Oct 18, 2023

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

Commits on Oct 19, 2023

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

Commits on Nov 1, 2023

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

Commits on Nov 2, 2023

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