Popularity
7.7
Growing
Activity
0.0
Stable
23
4
11

Monthly Downloads: 64
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Web    
Latest version: v0.0.4.1

tracing alternatives and similar packages

Based on the "Web" category.
Alternatively, view tracing alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of tracing or a related project?

Add another 'Web' Package

README

Tracing Stackage LTS Stackage Nightly Hackage Build Status

An OpenTracing-compliant, simple, and extensible distributed tracing library.

  • Simple: add a single MonadTrace constraint to start tracing, without making your code harder to test!
  • Extensible: use the built-in Zipkin backend or hook in your own trace publication logic.
import Monitor.Tracing

-- A traced action with its root span and two children.
run :: MonadTrace m => m ()
run = rootSpan alwaysSampled "parent" $ do
  childSpan "child-a" runA
  childSpan "child-b" runB

To learn more, hop on over to Monitor.Tracing, or take a look at examples in the examples/ folder.