Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
9bae8df
Contribute OTLP UDP Exporter
Mar 4, 2025
3dbbae0
Fixing formatting issues
Mar 4, 2025
57cf7b3
Adding additional check to SpanExporterBuilder to see if we are alrea…
Mar 5, 2025
c8580e2
Adding the unit test for Lambda environment variables and fixing the …
Mar 6, 2025
6fb094a
Removing the redundant dependencies
Mar 6, 2025
e5380f7
Renaming the package name and making changes to path respectively
Mar 11, 2025
a6c9a92
Updating the version of opentelemetry-bom to match with our lambda layer
Mar 13, 2025
a24e2a5
Reverting back to actual bom dependency
Mar 14, 2025
e1889b0
Removing exporter from our rott folder settings.gradle file and addin…
Mar 14, 2025
ca3e1d6
Updating the build.gradle file
Mar 14, 2025
b46392f
Removing license comment
Mar 14, 2025
cfd4533
Removing the proto dependency and testing it
Mar 18, 2025
a5057df
Changing the bom dependency
Mar 18, 2025
a1753a2
Changing certain dependencies from implementation to compilOnly and t…
Mar 18, 2025
09102ea
Testing with changing dependency of compileOnly to testImplementation
Mar 18, 2025
85d21b9
Reverting back the dependencies from testImplementation to implementa…
Mar 18, 2025
838a1e3
Testing the same dependencies with both compileOnly and testImplement…
Mar 18, 2025
507f227
Fixing redundant code in OtlpUdpSpanExporterBuilder file to make a pr…
Mar 20, 2025
47b8655
Changing the file and directory names acoording to new naming convent…
Mar 24, 2025
d997980
Testing
Mar 24, 2025
074a7d3
Merge branch 'main' into contribute-udp-exporter
Jeel-mehta Mar 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions exporters/aws-otel-otlp-udp-exporter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ plugins {
}

group = "software.amazon.opentelemetry.exporters.otlp.udp.trace"
version = "0.0.1"
version = "0.1.0"

dependencies {
implementation(platform("io.opentelemetry:opentelemetry-bom:1.44.1"))
implementation(platform("io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:2.11.0-alpha"))
implementation("io.opentelemetry:opentelemetry-api")
implementation("io.opentelemetry:opentelemetry-sdk")
implementation("io.opentelemetry:opentelemetry-exporter-otlp-common")
Expand Down
12 changes: 12 additions & 0 deletions exporters/aws-otel-otlp-udp-exporter/settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
rootProject.name = "aws-otel-otlp-udp-exporter"

dependencyResolutionManagement {
repositories {
mavenCentral()
mavenLocal()

maven {
setUrl("https://oss.sonatype.org/content/repositories/snapshots")
}
}
}
1 change: 0 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ dependencyResolutionManagement {
include(":awsagentprovider")
include(":awspropagator")
include(":dependencyManagement")
include(":exporters:aws-otel-otlp-udp-exporter")
include(":instrumentation:logback-1.0")
include(":instrumentation:log4j-2.13.2")
include(":instrumentation:jmx-metrics")
Expand Down
Loading