Skip to content

Commit 3e8e44d

Browse files
2 parents 4e145ba + 9cc4756 commit 3e8e44d

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

traceo-sdk-opentelemetry/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ dependencies {
2525
}
2626
```
2727

28-
**TIP:** Remember to init [`TraceoClient`]() before using this package.
28+
**TIP:** Remember to init [`TraceoClient`](https://github.com/traceo-dev/traceo-java/blob/master/traceo-sdk/README.md) before using this package.
2929

3030
### Metrics
3131
To use the exporter for metrics you need to use `TraceoMetricsExporter` like below:
@@ -66,7 +66,7 @@ import io.opentelemetry.sdk.OpenTelemetrySdk;
6666
SdkTracerProvider tracerProvider = SdkTracerProvider.builder()
6767
.addSpanProcessor(
6868
BatchSpanProcessor
69-
.builder(new TraceoSpansExporter())
69+
.builder(new TraceoSpansExporter()) // use traceo exporter here
7070
.build()
7171
)
7272
.build();

traceo-sdk/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Table of available options in `TraceoClientBuilder`:
4949

5050
Incidents are all the exceptions and other problems that occur in your application. After each exception occurs, the Traceo SDK catches the exception and sends it to the Traceo Platform. To catch an exception and send it to the Traceo platform, use the static `catchException()` method from the `TraceoClient` class.
5151

52-
```
52+
```java
5353
try {
5454
// your code
5555
} catch (ArrayIndexOutOfBoundsException exception) {
@@ -86,7 +86,7 @@ Available logger methods:
8686

8787
**TIP:** Remember to init `TraceoClient` before using `TraceoLogger`.
8888
### More
89-
This package is also required to integration with `OpenTelemetry for Java`. Full implementation guide can be found [here]().
89+
This package is also required to integration with `OpenTelemetry for Java`. Full implementation guide can be found [here](https://github.com/traceo-dev/traceo-java/blob/master/traceo-sdk-opentelemetry/README.md).
9090

9191
## Support
92-
Feel free to create Issues, Pull Request and Discussion. If you want to contact with the developer working on this package click [here](mailto:piotr.szewczyk.software@gmail.com).
92+
Feel free to create Issues, Pull Request and Discussion. If you want to contact with the developer working on this package click [here](mailto:piotr.szewczyk.software@gmail.com).

0 commit comments

Comments
 (0)