Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zopaUK/ktor-opentracing
Ktor features for OpenTracing instrumentation.
https://github.com/zopaUK/ktor-opentracing
distributed-tracing instrumentation ktor ktor-features observability opentracing tracer
Last synced: 3 months ago
JSON representation
Ktor features for OpenTracing instrumentation.
- Host: GitHub
- URL: https://github.com/zopaUK/ktor-opentracing
- Owner: ZopaPublic
- License: mit
- Archived: true
- Created: 2020-10-07T11:38:55.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-28T15:05:39.000Z (over 2 years ago)
- Last Synced: 2024-05-19T08:09:08.189Z (6 months ago)
- Topics: distributed-tracing, instrumentation, ktor, ktor-features, observability, opentracing, tracer
- Language: Kotlin
- Homepage:
- Size: 127 KB
- Stars: 38
- Watchers: 21
- Forks: 8
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
![Maven Central](https://img.shields.io/maven-central/v/com.zopa/ktor-opentracing?color=green)
![GitHub](https://img.shields.io/github/license/zopaUK/ktor-opentracing.svg?color=green&style=popout)
[![Unit Tests Actions Status](https://github.com/zopaUK/ktor-opentracing/workflows/Unit%20Tests/badge.svg)](https://github.com/{userName}/{repoName}/actions)# Ktor OpenTracing Instrumentation
Library of Ktor features for OpenTracing instrumentation of HTTP servers and clients.
## Usage
### Server Spans
Install the `OpenTracingServer` feature as follows in a module:```kotlin
install(OpenTracingServer)
```The feature uses the tracer registered in [GlobalTracer](https://opentracing.io/guides/java/tracers/), which uses the `ThreadContextElementScopeManager`.
This is needed to propagate the tracing context in the coroutine context of the calls.
For example, you can instantiate and register a [Jaeger](https://github.com/jaegertracing/jaeger-client-java) tracer in the module before the call to `install` as follows:
```kotlin
val tracer: Tracer = config.tracerBuilder
.withScopeManager(ThreadContextElementScopeManager())
.build()GlobalTracer.registerIfAbsent(tracer)
```
At this stage, the application will be creating a single span for the duration of the request.
If the incoming request has tracing context in its HTTP headers, then the span will be a child of the one in that context.
Otherwise, the feature will start a new trace.### Individual code blocks
To get a more detailed view of requests, we might want to instrument individual code blocks as child spans.
We could start a new child span using the tracer instance directly, however this would be too intrusive and verbose.
Instead, we can use the `span` inline function as follows.```kotlin
class UserRepository {
fun getUser(id: UUID): User = span("") {
setTag("UserId", id)
... database call ...
return user
}
}
````span` is passed an operation name and an anonymous lambda, which has the `Span` as a receiver object.
This means that you can call `setTag`, `log`, `getBaggageItem` (or any method on the `Span` interface).### Concurrency with async
Concurrent operations using `async` can break in-process context propagation which uses coroutine context, leading to spans with incorrect parents.
To solve this issue, replace the calls to `async` with `asyncTraced`. This will pass the correct tracing context to the new coroutines.```kotlin
val scrapeResults = urls.map { url ->
asyncTraced {
httpClient.get(url)
}
.awaitAll()
}
```
Underneath the hood, `asyncTraced` is adding the current tracing context to the coroutine context using a call to `tracingContext()`. You can add it yourself by calling `async(tracingContext())`. To `launch` a new coroutine with the tracing context, call `launchTraced`.### Client Spans
If your application calls another service using the Ktor HTTP client, you can install the `OpenTracingClient` feature on the client to create client spans:```kotlin
install(OpenTracingClient)
```
The outgoing HTTP headers from this client will contain the trace context of the client span.
This allows the service that is called to create child spans of this client span.We recommend using this feature in a server that has `OpenTracingServer` installed.
## Configuration
### Filter Requests
Your application might be serving static content (such as k8s probes), for which you do not to create traces.
You can filter these out as follows:
```kotlin
install(OpenTracingServer) {
filter { call -> call.request.path().startsWith("/_probes") }
}
```### Tag Spans
It is also possible to configure tags to be added to each span in a trace. For example to add the thread name and a correlation id:
```kotlin
install(OpenTracingServer) {
addTag("threadName") { Thread.currentThread().name }
addTag("correlationId") { MDC.get("correlationId") }
}
```## Installation
From [Maven Central](https://search.maven.org/artifact/com.zopa/ktor-opentracing).### Maven
Add the following dependency to your `pom.xml`:
```xmlcom.zopa
ktor-opentracing
VERSION_NUMBER```
### Gradle
Add the following to your `dependencies` in your `build.gradle`
```
implementation "com.zopa:ktor-opentracing:VERSION_NUMBER"
```## Examples
- For a simple example of ktor app instrumented with OpenTracing, see [ktor-opentracing-example](https://github.com/fstien/ktor-opentracing-example). This app uses span names passed explicitly to the `span` inline function.
- For automatic span naming using the class and method name, see [ktor-opentracing-span-naming-demo](https://github.com/fstien/ktor-opentracing-span-naming-demo).
## Related Projects
- For Ktor services using [kotlin-logging](https://github.com/MicroUtils/kotlin-logging), you can use [kotlin-logging-opentracing-decorator](https://github.com/fstien/kotlin-logging-opentracing-decorator) to enrich your spans with logs.
- If you are using [Exposed](https://github.com/JetBrains/Exposed), you can use [Exposed-OpenTracing](https://github.com/fstien/Exposed-OpenTracing) to instrument database transactions.