Correct spelling of opentelemetry-exporter-logging (#6253)
This commit is contained in:
parent
6534dd4d51
commit
f38939134c
|
@ -54,7 +54,7 @@ Replace `OPENTELEMETRY_VERSION` with the latest stable [release](https://search.
|
|||
```xml
|
||||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-exporters-logging</artifactId>
|
||||
<artifactId>opentelemetry-exporter-logging</artifactId>
|
||||
<version>OPENTELEMETRY_VERSION</version>
|
||||
</dependency>
|
||||
```
|
||||
|
@ -83,7 +83,7 @@ implementation("io.opentelemetry:opentelemetry-sdk:OPENTELEMETRY_VERSION")
|
|||
|
||||
#### LoggingExporter
|
||||
```gradle
|
||||
implementation("io.opentelemetry:opentelemetry-exporters-logging:OPENTELEMETRY_VERSION")
|
||||
implementation("io.opentelemetry:opentelemetry-exporter-logging:OPENTELEMETRY_VERSION")
|
||||
```
|
||||
|
||||
#### Jaeger Exporter
|
||||
|
|
|
@ -32,7 +32,7 @@ For Maven add to your `pom.xml`:
|
|||
<!-- provides opentelemetry-sdk artifact -->
|
||||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-exporters-logging</artifactId>
|
||||
<artifactId>opentelemetry-exporter-logging</artifactId>
|
||||
<version>OPENTELEMETRY_VERSION</version>
|
||||
</dependency>
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ For Maven add to your `pom.xml`:
|
|||
<!-- provides opentelemetry-sdk -->
|
||||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-exporters-logging</artifactId>
|
||||
<artifactId>opentelemetry-exporter-logging</artifactId>
|
||||
<version>OPENTELEMETRY_VERSION</version>
|
||||
</dependency>
|
||||
|
||||
|
@ -47,7 +47,7 @@ For Gradle add to your dependencies:
|
|||
|
||||
```groovy
|
||||
implementation("io.opentelemetry.instrumentation:opentelemetry-spring-web-3.1:OPENTELEMETRY_VERSION")
|
||||
implementation("io.opentelemetry:opentelemetry-exporters-logging:OPENTELEMETRY_VERSION")
|
||||
implementation("io.opentelemetry:opentelemetry-exporter-logging:OPENTELEMETRY_VERSION")
|
||||
|
||||
//this artifact should already be present in your application
|
||||
implementation("org.springframework:spring-web:SPRING_VERSION")
|
||||
|
|
|
@ -27,7 +27,7 @@ For Maven add to your `pom.xml`:
|
|||
<!-- replace this default exporter with your opentelemetry exporter (ex. otlp/zipkin/jaeger/..) -->
|
||||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-exporters-logging</artifactId>
|
||||
<artifactId>opentelemetry-exporter-logging</artifactId>
|
||||
<version>OPENTELEMETRY_VERSION</version>
|
||||
</dependency>
|
||||
|
||||
|
@ -50,7 +50,7 @@ implementation("io.opentelemetry.instrumentation:opentelemetry-spring-webflux-5.
|
|||
|
||||
// opentelemetry exporter
|
||||
// replace this default exporter with your opentelemetry exporter (ex. otlp/zipkin/jaeger/..)
|
||||
implementation("io.opentelemetry:opentelemetry-exporters-logging:OPENTELEMETRY_VERSION")
|
||||
implementation("io.opentelemetry:opentelemetry-exporter-logging:OPENTELEMETRY_VERSION")
|
||||
|
||||
// required to instrument spring-webmvc
|
||||
// this artifact should already be present in your application
|
||||
|
|
|
@ -27,7 +27,7 @@ For Maven add to your `pom.xml`:
|
|||
<!-- replace this default exporter with your opentelemetry exporter (ex. otlp/zipkin/jaeger/..) -->
|
||||
<dependency>
|
||||
<groupId>io.opentelemetry</groupId>
|
||||
<artifactId>opentelemetry-exporters-logging</artifactId>
|
||||
<artifactId>opentelemetry-exporter-logging</artifactId>
|
||||
<version>OPENTELEMETRY_VERSION</version>
|
||||
</dependency>
|
||||
|
||||
|
@ -51,7 +51,7 @@ implementation("io.opentelemetry.instrumentation:opentelemetry-spring-webmvc-3.1
|
|||
|
||||
// opentelemetry exporter
|
||||
// replace this default exporter with your opentelemetry exporter (ex. otlp/zipkin/jaeger/..)
|
||||
implementation("io.opentelemetry:opentelemetry-exporters-logging:OPENTELEMETRY_VERSION")
|
||||
implementation("io.opentelemetry:opentelemetry-exporter-logging:OPENTELEMETRY_VERSION")
|
||||
|
||||
// required to instrument spring-webmvc
|
||||
// this artifact should already be present in your application
|
||||
|
|
Loading…
Reference in New Issue