DB_ELASTICSEARCH_PATH_PARTS
- = stringKeyTemplate("db.elasticsearch.path_parts");
-
- // Enum definitions
- public static final class ErrorTypeValues {
- /**
- * A fallback error value to be used when the instrumentation doesn't define a custom value.
- */
- public static final String OTHER = "_OTHER";
-
- private ErrorTypeValues() {
- }
- }
-
- public static final class FaasInvokedProviderValues {
- /** Alibaba Cloud. */
- public static final String ALIBABA_CLOUD = "alibaba_cloud";
-
- /** Amazon Web Services. */
- public static final String AWS = "aws";
-
- /** Microsoft Azure. */
- public static final String AZURE = "azure";
-
- /** Google Cloud Platform. */
- public static final String GCP = "gcp";
-
- /** Tencent Cloud. */
- public static final String TENCENT_CLOUD = "tencent_cloud";
-
- private FaasInvokedProviderValues() {
- }
- }
-
- public static final class FaasTriggerValues {
- /** A response to some data source operation such as a database or filesystem read/write. */
- public static final String DATASOURCE = "datasource";
-
- /** To provide an answer to an inbound HTTP request. */
- public static final String HTTP = "http";
-
- /** A function is set to be executed when messages are sent to a messaging system. */
- public static final String PUBSUB = "pubsub";
-
- /** A function is scheduled to be executed regularly. */
- public static final String TIMER = "timer";
-
- /** If none of the others apply. */
- public static final String OTHER = "other";
-
- private FaasTriggerValues() {
- }
- }
-
- public static final class EventDomainValues {
- /** Events from browser apps. */
- public static final String BROWSER = "browser";
-
- /** Events from mobile apps. */
- public static final String DEVICE = "device";
-
- /** Events from Kubernetes. */
- public static final String K8S = "k8s";
-
- private EventDomainValues() {
- }
- }
-
- public static final class LogIostreamValues {
- /** Logs from stdout stream. */
- public static final String STDOUT = "stdout";
-
- /** Events from stderr stream. */
- public static final String STDERR = "stderr";
-
- private LogIostreamValues() {
- }
- }
-
- public static final class IosStateValues {
- /**
- * The app has become `active`. Associated with UIKit notification `applicationDidBecomeActive`.
- */
- public static final String ACTIVE = "active";
-
- /**
- * The app is now `inactive`. Associated with UIKit notification `applicationWillResignActive`.
- */
- public static final String INACTIVE = "inactive";
-
- /**
- * The app is now in the background. This value is associated with UIKit notification
- * `applicationDidEnterBackground`.
- */
- public static final String BACKGROUND = "background";
-
- /**
- * The app is now in the foreground. This value is associated with UIKit notification
- * `applicationWillEnterForeground`.
- */
- public static final String FOREGROUND = "foreground";
-
- /**
- * The app is about to terminate. Associated with UIKit notification `applicationWillTerminate`.
- */
- public static final String TERMINATE = "terminate";
-
- private IosStateValues() {
- }
- }
-
- public static final class AndroidStateValues {
- /**
- * Any time before Activity.onResume() or, if the app has no Activity, Context.startService()
- * has been called in the app for the first time.
- */
- public static final String CREATED = "created";
-
- /**
- * Any time after Activity.onPause() or, if the app has no Activity, Context.stopService() has
- * been called when the app was in the foreground state.
- */
- public static final String BACKGROUND = "background";
-
- /**
- * Any time after Activity.onResume() or, if the app has no Activity, Context.startService() has
- * been called when the app was in either the created or background states.
- */
- public static final String FOREGROUND = "foreground";
-
- private AndroidStateValues() {
- }
- }
-
- public static final class StateValues {
- /** idle. */
- public static final String IDLE = "idle";
-
- /** used. */
- public static final String USED = "used";
-
- private StateValues() {
- }
- }
-
- public static final class JvmMemoryTypeValues {
- /** Heap memory. */
- public static final String HEAP = "heap";
-
- /** Non-heap memory. */
- public static final String NON_HEAP = "non_heap";
-
- private JvmMemoryTypeValues() {
- }
- }
-
- public static final class JvmThreadStateValues {
- /** A thread that has not yet started is in this state. */
- public static final String NEW = "new";
-
- /** A thread executing in the Java virtual machine is in this state. */
- public static final String RUNNABLE = "runnable";
-
- /** A thread that is blocked waiting for a monitor lock is in this state. */
- public static final String BLOCKED = "blocked";
-
- /**
- * A thread that is waiting indefinitely for another thread to perform a particular action is in
- * this state.
- */
- public static final String WAITING = "waiting";
-
- /**
- * A thread that is waiting for another thread to perform an action for up to a specified
- * waiting time is in this state.
- */
- public static final String TIMED_WAITING = "timed_waiting";
-
- /** A thread that has exited is in this state. */
- public static final String TERMINATED = "terminated";
-
- private JvmThreadStateValues() {
- }
- }
-
- public static final class SystemCpuStateValues {
- /** user. */
- public static final String USER = "user";
-
- /** system. */
- public static final String SYSTEM = "system";
-
- /** nice. */
- public static final String NICE = "nice";
-
- /** idle. */
- public static final String IDLE = "idle";
-
- /** iowait. */
- public static final String IOWAIT = "iowait";
-
- /** interrupt. */
- public static final String INTERRUPT = "interrupt";
-
- /** steal. */
- public static final String STEAL = "steal";
-
- private SystemCpuStateValues() {
- }
- }
-
- public static final class SystemMemoryStateValues {
- /** used. */
- public static final String USED = "used";
-
- /** free. */
- public static final String FREE = "free";
-
- /** shared. */
- public static final String SHARED = "shared";
-
- /** buffers. */
- public static final String BUFFERS = "buffers";
-
- /** cached. */
- public static final String CACHED = "cached";
-
- /**
- * total.
- *
- * @deprecated this value has been removed as of 1.23.1 of the semantic conventions.
- */
- @Deprecated
- public static final String TOTAL = "total";
-
- private SystemMemoryStateValues() {
- }
- }
-
- public static final class SystemPagingDirectionValues {
- /** in. */
- public static final String IN = "in";
-
- /** out. */
- public static final String OUT = "out";
-
- private SystemPagingDirectionValues() {
- }
- }
-
- public static final class SystemPagingStateValues {
- /** used. */
- public static final String USED = "used";
-
- /** free. */
- public static final String FREE = "free";
-
- private SystemPagingStateValues() {
- }
- }
-
- public static final class SystemPagingTypeValues {
- /** major. */
- public static final String MAJOR = "major";
-
- /** minor. */
- public static final String MINOR = "minor";
-
- private SystemPagingTypeValues() {
- }
- }
-
- public static final class SystemDiskDirectionValues {
- /** read. */
- public static final String READ = "read";
-
- /** write. */
- public static final String WRITE = "write";
-
- private SystemDiskDirectionValues() {
- }
- }
-
- public static final class SystemFilesystemStateValues {
- /** used. */
- public static final String USED = "used";
-
- /** free. */
- public static final String FREE = "free";
-
- /** reserved. */
- public static final String RESERVED = "reserved";
-
- private SystemFilesystemStateValues() {
- }
- }
-
- public static final class SystemFilesystemTypeValues {
- /** fat32. */
- public static final String FAT32 = "fat32";
-
- /** exfat. */
- public static final String EXFAT = "exfat";
-
- /** ntfs. */
- public static final String NTFS = "ntfs";
-
- /** refs. */
- public static final String REFS = "refs";
-
- /** hfsplus. */
- public static final String HFSPLUS = "hfsplus";
-
- /** ext4. */
- public static final String EXT4 = "ext4";
-
- private SystemFilesystemTypeValues() {
- }
- }
-
- public static final class SystemNetworkDirectionValues {
- /** transmit. */
- public static final String TRANSMIT = "transmit";
-
- /** receive. */
- public static final String RECEIVE = "receive";
-
- private SystemNetworkDirectionValues() {
- }
- }
-
- public static final class SystemNetworkStateValues {
- /** close. */
- public static final String CLOSE = "close";
-
- /** close_wait. */
- public static final String CLOSE_WAIT = "close_wait";
-
- /** closing. */
- public static final String CLOSING = "closing";
-
- /** delete. */
- public static final String DELETE = "delete";
-
- /** established. */
- public static final String ESTABLISHED = "established";
-
- /** fin_wait_1. */
- public static final String FIN_WAIT_1 = "fin_wait_1";
-
- /** fin_wait_2. */
- public static final String FIN_WAIT_2 = "fin_wait_2";
-
- /** last_ack. */
- public static final String LAST_ACK = "last_ack";
-
- /** listen. */
- public static final String LISTEN = "listen";
-
- /** syn_recv. */
- public static final String SYN_RECV = "syn_recv";
-
- /** syn_sent. */
- public static final String SYN_SENT = "syn_sent";
-
- /** time_wait. */
- public static final String TIME_WAIT = "time_wait";
-
- private SystemNetworkStateValues() {
- }
- }
-
- public static final class SystemProcessesStatusValues {
- /** running. */
- public static final String RUNNING = "running";
-
- /** sleeping. */
- public static final String SLEEPING = "sleeping";
-
- /** stopped. */
- public static final String STOPPED = "stopped";
-
- /** defunct. */
- public static final String DEFUNCT = "defunct";
-
- private SystemProcessesStatusValues() {
- }
- }
-
- public static final class NetSockFamilyValues {
- /** IPv4 address. */
- public static final String INET = "inet";
-
- /** IPv6 address. */
- public static final String INET6 = "inet6";
-
- /** Unix domain socket path. */
- public static final String UNIX = "unix";
-
- private NetSockFamilyValues() {
- }
- }
-
- public static final class NetTransportValues {
- /** ip_tcp. */
- public static final String IP_TCP = "ip_tcp";
-
- /** ip_udp. */
- public static final String IP_UDP = "ip_udp";
-
- /** Named or anonymous pipe. */
- public static final String PIPE = "pipe";
-
- /** In-process communication. */
- public static final String INPROC = "inproc";
-
- /** Something else (non IP-based). */
- public static final String OTHER = "other";
-
- private NetTransportValues() {
- }
- }
-
- public static final class HttpRequestMethodValues {
- /** CONNECT method. */
- public static final String CONNECT = "CONNECT";
-
- /** DELETE method. */
- public static final String DELETE = "DELETE";
-
- /** GET method. */
- public static final String GET = "GET";
-
- /** HEAD method. */
- public static final String HEAD = "HEAD";
-
- /** OPTIONS method. */
- public static final String OPTIONS = "OPTIONS";
-
- /** PATCH method. */
- public static final String PATCH = "PATCH";
-
- /** POST method. */
- public static final String POST = "POST";
-
- /** PUT method. */
- public static final String PUT = "PUT";
-
- /** TRACE method. */
- public static final String TRACE = "TRACE";
-
- /** Any HTTP method that the instrumentation has no prior knowledge of. */
- public static final String OTHER = "_OTHER";
-
- private HttpRequestMethodValues() {
- }
- }
-
- public static final class MessagingOperationValues {
- /**
- * One or more messages are provided for publishing to an intermediary. If a single message is
- * published, the context of the "Publish" span can be used as the creation context and
- * no "Create" span needs to be created.
- */
- public static final String PUBLISH = "publish";
-
- /**
- * A message is created. "Create" spans always refer to a single message and are used to
- * provide a unique creation context for messages in batch publishing scenarios.
- */
- public static final String CREATE = "create";
-
- /**
- * One or more messages are requested by a consumer. This operation refers to pull-based
- * scenarios, where consumers explicitly call methods of messaging SDKs to receive messages.
- */
- public static final String RECEIVE = "receive";
-
- /**
- * One or more messages are passed to a consumer. This operation refers to push-based scenarios,
- * where consumer register callbacks which get called by messaging SDKs.
- */
- public static final String DELIVER = "deliver";
-
- /**
- * process.
- *
- * @deprecated this value has been removed as of 1.23.1 of the semantic conventions.
- */
- @Deprecated
- public static final String PROCESS = "process";
-
- private MessagingOperationValues() {
- }
- }
-
- public static final class MessagingRocketmqConsumptionModelValues {
- /** Clustering consumption model. */
- public static final String CLUSTERING = "clustering";
-
- /** Broadcasting consumption model. */
- public static final String BROADCASTING = "broadcasting";
-
- private MessagingRocketmqConsumptionModelValues() {
- }
- }
-
- public static final class MessagingRocketmqMessageTypeValues {
- /** Normal message. */
- public static final String NORMAL = "normal";
-
- /** FIFO message. */
- public static final String FIFO = "fifo";
-
- /** Delay message. */
- public static final String DELAY = "delay";
-
- /** Transaction message. */
- public static final String TRANSACTION = "transaction";
-
- private MessagingRocketmqMessageTypeValues() {
- }
- }
-
- public static final class NetworkConnectionSubtypeValues {
- /** GPRS. */
- public static final String GPRS = "gprs";
-
- /** EDGE. */
- public static final String EDGE = "edge";
-
- /** UMTS. */
- public static final String UMTS = "umts";
-
- /** CDMA. */
- public static final String CDMA = "cdma";
-
- /** EVDO Rel. 0. */
- public static final String EVDO_0 = "evdo_0";
-
- /** EVDO Rev. A. */
- public static final String EVDO_A = "evdo_a";
-
- /** CDMA2000 1XRTT. */
- public static final String CDMA2000_1XRTT = "cdma2000_1xrtt";
-
- /** HSDPA. */
- public static final String HSDPA = "hsdpa";
-
- /** HSUPA. */
- public static final String HSUPA = "hsupa";
-
- /** HSPA. */
- public static final String HSPA = "hspa";
-
- /** IDEN. */
- public static final String IDEN = "iden";
-
- /** EVDO Rev. B. */
- public static final String EVDO_B = "evdo_b";
-
- /** LTE. */
- public static final String LTE = "lte";
-
- /** EHRPD. */
- public static final String EHRPD = "ehrpd";
-
- /** HSPAP. */
- public static final String HSPAP = "hspap";
-
- /** GSM. */
- public static final String GSM = "gsm";
-
- /** TD-SCDMA. */
- public static final String TD_SCDMA = "td_scdma";
-
- /** IWLAN. */
- public static final String IWLAN = "iwlan";
-
- /** 5G NR (New Radio). */
- public static final String NR = "nr";
-
- /** 5G NRNSA (New Radio Non-Standalone). */
- public static final String NRNSA = "nrnsa";
-
- /** LTE CA. */
- public static final String LTE_CA = "lte_ca";
-
- private NetworkConnectionSubtypeValues() {
- }
- }
-
- public static final class NetworkConnectionTypeValues {
- /** wifi. */
- public static final String WIFI = "wifi";
-
- /** wired. */
- public static final String WIRED = "wired";
-
- /** cell. */
- public static final String CELL = "cell";
-
- /** unavailable. */
- public static final String UNAVAILABLE = "unavailable";
-
- /** unknown. */
- public static final String UNKNOWN = "unknown";
-
- private NetworkConnectionTypeValues() {
- }
- }
-
- public static final class NetworkTransportValues {
- /** TCP. */
- public static final String TCP = "tcp";
-
- /** UDP. */
- public static final String UDP = "udp";
-
- /** Named or anonymous pipe. */
- public static final String PIPE = "pipe";
-
- /** Unix domain socket. */
- public static final String UNIX = "unix";
-
- private NetworkTransportValues() {
- }
- }
-
- public static final class NetworkTypeValues {
- /** IPv4. */
- public static final String IPV4 = "ipv4";
-
- /** IPv6. */
- public static final String IPV6 = "ipv6";
-
- private NetworkTypeValues() {
- }
- }
-
- public static final class RpcConnectRpcErrorCodeValues {
- /** cancelled. */
- public static final String CANCELLED = "cancelled";
-
- /** unknown. */
- public static final String UNKNOWN = "unknown";
-
- /** invalid_argument. */
- public static final String INVALID_ARGUMENT = "invalid_argument";
-
- /** deadline_exceeded. */
- public static final String DEADLINE_EXCEEDED = "deadline_exceeded";
-
- /** not_found. */
- public static final String NOT_FOUND = "not_found";
-
- /** already_exists. */
- public static final String ALREADY_EXISTS = "already_exists";
-
- /** permission_denied. */
- public static final String PERMISSION_DENIED = "permission_denied";
-
- /** resource_exhausted. */
- public static final String RESOURCE_EXHAUSTED = "resource_exhausted";
-
- /** failed_precondition. */
- public static final String FAILED_PRECONDITION = "failed_precondition";
-
- /** aborted. */
- public static final String ABORTED = "aborted";
-
- /** out_of_range. */
- public static final String OUT_OF_RANGE = "out_of_range";
-
- /** unimplemented. */
- public static final String UNIMPLEMENTED = "unimplemented";
-
- /** internal. */
- public static final String INTERNAL = "internal";
-
- /** unavailable. */
- public static final String UNAVAILABLE = "unavailable";
-
- /** data_loss. */
- public static final String DATA_LOSS = "data_loss";
-
- /** unauthenticated. */
- public static final String UNAUTHENTICATED = "unauthenticated";
-
- private RpcConnectRpcErrorCodeValues() {
- }
- }
-
- public static final class RpcGrpcStatusCodeValues {
- /** OK. */
- public static final long OK = 0;
-
- /** CANCELLED. */
- public static final long CANCELLED = 1;
-
- /** UNKNOWN. */
- public static final long UNKNOWN = 2;
-
- /** INVALID_ARGUMENT. */
- public static final long INVALID_ARGUMENT = 3;
-
- /** DEADLINE_EXCEEDED. */
- public static final long DEADLINE_EXCEEDED = 4;
-
- /** NOT_FOUND. */
- public static final long NOT_FOUND = 5;
-
- /** ALREADY_EXISTS. */
- public static final long ALREADY_EXISTS = 6;
-
- /** PERMISSION_DENIED. */
- public static final long PERMISSION_DENIED = 7;
-
- /** RESOURCE_EXHAUSTED. */
- public static final long RESOURCE_EXHAUSTED = 8;
-
- /** FAILED_PRECONDITION. */
- public static final long FAILED_PRECONDITION = 9;
-
- /** ABORTED. */
- public static final long ABORTED = 10;
-
- /** OUT_OF_RANGE. */
- public static final long OUT_OF_RANGE = 11;
-
- /** UNIMPLEMENTED. */
- public static final long UNIMPLEMENTED = 12;
-
- /** INTERNAL. */
- public static final long INTERNAL = 13;
-
- /** UNAVAILABLE. */
- public static final long UNAVAILABLE = 14;
-
- /** DATA_LOSS. */
- public static final long DATA_LOSS = 15;
-
- /** UNAUTHENTICATED. */
- public static final long UNAUTHENTICATED = 16;
-
- private RpcGrpcStatusCodeValues() {
- }
- }
-
- public static final class RpcSystemValues {
- /** gRPC. */
- public static final String GRPC = "grpc";
-
- /** Java RMI. */
- public static final String JAVA_RMI = "java_rmi";
-
- /** .NET WCF. */
- public static final String DOTNET_WCF = "dotnet_wcf";
-
- /** Apache Dubbo. */
- public static final String APACHE_DUBBO = "apache_dubbo";
-
- /** Connect RPC. */
- public static final String CONNECT_RPC = "connect_rpc";
-
- private RpcSystemValues() {
- }
- }
-
- public static final class OpentracingRefTypeValues {
- /** The parent Span depends on the child Span in some capacity. */
- public static final String CHILD_OF = "child_of";
-
- /** The parent Span doesn't depend in any way on the result of the child Span. */
- public static final String FOLLOWS_FROM = "follows_from";
-
- private OpentracingRefTypeValues() {
- }
- }
-
- public static final class DbSystemValues {
- /** Some other SQL database. Fallback only. See notes. */
- public static final String OTHER_SQL = "other_sql";
-
- /** Microsoft SQL Server. */
- public static final String MSSQL = "mssql";
-
- /** Microsoft SQL Server Compact. */
- public static final String MSSQLCOMPACT = "mssqlcompact";
-
- /** MySQL. */
- public static final String MYSQL = "mysql";
-
- /** Oracle Database. */
- public static final String ORACLE = "oracle";
-
- /** IBM Db2. */
- public static final String DB2 = "db2";
-
- /** PostgreSQL. */
- public static final String POSTGRESQL = "postgresql";
-
- /** Amazon Redshift. */
- public static final String REDSHIFT = "redshift";
-
- /** Apache Hive. */
- public static final String HIVE = "hive";
-
- /** Cloudscape. */
- public static final String CLOUDSCAPE = "cloudscape";
-
- /** HyperSQL DataBase. */
- public static final String HSQLDB = "hsqldb";
-
- /** Progress Database. */
- public static final String PROGRESS = "progress";
-
- /** SAP MaxDB. */
- public static final String MAXDB = "maxdb";
-
- /** SAP HANA. */
- public static final String HANADB = "hanadb";
-
- /** Ingres. */
- public static final String INGRES = "ingres";
-
- /** FirstSQL. */
- public static final String FIRSTSQL = "firstsql";
-
- /** EnterpriseDB. */
- public static final String EDB = "edb";
-
- /** InterSystems Caché. */
- public static final String CACHE = "cache";
-
- /** Adabas (Adaptable Database System). */
- public static final String ADABAS = "adabas";
-
- /** Firebird. */
- public static final String FIREBIRD = "firebird";
-
- /** Apache Derby. */
- public static final String DERBY = "derby";
-
- /** FileMaker. */
- public static final String FILEMAKER = "filemaker";
-
- /** Informix. */
- public static final String INFORMIX = "informix";
-
- /** InstantDB. */
- public static final String INSTANTDB = "instantdb";
-
- /** InterBase. */
- public static final String INTERBASE = "interbase";
-
- /** MariaDB. */
- public static final String MARIADB = "mariadb";
-
- /** Netezza. */
- public static final String NETEZZA = "netezza";
-
- /** Pervasive PSQL. */
- public static final String PERVASIVE = "pervasive";
-
- /** PointBase. */
- public static final String POINTBASE = "pointbase";
-
- /** SQLite. */
- public static final String SQLITE = "sqlite";
-
- /** Sybase. */
- public static final String SYBASE = "sybase";
-
- /** Teradata. */
- public static final String TERADATA = "teradata";
-
- /** Vertica. */
- public static final String VERTICA = "vertica";
-
- /** H2. */
- public static final String H2 = "h2";
-
- /** ColdFusion IMQ. */
- public static final String COLDFUSION = "coldfusion";
-
- /** Apache Cassandra. */
- public static final String CASSANDRA = "cassandra";
-
- /** Apache HBase. */
- public static final String HBASE = "hbase";
-
- /** MongoDB. */
- public static final String MONGODB = "mongodb";
-
- /** Redis. */
- public static final String REDIS = "redis";
-
- /** Couchbase. */
- public static final String COUCHBASE = "couchbase";
-
- /** CouchDB. */
- public static final String COUCHDB = "couchdb";
-
- /** Microsoft Azure Cosmos DB. */
- public static final String COSMOSDB = "cosmosdb";
-
- /** Amazon DynamoDB. */
- public static final String DYNAMODB = "dynamodb";
-
- /** Neo4j. */
- public static final String NEO4J = "neo4j";
-
- /** Apache Geode. */
- public static final String GEODE = "geode";
-
- /** Elasticsearch. */
- public static final String ELASTICSEARCH = "elasticsearch";
-
- /** Memcached. */
- public static final String MEMCACHED = "memcached";
-
- /** CockroachDB. */
- public static final String COCKROACHDB = "cockroachdb";
-
- /** OpenSearch. */
- public static final String OPENSEARCH = "opensearch";
-
- /** ClickHouse. */
- public static final String CLICKHOUSE = "clickhouse";
-
- /** Cloud Spanner. */
- public static final String SPANNER = "spanner";
-
- /** Trino. */
- public static final String TRINO = "trino";
-
- private DbSystemValues() {
- }
- }
-
- public static final class DbCassandraConsistencyLevelValues {
- /** all. */
- public static final String ALL = "all";
-
- /** each_quorum. */
- public static final String EACH_QUORUM = "each_quorum";
-
- /** quorum. */
- public static final String QUORUM = "quorum";
-
- /** local_quorum. */
- public static final String LOCAL_QUORUM = "local_quorum";
-
- /** one. */
- public static final String ONE = "one";
-
- /** two. */
- public static final String TWO = "two";
-
- /** three. */
- public static final String THREE = "three";
-
- /** local_one. */
- public static final String LOCAL_ONE = "local_one";
-
- /** any. */
- public static final String ANY = "any";
-
- /** serial. */
- public static final String SERIAL = "serial";
-
- /** local_serial. */
- public static final String LOCAL_SERIAL = "local_serial";
-
- private DbCassandraConsistencyLevelValues() {
- }
- }
-
- public static final class DbCosmosdbConnectionModeValues {
- /** Gateway (HTTP) connections mode. */
- public static final String GATEWAY = "gateway";
-
- /** Direct connection. */
- public static final String DIRECT = "direct";
-
- private DbCosmosdbConnectionModeValues() {
- }
- }
-
- public static final class DbCosmosdbOperationTypeValues {
- /** invalid. */
- public static final String INVALID = "Invalid";
-
- /** create. */
- public static final String CREATE = "Create";
-
- /** patch. */
- public static final String PATCH = "Patch";
-
- /** read. */
- public static final String READ = "Read";
-
- /** read_feed. */
- public static final String READ_FEED = "ReadFeed";
-
- /** delete. */
- public static final String DELETE = "Delete";
-
- /** replace. */
- public static final String REPLACE = "Replace";
-
- /** execute. */
- public static final String EXECUTE = "Execute";
-
- /** query. */
- public static final String QUERY = "Query";
-
- /** head. */
- public static final String HEAD = "Head";
-
- /** head_feed. */
- public static final String HEAD_FEED = "HeadFeed";
-
- /** upsert. */
- public static final String UPSERT = "Upsert";
-
- /** batch. */
- public static final String BATCH = "Batch";
-
- /** query_plan. */
- public static final String QUERY_PLAN = "QueryPlan";
-
- /** execute_javascript. */
- public static final String EXECUTE_JAVASCRIPT = "ExecuteJavaScript";
-
- private DbCosmosdbOperationTypeValues() {
- }
- }
-
- public static final class OtelStatusCodeValues {
- /**
- * The operation has been validated by an Application developer or Operator to have completed
- * successfully.
- */
- public static final String OK = "OK";
-
- /** The operation contains an error. */
- public static final String ERROR = "ERROR";
-
- private OtelStatusCodeValues() {
- }
- }
-
- public static final class FaasDocumentOperationValues {
- /** When a new object is created. */
- public static final String INSERT = "insert";
-
- /** When an object is modified. */
- public static final String EDIT = "edit";
-
- /** When an object is deleted. */
- public static final String DELETE = "delete";
-
- private FaasDocumentOperationValues() {
- }
- }
-
- public static final class GraphqlOperationTypeValues {
- /** GraphQL query. */
- public static final String QUERY = "query";
-
- /** GraphQL mutation. */
- public static final String MUTATION = "mutation";
-
- /** GraphQL subscription. */
- public static final String SUBSCRIPTION = "subscription";
-
- private GraphqlOperationTypeValues() {
- }
- }
-
- public static final class MessageTypeValues {
- /** sent. */
- public static final String SENT = "SENT";
-
- /** received. */
- public static final String RECEIVED = "RECEIVED";
-
- private MessageTypeValues() {
- }
- }
-
- // Manually defined and not YET in the YAML
- /**
- * The name of an event describing an exception.
- *
- * Typically an event with that name should not be manually created. Instead {@link
- * io.opentelemetry.api.trace.Span#recordException(Throwable)} should be used.
- */
- public static final String EXCEPTION_EVENT_NAME = "exception";
-
- /**
- * The name of the keyspace being accessed.
- *
- * @deprecated this item has been removed as of 1.8.0 of the semantic conventions. Please use
- * {@link SemanticAttributes#DB_NAME} instead.
- */
- @Deprecated
- public static final AttributeKey DB_CASSANDRA_KEYSPACE = stringKey("db.cassandra.keyspace");
-
- /**
- * The HBase namespace being accessed.
- *
- * @deprecated this item has been removed as of 1.8.0 of the semantic conventions. Please use
- * {@link SemanticAttributes#DB_NAME} instead.
- */
- @Deprecated
- public static final AttributeKey DB_HBASE_NAMESPACE = stringKey("db.hbase.namespace");
-
- /**
- * The size of the uncompressed request payload body after transport decoding. Not set if
- * transport encoding not used.
- *
- * @deprecated this item has been removed as of 1.13.0 of the semantic conventions. Please use
- * {@link SemanticAttributes#HTTP_REQUEST_CONTENT_LENGTH} instead.
- */
- @Deprecated
- public static final AttributeKey HTTP_REQUEST_CONTENT_LENGTH_UNCOMPRESSED
- = longKey("http.request_content_length_uncompressed");
-
- /**
- * @deprecated This item has been removed as of 1.13.0 of the semantic conventions. Please use
- * {@link SemanticAttributes#HTTP_RESPONSE_CONTENT_LENGTH} instead.
- */
- @Deprecated
- public static final AttributeKey HTTP_RESPONSE_CONTENT_LENGTH_UNCOMPRESSED
- = longKey("http.response_content_length_uncompressed");
-
- /**
- * @deprecated This item has been removed as of 1.13.0 of the semantic conventions. Please use
- * {@link SemanticAttributes#NET_HOST_NAME} instead.
- */
- @Deprecated
- public static final AttributeKey HTTP_SERVER_NAME = stringKey("http.server_name");
-
- /**
- * @deprecated This item has been removed as of 1.13.0 of the semantic conventions. Please use
- * {@link SemanticAttributes#NET_HOST_NAME} instead.
- */
- @Deprecated
- public static final AttributeKey