Skip to content

Commit 570aa7c

Browse files
Merge branch 'main' of github.com:ghareeb-falazi/opentelemetry-java-instrumentation
2 parents af1dd70 + e672e3b commit 570aa7c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

instrumentation/iceberg-1.8/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ implementation("io.opentelemetry.instrumentation:opentelemetry-iceberg-1.8:OPENT
2828

2929
### Usage
3030

31-
The instrumentation library allows creating instrumented `Scan` (e.g., `TableScan`) instances for collecting and reporting OpenTelemetry-based sacn metrics. For example:
31+
The instrumentation library allows creating instrumented `Scan` (e.g., `TableScan`) instances for collecting and reporting OpenTelemetry-based scan metrics. For example:
3232

3333
```java
3434
OpenTelemetry openTelemetry = // ...

instrumentation/iceberg-1.8/library/src/main/java/io/opentelemetry/instrumentation/iceberg/v1_8/IcebergMetricsReporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import org.apache.iceberg.metrics.TimerResult;
2020

2121
public class IcebergMetricsReporter implements MetricsReporter {
22-
private static final String INSTRUMENTATION_NAME = "io.opentelemetry.iceberg_1.8";
22+
private static final String INSTRUMENTATION_NAME = "io.opentelemetry.iceberg-1.8";
2323
private static final AttributeKey<Long> SCHEMA_ID = AttributeKey.longKey("iceberg.schema.id");
2424
private static final AttributeKey<String> TABLE_NAME =
2525
AttributeKey.stringKey("iceberg.table.name");

instrumentation/iceberg-1.8/library/src/test/java/io/opentelemetry/instrumentation/iceberg/v1_8/IcebergTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class IcebergTest extends AbstractIcebergTest {
1818

1919
@Override
2020
protected InstrumentationExtension testing() {
21-
return this.testing;
21+
return testing;
2222
}
2323

2424
@Override

0 commit comments

Comments
 (0)