Skip to content

Commit

Permalink
Bumping otel instrumentation version (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
LikeTheSalad authored Nov 18, 2024
1 parent 85e48b8 commit eb8b1f2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@

package io.opentelemetry.android.internal.services.network.data;

import io.opentelemetry.semconv.incubating.NetworkIncubatingAttributes.NetworkConnectionTypeValues;
import static io.opentelemetry.semconv.incubating.NetworkIncubatingAttributes.NetworkConnectionTypeIncubatingValues;

/**
* This class is internal and not for public use. Its APIs are unstable and can change at any time.
*/
public enum NetworkState {
NO_NETWORK_AVAILABLE(NetworkConnectionTypeValues.UNAVAILABLE),
TRANSPORT_CELLULAR(NetworkConnectionTypeValues.CELL),
TRANSPORT_WIFI(NetworkConnectionTypeValues.WIFI),
TRANSPORT_WIRED(NetworkConnectionTypeValues.WIRED),
TRANSPORT_UNKNOWN(NetworkConnectionTypeValues.UNKNOWN),
NO_NETWORK_AVAILABLE(NetworkConnectionTypeIncubatingValues.UNAVAILABLE),
TRANSPORT_CELLULAR(NetworkConnectionTypeIncubatingValues.CELL),
TRANSPORT_WIFI(NetworkConnectionTypeIncubatingValues.WIFI),
TRANSPORT_WIRED(NetworkConnectionTypeIncubatingValues.WIRED),
TRANSPORT_UNKNOWN(NetworkConnectionTypeIncubatingValues.UNKNOWN),
// this one doesn't seem to have an otel value at this point.
TRANSPORT_VPN("vpn");

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
opentelemetry-instrumentation-alpha = "2.9.0-alpha"
opentelemetry-instrumentation-alpha = "2.10.0-alpha"
#opentelemetry-instrumentation = "2.9.0" // alpha bom includes non-alpha bom
opentelemetry-semconv = "1.25.0-alpha"
opentelemetry-contrib = "1.40.0-alpha"
Expand Down

0 comments on commit eb8b1f2

Please sign in to comment.