Correct spelling of opentelemetry-exporter-logging (#6253)

This commit is contained in:
jason plumb 2022-07-01 11:09:04 -07:00 committed by GitHub
parent 6534dd4d51
commit f38939134c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 9 additions and 9 deletions

View File

@ -54,7 +54,7 @@ Replace `OPENTELEMETRY_VERSION` with the latest stable [release](https://search.
```xml ```xml
<dependency> <dependency>
<groupId>io.opentelemetry</groupId> <groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-exporters-logging</artifactId> <artifactId>opentelemetry-exporter-logging</artifactId>
<version>OPENTELEMETRY_VERSION</version> <version>OPENTELEMETRY_VERSION</version>
</dependency> </dependency>
``` ```
@ -83,7 +83,7 @@ implementation("io.opentelemetry:opentelemetry-sdk:OPENTELEMETRY_VERSION")
#### LoggingExporter #### LoggingExporter
```gradle ```gradle
implementation("io.opentelemetry:opentelemetry-exporters-logging:OPENTELEMETRY_VERSION") implementation("io.opentelemetry:opentelemetry-exporter-logging:OPENTELEMETRY_VERSION")
``` ```
#### Jaeger Exporter #### Jaeger Exporter

View File

@ -32,7 +32,7 @@ For Maven add to your `pom.xml`:
<!-- provides opentelemetry-sdk artifact --> <!-- provides opentelemetry-sdk artifact -->
<dependency> <dependency>
<groupId>io.opentelemetry</groupId> <groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-exporters-logging</artifactId> <artifactId>opentelemetry-exporter-logging</artifactId>
<version>OPENTELEMETRY_VERSION</version> <version>OPENTELEMETRY_VERSION</version>
</dependency> </dependency>

View File

@ -28,7 +28,7 @@ For Maven add to your `pom.xml`:
<!-- provides opentelemetry-sdk --> <!-- provides opentelemetry-sdk -->
<dependency> <dependency>
<groupId>io.opentelemetry</groupId> <groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-exporters-logging</artifactId> <artifactId>opentelemetry-exporter-logging</artifactId>
<version>OPENTELEMETRY_VERSION</version> <version>OPENTELEMETRY_VERSION</version>
</dependency> </dependency>
@ -47,7 +47,7 @@ For Gradle add to your dependencies:
```groovy ```groovy
implementation("io.opentelemetry.instrumentation:opentelemetry-spring-web-3.1:OPENTELEMETRY_VERSION") 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 //this artifact should already be present in your application
implementation("org.springframework:spring-web:SPRING_VERSION") implementation("org.springframework:spring-web:SPRING_VERSION")

View File

@ -27,7 +27,7 @@ For Maven add to your `pom.xml`:
<!-- replace this default exporter with your opentelemetry exporter (ex. otlp/zipkin/jaeger/..) --> <!-- replace this default exporter with your opentelemetry exporter (ex. otlp/zipkin/jaeger/..) -->
<dependency> <dependency>
<groupId>io.opentelemetry</groupId> <groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-exporters-logging</artifactId> <artifactId>opentelemetry-exporter-logging</artifactId>
<version>OPENTELEMETRY_VERSION</version> <version>OPENTELEMETRY_VERSION</version>
</dependency> </dependency>
@ -50,7 +50,7 @@ implementation("io.opentelemetry.instrumentation:opentelemetry-spring-webflux-5.
// opentelemetry exporter // opentelemetry exporter
// replace this default exporter with your opentelemetry exporter (ex. otlp/zipkin/jaeger/..) // 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 // required to instrument spring-webmvc
// this artifact should already be present in your application // this artifact should already be present in your application

View File

@ -27,7 +27,7 @@ For Maven add to your `pom.xml`:
<!-- replace this default exporter with your opentelemetry exporter (ex. otlp/zipkin/jaeger/..) --> <!-- replace this default exporter with your opentelemetry exporter (ex. otlp/zipkin/jaeger/..) -->
<dependency> <dependency>
<groupId>io.opentelemetry</groupId> <groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-exporters-logging</artifactId> <artifactId>opentelemetry-exporter-logging</artifactId>
<version>OPENTELEMETRY_VERSION</version> <version>OPENTELEMETRY_VERSION</version>
</dependency> </dependency>
@ -51,7 +51,7 @@ implementation("io.opentelemetry.instrumentation:opentelemetry-spring-webmvc-3.1
// opentelemetry exporter // opentelemetry exporter
// replace this default exporter with your opentelemetry exporter (ex. otlp/zipkin/jaeger/..) // 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 // required to instrument spring-webmvc
// this artifact should already be present in your application // this artifact should already be present in your application