You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{%- if (attribute.stability | string()) == "StabilityLevel.DEPRECATED"%}
75
78
*
@@ -94,16 +97,6 @@ public final class {{class}} {
94
97
95
98
{%- endfor%}
96
99
97
-
{%- ifclass_name == "NetTransportValues"%}
98
-
/** @deprecated This item has been removed as of 1.13.0 of the semantic conventions. */
99
-
@Deprecated
100
-
public static final String IP = "ip";
101
-
102
-
/** @deprecated This item has been removed as of 1.13.0 of the semantic conventions. */
103
-
@Deprecated
104
-
public static final String UNIX = "unix";
105
-
{%- endif%}
106
-
107
100
private {{ class_name }}() {}
108
101
}
109
102
@@ -424,6 +417,256 @@ public final class {{class}} {
424
417
private MessagingSourceKindValues() {}
425
418
}
426
419
420
+
/**
421
+
* The internet connection type currently being used by the host.
422
+
* @deprecated This item has been removed in 1.21.0 version of the semantic conventions. Use {@link SemanticAttributes#NETWORK_CONNECTION_TYPE} instead.
423
+
*/
424
+
@Deprecated
425
+
public static final AttributeKey<String> NET_HOST_CONNECTION_TYPE =
426
+
stringKey("net.host.connection.type");
427
+
428
+
/**
429
+
* This describes more details regarding the connection.type. It may be the type of cell
430
+
* technology connection, but it could be used for describing details about a wifi connection.
431
+
* @deprecated This item has been removed in 1.21.0 version of the semantic conventions. Use {@link SemanticAttributes#NETWORK_CONNECTION_SUBTYPE} instead.
432
+
*/
433
+
@Deprecated
434
+
public static final AttributeKey<String> NET_HOST_CONNECTION_SUBTYPE =
435
+
stringKey("net.host.connection.subtype");
436
+
437
+
/**
438
+
* The name of the mobile carrier.
439
+
* @deprecated This item has been removed in 1.21.0 version of the semantic conventions. Use {@link SemanticAttributes#NETWORK_CARRIER_NAME} instead.
440
+
*/
441
+
@Deprecated
442
+
public static final AttributeKey<String> NET_HOST_CARRIER_NAME =
443
+
stringKey("net.host.carrier.name");
444
+
445
+
/**
446
+
* The mobile carrier country code.
447
+
* @deprecated This item has been removed in 1.21.0 version of the semantic conventions. Use {@link SemanticAttributes#NETWORK_CARRIER_MCC} instead.
448
+
*/
449
+
@Deprecated
450
+
public static final AttributeKey<String> NET_HOST_CARRIER_MCC = stringKey("net.host.carrier.mcc");
451
+
452
+
/**
453
+
* The mobile carrier network code.
454
+
* @deprecated This item has been removed in 1.21.0 version of the semantic conventions. Use {@link SemanticAttributes#NETWORK_CARRIER_MNC} instead.
455
+
*/
456
+
@Deprecated
457
+
public static final AttributeKey<String> NET_HOST_CARRIER_MNC = stringKey("net.host.carrier.mnc");
458
+
459
+
/**
460
+
* The ISO 3166-1 alpha-2 2-character country code associated with the mobile carrier network.
461
+
* @deprecated This item has been removed in 1.21.0 version of the semantic conventions. Use {@link SemanticAttributes#NETWORK_CARRIER_ICC} instead.
462
+
*/
463
+
@Deprecated
464
+
public static final AttributeKey<String> NET_HOST_CARRIER_ICC = stringKey("net.host.carrier.icc");
465
+
466
+
/**
467
+
* The IP address of the original client behind all proxies, if known (e.g. from <a
0 commit comments