Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ethercrow/opentelemetry-haskell
The OpenTelemetry Haskell Client https://opentelemetry.io
https://github.com/ethercrow/opentelemetry-haskell
distributed-tracing haskell observability opentelemetry serious-business
Last synced: 2 months ago
JSON representation
The OpenTelemetry Haskell Client https://opentelemetry.io
- Host: GitHub
- URL: https://github.com/ethercrow/opentelemetry-haskell
- Owner: ethercrow
- License: other
- Created: 2020-01-04T12:00:22.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-12T14:31:52.000Z (about 1 year ago)
- Last Synced: 2023-10-13T00:56:25.822Z (about 1 year ago)
- Topics: distributed-tracing, haskell, observability, opentelemetry, serious-business
- Language: Haskell
- Size: 452 KB
- Stars: 62
- Watchers: 14
- Forks: 6
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# opentelemetry-haskell
![Build](https://github.com/ethercrow/opentelemetry-haskell/workflows/Build/badge.svg)
![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/opentelemetry/badge)
![Hackage](https://img.shields.io/hackage/v/opentelemetry)
[![opentelemetry on Stackage Nightly](http://stackage.org/package/opentelemetry/badge/nightly)](http://stackage.org/nightly/package/opentelemetry)## What is it?
The client library for [OpenTelemetry](https://opentelemetry.io).
The idea is to instrument your application code and configure where the telemetry data is sent, e.g. to a file or a service of your choice. This is like always-on debugging and profiling that helps you to understand the runtime behavior of your systems and spot and fix correctness and performance problems.
### Some more exposition
Long term utopic goal: every popular library doing networked interactions or heavy computations either is instrumented directly or has a companion library like `libfoo-with-opentelemetry` or at least a documented example. This way you could observe your typical industrial application doing HTTP, RPC, SQL, GraphQL, DAOSOAPCORBAXML and other enterprise things with minimal amount of effort spent on instrumentation.
Another utopic goal: Haskell development tools like stack, cabal, HIE, hlint, ormolu and maybe even ghc itself are instrumented so that we can all be aware what exactly is slow in the toolchain and improve it.
## How do I use it?
### As a library author
Add `opentelemetry` to dependencies, `import OpenTelemetry.Eventlog` and sprinkle `withSpan` on interesting `IO` actions (or any other `m` satisfying `(MonadIO m, MonadMask m)`:
```
module MyLib (avoidSuccess) whereimport OpenTelemetry.Eventlog
avoidSuccess :: Costs -> IO ()
avoidSuccess costs = withSpan "MyLib.avoid_success" $ do
addEvent "message" "Started avoiding success"
setTag "costs" "all"
addEvent "message" "Finished avoiding success"
...
pure ()
```For a comprehensive example see the [megaexample](megaexample/README.md) subproject.
### As an application author
1. Instrument interesting parts of the code, same as in the section above.
2. Compile your executable with `-eventlog`.
3. Run it with `+RTS -l -olmy_application.eventlog`.
4. Export the resulting eventlog to some program or service capable of trace data presentation, see [Exporters] below.
5. Explore the profile data to find performance problems and unexpected things, fix those, adjust instrumentation, repeat.As an example please have a look at the [PR that adds instrumentation to stack](https://github.com/commercialhaskell/stack/pull/5260/files).
## Exporters
There are many programs and services that can accept and present trace data.
Zipkin and Jaeger are open source so you can run them locally (with or without docker).
To my knowledge Honeycomb and Lightstep are the only ones among the hosted services that have
a free tier.TODO: Document how to export trace data to Chrome or Tracy.
### Eventlog summary
This is the simplest kind of exporter that doesn't send the trace to
any external application or service but prints some statistics about a
given eventlog. This is one of the executables bundled as part of
[opentelemetry-extra](https://hackage.haskell.org/package/opentelemetry-extra
"opentelemetry-extra") package which is developed as part of this
repository.```
> eventlog-summary ghcide.eventlog
Count Tot ms Min ms Max ms Operation
----- ------ ------ ------ ---------
3 0 0 0 GetDependencies
3 0 0 0 GhcSessionDeps
3 0 0 0 PackageExports HscEnvEq 18
8 0 0 0 GhcSessionIO
8 0 0 0 GetFilesOfInterest
5 1 0 0 Request:DocumentHighlight
18 5 0 0 Request:Hover
45 10 0 0 Request:Definition
131 19 0 4 IsFileOfInterest
275 35 0 7 GetModificationTime
71 42 0 13 GetDependencyInformation
152 45 0 10 GetFileContents
3 123 0 83 GetHieFile
152 144 0 73 GhcSession
71 170 0 32 ReportImportCycles
2 176 87 88 GetModuleGraph
7 194 0 154 GetDocMap
8 298 0 182 GetParsedModule
8 486 0 229 TypeCheck
8472 566 0 15 GetFileExists
9 1395 43 367 gc
149 3877 0 709 GetModSummary
147 9496 0 739 GetLocatedImports
122 18707 0 902 GetModIfaceFromDisk
130 28106 0 6302 GetModIface
---
Max threads: 395
Total allocations:
* Capability 0: 1316MB
* Capability 1: 1814MB
* Capability 2: 1153MB
* Capability 3: 1136MB
Max live: 276MB
It's fine
```### Zipkin
```
# Launch a Zipkin instance on localhost.
# See https://zipkin.io/pages/quickstart.html for a non-docker alternative.
docker run -p 9411:9411 openzipkin/zipkin-slim# Export the eventlog.
eventlog-to-zipkin read my_application.eventlog
```Open `http://localhost:9411/zipkin` in your browser.
Here is how a trace of `stack install` looks loaded in Zipkin UI:
![zipkin_screenshot](https://i.imgur.com/1AoxuvX.png)
### Jaeger
```
# Launch a Zipkin-compatible Jaeger service locally.
# Binaries and docker images are available at https://www.jaegertracing.io/docs/latest/getting-started/.
jaeger-all-in-one --collector.zipkin.http-port=9411# Export the eventlog.
eventlog-to-zipkin read my_application.eventlog
```Open `http://localhost:16686/search` in your browser.
Here is how a trace of `stack install` looks loaded in Jaeger UI:
![jaeger_screenshot](https://i.imgur.com/vyz9zsg.png)
### Honeycomb
```
# Launch a HoneyComb relay that accepts trace data in Zipkin format.
# https://docs.honeycomb.io/working-with-your-data/tracing/send-trace-data/#opentracing.
docker run -p 9411:9411 honeycombio/honeycomb-opentracing-proxy -k -d traces# Export the eventlog.
eventlog-to-zipkin read my_application.eventlog
```Here is how a trace of `stack install` looks loaded in Honeycomb:
![honeycomb_screenshot](https://i.imgur.com/bNzfga7.png)
### Lightstep
```
export LIGHTSTEP_TOKEN=# Export the eventlog
eventlog-to-lightstep read my_application.eventlog
```Here is how a trace of `stack install` looks loaded in Lightstep:
![lightstep_screenshot](https://i.imgur.com/GVNrHR9.png)
## How does it work?
Please see the [OpenTelemetry documentation](https://github.com/open-telemetry/opentelemetry-specification/blob/master/specification/overview.md) for the general overview.
## How do I contribute?
Use it in your projects! Report what went well and especially what didn't go
well. If your usage pattern is unlike anything in the `megaexample` project,
consider adding it there.When making a pull request for some user visible change please update the
CHANGELOG.md file accordingly.