{"id":21818585,"url":"https://github.com/billmeyer/otel-adventure","last_synced_at":"2026-02-17T01:02:29.242Z","repository":{"id":264943964,"uuid":"883383011","full_name":"billmeyer/otel-adventure","owner":"billmeyer","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-18T18:35:32.000Z","size":1795,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-07T03:33:31.083Z","etag":null,"topics":["logging","metrics","opentelemetry","python","tracing"],"latest_commit_sha":null,"homepage":"","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/billmeyer.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-04T21:42:36.000Z","updated_at":"2025-03-18T18:35:36.000Z","dependencies_parsed_at":null,"dependency_job_id":"4ca9ff0b-faed-4077-9f57-c736951e97c0","html_url":"https://github.com/billmeyer/otel-adventure","commit_stats":null,"previous_names":["billmeyer/otel-adventure"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/billmeyer/otel-adventure","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/billmeyer%2Fotel-adventure","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/billmeyer%2Fotel-adventure/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/billmeyer%2Fotel-adventure/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/billmeyer%2Fotel-adventure/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/billmeyer","download_url":"https://codeload.github.com/billmeyer/otel-adventure/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/billmeyer%2Fotel-adventure/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29528240,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T00:57:22.232Z","status":"ssl_error","status_checked_at":"2026-02-17T00:54:25.811Z","response_time":115,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["logging","metrics","opentelemetry","python","tracing"],"created_at":"2024-11-27T16:13:29.499Z","updated_at":"2026-02-17T01:02:29.214Z","avatar_url":"https://github.com/billmeyer.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Conquer the Observability Frontier: An OTel Adventure\n\nDuring this workshop, the adventurer will become self-sufficient in their quest to become familiar with the OpenTelemetry ecosystem. We'll accomplish the following:\n\n* Stand up an OpenTelemetry Collector,\n* Use Python and the OTel SDK to send metrics, traces and logs to the collector,\n* Export the telemetry from the Collector and send to their own Datadog account to explore and visualize,\n* Setup and test Probabilistic and Tail-based Trace Sampling using OTel.\n\nThe toolset provided in this workshop can be reused any number of times to facilitate demos, customer conversations and debugging/troubleshooting OTel-related topics. This is the swiss army knife you've been looking for.\n\nYour adventure awaits...\n\n## Requirements\n\n* [Python 3](https://docs.python-guide.org/starting/install3/osx/#doing-it-right)\n  * Python 3 can be downloaded either from [python.org](https://www.python.org/downloads/) or on macOS installed via [brew](https://brew.sh/): `brew install python3`\n  * verify: `python3 -V`\n* [git](https://git-scm.com/downloads/mac)\n    * For MacOS it can be installed by installing [XCode](https://developer.apple.com/xcode/) or via [brew](https://brew.sh/): `brew install git`\n        * For other OS distributions refer to [git-scm.com](https://git-scm.com/downloads)\n    * verify: `git -v`\n\n## Startup\n\n### Clone the workshop from GitHub\n\nFrom your $HOME directory:\n\n```bash\ngit clone https://github.com/billmeyer/otel-adventure\ncd otel-adventure\n```\n\n### Set Environment Variables\n\nThe following environment variables will be used through this workshop. Retrieve these from your Datadog Organization:\n\n* `DD_API_KEY` - Select an API Key from your Org\n* `DD_SITE` - Select the appropriate Datadog Site for your Org\n\nCreate a file named `.env` in the local directory and **replace the values in the angle brackets with the values from above**:\n\n```bash\nexport DD_API_KEY=\u003cmy api key\u003e\nexport DD_SITE=\u003cmy datadog site\u003e\n```\n\nExample `.env` file:\n\n```bash\nexport DD_API_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\nexport DD_SITE=datadoghq.com\n```\n\n### Confirm Values in .env\n\n`cat .env`\n\n### Start Jupyter Lab\n\nIn a terminal window, run: `./start.sh`\n\nThis will open a browser window at `http://localhost:8880/lab` with the project files.\n\nFrom here you can follow the `section##-\u003ctitle\u003e.ipynb` files for instructions. For the sake of not repeating ourselves these instructions are not copied here. `section01-requirements.ipynb` and `section02-startup.ipynb` are covered above for the sake of accessibility and getting started with jupyter.\n\n![jupyter-notebook](./jupyterlab.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbillmeyer%2Fotel-adventure","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbillmeyer%2Fotel-adventure","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbillmeyer%2Fotel-adventure/lists"}