Skip to content

Commit

Permalink
Merge pull request #48 from middleware-labs/archish/rum-41-set-type-a…
Browse files Browse the repository at this point in the history
…s-rum-in-type-clickhouse-column

Using mw.rum as type
  • Loading branch information
Archish27 authored Oct 3, 2024
2 parents 7fcd486 + 3466ed1 commit 51feaa4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ android {
}

dependencies {
implementation 'io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.32.0-alpha-SNAPSHOT'
implementation 'io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom-alpha:1.32.1-alpha'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.10.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
Expand All @@ -60,7 +60,7 @@ dependencies {

implementation "io.opentelemetry.instrumentation:opentelemetry-instrumentation-api"
implementation "io.opentelemetry.instrumentation:opentelemetry-instrumentation-api-semconv"
implementation 'io.opentelemetry.instrumentation:opentelemetry-okhttp-3.0:1.32.0-alpha-SNAPSHOT'
implementation 'io.opentelemetry.instrumentation:opentelemetry-okhttp-3.0:1.32.1-alpha'
implementation("io.opentelemetry:opentelemetry-api-events")
implementation("io.opentelemetry:opentelemetry-sdk-logs")
implementation("io.opentelemetry:opentelemetry-sdk")
Expand Down
2 changes: 1 addition & 1 deletion sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

mavenPublishing {
coordinates("io.github.middleware-labs", "android-sdk", "2.0.6")
coordinates("io.github.middleware-labs", "android-sdk", "2.0.7")

pom {
name = "Middleware Android RUM SDK"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ private Resource createMiddlewareResource() {
}
resourceBuilder.put(SERVICE_NAME.getKey(), builder.serviceName);
resourceBuilder.put("project.name", builder.projectName);
resourceBuilder.put("mw_agent", true);
resourceBuilder.put("mw.rum", true);
resourceBuilder.put("mw.account_key", builder.rumAccessToken);
resourceBuilder.put("browser.trace", "true");
resourceBuilder.put(BROWSER_MOBILE.getKey(), "true");
Expand Down

0 comments on commit 51feaa4

Please sign in to comment.