Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codeboten/opentelemetry-example
Example repo to play with OpenTelemetry and Go
https://github.com/codeboten/opentelemetry-example
Last synced: about 1 month ago
JSON representation
Example repo to play with OpenTelemetry and Go
- Host: GitHub
- URL: https://github.com/codeboten/opentelemetry-example
- Owner: codeboten
- Created: 2019-10-11T02:58:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-07-05T20:51:45.000Z (over 1 year ago)
- Last Synced: 2024-11-07T19:49:35.528Z (3 months ago)
- Language: Go
- Size: 66.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# opentelemetry-example
Just some code I'm playing around with to take opentelemetry's go library for a test drive. Most of the code here was published in this [Getting Started](https://lightstep.com/blog/getting-started-with-opentelemetry-alphas-golang/) guide, with some minor changes to accomodate for the changes in the library.
##### Dependencies
* Docker
* Go##### Testing it out
The following will spin up a jaeger all-in-one container, build the binary and send some traces to the local jaeger. Once it's run, open http://localhost:16686 in your browser to search the traces.
```bash
make all
```