-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathEnduserIncubatingAttributes.java
More file actions
65 lines (56 loc) · 1.81 KB
/
EnduserIncubatingAttributes.java
File metadata and controls
65 lines (56 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.semconv.incubating;
import static io.opentelemetry.api.common.AttributeKey.stringKey;
import io.opentelemetry.api.common.AttributeKey;
// DO NOT EDIT, this is an Auto-generated file from
// buildscripts/templates/registry/incubating_java/IncubatingSemanticAttributes.java.j2
@SuppressWarnings("unused")
public final class EnduserIncubatingAttributes {
/**
* Unique identifier of an end user in the system. It maybe a username, email address, or other
* identifier.
*
* <p>Notes:
*
* <p>Unique identifier of an end user in the system.
*
* <blockquote>
*
* [!Warning] This field contains sensitive (PII) information.
*
* </blockquote>
*/
public static final AttributeKey<String> ENDUSER_ID = stringKey("enduser.id");
/**
* Pseudonymous identifier of an end user. This identifier should be a random value that is not
* directly linked or associated with the end user's actual identity.
*
* <p>Notes:
*
* <p>Pseudonymous identifier of an end user.
*
* <blockquote>
*
* [!Warning] This field contains sensitive (linkable PII) information.
*
* </blockquote>
*/
public static final AttributeKey<String> ENDUSER_PSEUDO_ID = stringKey("enduser.pseudo.id");
/**
* Deprecated, use {@code user.roles} instead.
*
* @deprecated Use {@code user.roles} instead.
*/
@Deprecated public static final AttributeKey<String> ENDUSER_ROLE = stringKey("enduser.role");
/**
* Deprecated, no replacement at this time.
*
* @deprecated Removed, no replacement at this time.
*/
@Deprecated public static final AttributeKey<String> ENDUSER_SCOPE = stringKey("enduser.scope");
// Enum definitions
private EnduserIncubatingAttributes() {}
}