Skip to content

Commit e672e3b

Browse files
Apply suggestions from code review
Co-authored-by: Jay DeLuca <[email protected]>
1 parent 061f58f commit e672e3b

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/IcebergLibraryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class IcebergLibraryTest extends AbstractIcebergTest {
1717

1818
@Override
1919
protected InstrumentationExtension testing() {
20-
return this.testing;
20+
return testing;
2121
}
2222

2323
@Override

0 commit comments

Comments
 (0)