Table of Contents

Distributed - Tracing

About

tracing in a distributed world.

Implementation

Thread local storage

Instrumenting asynchronous application for distributed tracing is quite challenging because most tracing libraries rely on thread local storage (Storage that is local the thread). While it works reasonably well in a blocking application (one thread), this does not work for an asynchronous application.

This implementation supposes that:

Library