{"id":21042761,"url":"https://github.com/aws-observability/aws-otel-go","last_synced_at":"2025-04-09T23:15:49.916Z","repository":{"id":37929761,"uuid":"295886476","full_name":"aws-observability/aws-otel-go","owner":"aws-observability","description":"AWS Distro for OpenTelemetry Go","archived":false,"fork":false,"pushed_at":"2025-04-09T22:04:34.000Z","size":10720,"stargazers_count":36,"open_issues_count":5,"forks_count":23,"subscribers_count":16,"default_branch":"main","last_synced_at":"2025-04-09T23:15:40.435Z","etag":null,"topics":["observability","opensource","opentelemetry","opentelemetry-api"],"latest_commit_sha":null,"homepage":"https://aws-otel.github.io/","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aws-observability.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-09-16T01:00:55.000Z","updated_at":"2025-04-09T22:01:52.000Z","dependencies_parsed_at":"2024-06-19T01:24:47.988Z","dependency_job_id":"f87b9b53-d747-4650-84d7-1990db716b13","html_url":"https://github.com/aws-observability/aws-otel-go","commit_stats":{"total_commits":144,"total_committers":21,"mean_commits":6.857142857142857,"dds":0.8194444444444444,"last_synced_commit":"8039e7621e96722fa7cb9d28c4795c938c7dd68b"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws-observability%2Faws-otel-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws-observability%2Faws-otel-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws-observability%2Faws-otel-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws-observability%2Faws-otel-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aws-observability","download_url":"https://codeload.github.com/aws-observability/aws-otel-go/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248125592,"owners_count":21051770,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["observability","opensource","opentelemetry","opentelemetry-api"],"created_at":"2024-11-19T14:08:55.375Z","updated_at":"2025-04-09T23:15:49.887Z","avatar_url":"https://github.com/aws-observability.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWS Distro for OpenTelemetry Go Language\n\n## Introduction\n\nThis repo hosts documentation and sample apps for the ADOT Go library which provides the AWS service integrations for traces and metrics for the [OpenTelemetry Go](https://github.com/open-telemetry/opentelemetry-go) library. The library can be configured to support trace applications with the AWS X-Ray service.\n\nPlease note all source code for the Go library is upstream on the OpenTelemetry project in the [OpenTelemetry Go](https://github.com/open-telemetry/opentelemetry-go) library repo. All features of the OpenTelemetry library are available along with its components beinbg configured to create traces which can be viewed in the AWS X-Ray console and to allow propagation of those contexts across multiple downstream AWS services.\n\nOnce traces have been generated, they can be sent to a tracing service, like AWS X-Ray, to visualize and understand exactly what happened during the traced calls. For more information about the AWS X-Ray service, see the [AWS X-Ray Developer Guide](https://docs.aws.amazon.com/xray/latest/devguide/aws-xray.html). \n\nTo send traces to AWS X-Ray, you can use the [AWS Distro for OpenTelemetry (ADOT) Collector](https://github.com/aws-observability/aws-otel-collector). OpenTelemetry Go exports traces from the application to the ADOT Collector. The ADOT Collector is configured with [AWS credentials for the CLI](https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-files.html), an AWS region, and which trace attributes to index so that it can send the traces to the AWS X-Ray console. Read more about the [AWS X-Ray Tracing Exporter for OpenTelemetry Collector](https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/awsxrayexporter).\n\nADOT is in preview for Go metrics.\n\n## Getting Started \n\nCheck out the getting started [documentation](https://aws-otel.github.io/docs/getting-started/go-sdk)\n\n## Sample Application (DEPRECATED)\n\n**WARNING:** This sample app is deprecated and is no longer maintained.  Please use the [new standardized sample apps](https://github.com/aws-observability/aws-otel-community/tree/master/sample-apps).\n\nSee the [example sample application](https://github.com/aws-observability/aws-otel-go/blob/main/sampleapp/main.go) for setup steps.\n\nThe [OpenTelemetry Go](https://github.com/open-telemetry/opentelemetry-go) SDK provides entry points for configuration through its API. This is can be used to configure the [id_generator](https://github.com/open-telemetry/opentelemetry-go/blob/970755bd087801619575b7473806356818e24e15/sdk/trace/id_generator.go) needed to support the X-Ray trace ID format. In addition, it also allows the use of a custom propagator, passed into the tracer provider, to generate and propagate the AWS X-Ray trace header. \n\n## Useful Links\n\n* For more information on OpenTelemetry, visit their [website](https://opentelemetry.io/)\n* [OpenTelemetry Go core Repo](https://github.com/open-telemetry/opentelemetry-go)\n* [OpenTelemetry Go Contrib Repo](https://github.com/open-telemetry/opentelemetry-go-contrib)\n* [AWS Distro for OpenTelemetry](https://aws-otel.github.io/)\n\n## Security issue notifications\nIf you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.\n\n## License\n\nThis project is licensed under the Apache-2.0 License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faws-observability%2Faws-otel-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faws-observability%2Faws-otel-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faws-observability%2Faws-otel-go/lists"}