Moritz Lang
Moritz Lang
While it's currently possible to have "semi-global" metadata by attaching metadata values to a `Logger` itself there's no notion of globally stating that the **current value** of something should always...
Motivation: ## Context Propagation In order to instrument distributed systems, metadata such as trace ids must be propagated across network boundaries through HTTP headers. As HTTPClient operates at one such...
Very much WIP. - Closes slashmo/gsoc-swift-tracing#46 - Closes slashmo/gsoc-swift-tracing#95
Given the following types: ```swift enum Namespace { struct A { /// - Returns: A `B`. func b() -> B { B() } } struct B { /// - Returns:...
Related to #235, it would be nice if nested types would be linked to: ```swift enum Namespace { struct A {} } /// - Returns a `Namespace.A`. func example() ->...
This is a WIP for tracing gRPC services. It's meant as a playground for experimenting with how such instrumentation will look like.
Removes a superfluous word.
Where you able to run the `DesigningDependencies` app ([episode 113](https://github.com/pointfreeco/episode-code-samples/tree/main/0113-designing-depencies-pt4)) on an actual iOS device? For me, there's the following linker issue (tested in both Xcode 12 beta 4 &...
**Motivation:** Oftentimes when using ServiceLifecycle it's also beneficial to use 'ArgumentParser' to build a CLI for a server-side app, running as part of ServiceLifecycle. **Modifications:** A new 'LifecycleCommand' library target...
When developing Swift services locally (macOS), I usually use Docker to run one or more databases. When quickly wanting to test on Linux, I use `docker-compose` to start both the...