-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTraceAttributes.php
More file actions
4696 lines (3961 loc) · 202 KB
/
TraceAttributes.php
File metadata and controls
4696 lines (3961 loc) · 202 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
// DO NOT EDIT, this is archived and left for backward compatibility.
declare(strict_types=1);
namespace OpenTelemetry\SemConv;
/**
* @deprecated Use {@see OpenTelemetry\SemConv\Attributes}\* or {@see OpenTelemetry\SemConv\Incubating\Attributes}\* instead.
*/
interface TraceAttributes
{
/**
* The URL of the OpenTelemetry schema for these keys and values.
*/
public const SCHEMA_URL = 'https://opentelemetry.io/schemas/1.32.0';
/**
* This attribute represents the state of the application.
*
* The Android lifecycle states are defined in [Activity lifecycle callbacks](https://developer.android.com/guide/components/activities/activity-lifecycle#lc), and from which the `OS identifiers` are derived.
*/
public const ANDROID_APP_STATE = 'android.app.state';
/**
* Uniquely identifies the framework API revision offered by a version (`os.version`) of the android operating system. More information can be found [here](https://developer.android.com/guide/topics/manifest/uses-sdk-element#ApiLevels).
*/
public const ANDROID_OS_API_LEVEL = 'android.os.api_level';
/**
* Deprecated. Use `android.app.state` body field instead.
*
* @deprecated {"note": "Use `android.app.state` body field instead.", "reason": "uncategorized"}
*/
public const ANDROID_STATE = 'android.state';
/**
* A unique identifier representing the installation of an application on a specific device
*
* Its value SHOULD persist across launches of the same application installation, including through application upgrades.
* It SHOULD change if the application is uninstalled or if all applications of the vendor are uninstalled.
* Additionally, users might be able to reset this value (e.g. by clearing application data).
* If an app is installed multiple times on the same device (e.g. in different accounts on Android), each `app.installation.id` SHOULD have a different value.
* If multiple OpenTelemetry SDKs are used within the same application, they SHOULD use the same value for `app.installation.id`.
* Hardware IDs (e.g. serial number, IMEI, MAC address) MUST NOT be used as the `app.installation.id`.
*
* For iOS, this value SHOULD be equal to the [vendor identifier](https://developer.apple.com/documentation/uikit/uidevice/identifierforvendor).
*
* For Android, examples of `app.installation.id` implementations include:
*
* - [Firebase Installation ID](https://firebase.google.com/docs/projects/manage-installations).
* - A globally unique UUID which is persisted across sessions in your application.
* - [App set ID](https://developer.android.com/identity/app-set-id).
* - [`Settings.getString(Settings.Secure.ANDROID_ID)`](https://developer.android.com/reference/android/provider/Settings.Secure#ANDROID_ID).
*
* More information about Android identifier best practices can be found [here](https://developer.android.com/training/articles/user-data-ids).
*/
public const APP_INSTALLATION_ID = 'app.installation.id';
/**
* The x (horizontal) coordinate of a screen coordinate, in screen pixels.
*/
public const APP_SCREEN_COORDINATE_X = 'app.screen.coordinate.x';
/**
* The y (vertical) component of a screen coordinate, in screen pixels.
*/
public const APP_SCREEN_COORDINATE_Y = 'app.screen.coordinate.y';
/**
* An identifier that uniquely differentiates this widget from other widgets in the same application.
*
* A widget is an application component, typically an on-screen visual GUI element.
*/
public const APP_WIDGET_ID = 'app.widget.id';
/**
* The name of an application widget.
* A widget is an application component, typically an on-screen visual GUI element.
*/
public const APP_WIDGET_NAME = 'app.widget.name';
/**
* The provenance filename of the built attestation which directly relates to the build artifact filename. This filename SHOULD accompany the artifact at publish time. See the [SLSA Relationship](https://slsa.dev/spec/v1.0/distributing-provenance#relationship-between-artifacts-and-attestations) specification for more information.
*/
public const ARTIFACT_ATTESTATION_FILENAME = 'artifact.attestation.filename';
/**
* The full [hash value (see glossary)](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-5.pdf), of the built attestation. Some envelopes in the [software attestation space](https://github.com/in-toto/attestation/tree/main/spec) also refer to this as the **digest**.
*/
public const ARTIFACT_ATTESTATION_HASH = 'artifact.attestation.hash';
/**
* The id of the build [software attestation](https://slsa.dev/attestation-model).
*/
public const ARTIFACT_ATTESTATION_ID = 'artifact.attestation.id';
/**
* The human readable file name of the artifact, typically generated during build and release processes. Often includes the package name and version in the file name.
*
* This file name can also act as the [Package Name](https://slsa.dev/spec/v1.0/terminology#package-model)
* in cases where the package ecosystem maps accordingly.
* Additionally, the artifact [can be published](https://slsa.dev/spec/v1.0/terminology#software-supply-chain)
* for others, but that is not a guarantee.
*/
public const ARTIFACT_FILENAME = 'artifact.filename';
/**
* The full [hash value (see glossary)](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.186-5.pdf), often found in checksum.txt on a release of the artifact and used to verify package integrity.
*
* The specific algorithm used to create the cryptographic hash value is
* not defined. In situations where an artifact has multiple
* cryptographic hashes, it is up to the implementer to choose which
* hash value to set here; this should be the most secure hash algorithm
* that is suitable for the situation and consistent with the
* corresponding attestation. The implementer can then provide the other
* hash values through an additional set of attribute extensions as they
* deem necessary.
*/
public const ARTIFACT_HASH = 'artifact.hash';
/**
* The [Package URL](https://github.com/package-url/purl-spec) of the [package artifact](https://slsa.dev/spec/v1.0/terminology#package-model) provides a standard way to identify and locate the packaged artifact.
*/
public const ARTIFACT_PURL = 'artifact.purl';
/**
* The version of the artifact.
*/
public const ARTIFACT_VERSION = 'artifact.version';
/**
* ASP.NET Core exception middleware handling result
*/
public const ASPNETCORE_DIAGNOSTICS_EXCEPTION_RESULT = 'aspnetcore.diagnostics.exception.result';
/**
* Full type name of the [`IExceptionHandler`](https://learn.microsoft.com/dotnet/api/microsoft.aspnetcore.diagnostics.iexceptionhandler) implementation that handled the exception.
*/
public const ASPNETCORE_DIAGNOSTICS_HANDLER_TYPE = 'aspnetcore.diagnostics.handler.type';
/**
* Rate limiting policy name.
*/
public const ASPNETCORE_RATE_LIMITING_POLICY = 'aspnetcore.rate_limiting.policy';
/**
* Rate-limiting result, shows whether the lease was acquired or contains a rejection reason
*/
public const ASPNETCORE_RATE_LIMITING_RESULT = 'aspnetcore.rate_limiting.result';
/**
* Flag indicating if request was handled by the application pipeline.
*/
public const ASPNETCORE_REQUEST_IS_UNHANDLED = 'aspnetcore.request.is_unhandled';
/**
* A value that indicates whether the matched route is a fallback route.
*/
public const ASPNETCORE_ROUTING_IS_FALLBACK = 'aspnetcore.routing.is_fallback';
/**
* Match result - success or failure
*/
public const ASPNETCORE_ROUTING_MATCH_STATUS = 'aspnetcore.routing.match_status';
/**
* The unique identifier of the AWS Bedrock Guardrail. A [guardrail](https://docs.aws.amazon.com/bedrock/latest/userguide/guardrails.html) helps safeguard and prevent unwanted behavior from model responses or user messages.
*/
public const AWS_BEDROCK_GUARDRAIL_ID = 'aws.bedrock.guardrail.id';
/**
* The unique identifier of the AWS Bedrock Knowledge base. A [knowledge base](https://docs.aws.amazon.com/bedrock/latest/userguide/knowledge-base.html) is a bank of information that can be queried by models to generate more relevant responses and augment prompts.
*/
public const AWS_BEDROCK_KNOWLEDGE_BASE_ID = 'aws.bedrock.knowledge_base.id';
/**
* The JSON-serialized value of each item in the `AttributeDefinitions` request field.
*/
public const AWS_DYNAMODB_ATTRIBUTE_DEFINITIONS = 'aws.dynamodb.attribute_definitions';
/**
* The value of the `AttributesToGet` request parameter.
*/
public const AWS_DYNAMODB_ATTRIBUTES_TO_GET = 'aws.dynamodb.attributes_to_get';
/**
* The value of the `ConsistentRead` request parameter.
*/
public const AWS_DYNAMODB_CONSISTENT_READ = 'aws.dynamodb.consistent_read';
/**
* The JSON-serialized value of each item in the `ConsumedCapacity` response field.
*/
public const AWS_DYNAMODB_CONSUMED_CAPACITY = 'aws.dynamodb.consumed_capacity';
/**
* The value of the `Count` response parameter.
*/
public const AWS_DYNAMODB_COUNT = 'aws.dynamodb.count';
/**
* The value of the `ExclusiveStartTableName` request parameter.
*/
public const AWS_DYNAMODB_EXCLUSIVE_START_TABLE = 'aws.dynamodb.exclusive_start_table';
/**
* The JSON-serialized value of each item in the `GlobalSecondaryIndexUpdates` request field.
*/
public const AWS_DYNAMODB_GLOBAL_SECONDARY_INDEX_UPDATES = 'aws.dynamodb.global_secondary_index_updates';
/**
* The JSON-serialized value of each item of the `GlobalSecondaryIndexes` request field
*/
public const AWS_DYNAMODB_GLOBAL_SECONDARY_INDEXES = 'aws.dynamodb.global_secondary_indexes';
/**
* The value of the `IndexName` request parameter.
*/
public const AWS_DYNAMODB_INDEX_NAME = 'aws.dynamodb.index_name';
/**
* The JSON-serialized value of the `ItemCollectionMetrics` response field.
*/
public const AWS_DYNAMODB_ITEM_COLLECTION_METRICS = 'aws.dynamodb.item_collection_metrics';
/**
* The value of the `Limit` request parameter.
*/
public const AWS_DYNAMODB_LIMIT = 'aws.dynamodb.limit';
/**
* The JSON-serialized value of each item of the `LocalSecondaryIndexes` request field.
*/
public const AWS_DYNAMODB_LOCAL_SECONDARY_INDEXES = 'aws.dynamodb.local_secondary_indexes';
/**
* The value of the `ProjectionExpression` request parameter.
*/
public const AWS_DYNAMODB_PROJECTION = 'aws.dynamodb.projection';
/**
* The value of the `ProvisionedThroughput.ReadCapacityUnits` request parameter.
*/
public const AWS_DYNAMODB_PROVISIONED_READ_CAPACITY = 'aws.dynamodb.provisioned_read_capacity';
/**
* The value of the `ProvisionedThroughput.WriteCapacityUnits` request parameter.
*/
public const AWS_DYNAMODB_PROVISIONED_WRITE_CAPACITY = 'aws.dynamodb.provisioned_write_capacity';
/**
* The value of the `ScanIndexForward` request parameter.
*/
public const AWS_DYNAMODB_SCAN_FORWARD = 'aws.dynamodb.scan_forward';
/**
* The value of the `ScannedCount` response parameter.
*/
public const AWS_DYNAMODB_SCANNED_COUNT = 'aws.dynamodb.scanned_count';
/**
* The value of the `Segment` request parameter.
*/
public const AWS_DYNAMODB_SEGMENT = 'aws.dynamodb.segment';
/**
* The value of the `Select` request parameter.
*/
public const AWS_DYNAMODB_SELECT = 'aws.dynamodb.select';
/**
* The number of items in the `TableNames` response parameter.
*/
public const AWS_DYNAMODB_TABLE_COUNT = 'aws.dynamodb.table_count';
/**
* The keys in the `RequestItems` object field.
*/
public const AWS_DYNAMODB_TABLE_NAMES = 'aws.dynamodb.table_names';
/**
* The value of the `TotalSegments` request parameter.
*/
public const AWS_DYNAMODB_TOTAL_SEGMENTS = 'aws.dynamodb.total_segments';
/**
* The ARN of an [ECS cluster](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/clusters.html).
*/
public const AWS_ECS_CLUSTER_ARN = 'aws.ecs.cluster.arn';
/**
* The Amazon Resource Name (ARN) of an [ECS container instance](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_instances.html).
*/
public const AWS_ECS_CONTAINER_ARN = 'aws.ecs.container.arn';
/**
* The [launch type](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) for an ECS task.
*/
public const AWS_ECS_LAUNCHTYPE = 'aws.ecs.launchtype';
/**
* The ARN of a running [ECS task](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-account-settings.html#ecs-resource-ids).
*/
public const AWS_ECS_TASK_ARN = 'aws.ecs.task.arn';
/**
* The family name of the [ECS task definition](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_definitions.html) used to create the ECS task.
*/
public const AWS_ECS_TASK_FAMILY = 'aws.ecs.task.family';
/**
* The ID of a running ECS task. The ID MUST be extracted from `task.arn`.
*/
public const AWS_ECS_TASK_ID = 'aws.ecs.task.id';
/**
* The revision for the task definition used to create the ECS task.
*/
public const AWS_ECS_TASK_REVISION = 'aws.ecs.task.revision';
/**
* The ARN of an EKS cluster.
*/
public const AWS_EKS_CLUSTER_ARN = 'aws.eks.cluster.arn';
/**
* The AWS extended request ID as returned in the response header `x-amz-id-2`.
*/
public const AWS_EXTENDED_REQUEST_ID = 'aws.extended_request_id';
/**
* The name of the AWS Kinesis [stream](https://docs.aws.amazon.com/streams/latest/dev/introduction.html) the request refers to. Corresponds to the `--stream-name` parameter of the Kinesis [describe-stream](https://docs.aws.amazon.com/cli/latest/reference/kinesis/describe-stream.html) operation.
*/
public const AWS_KINESIS_STREAM_NAME = 'aws.kinesis.stream_name';
/**
* The full invoked ARN as provided on the `Context` passed to the function (`Lambda-Runtime-Invoked-Function-Arn` header on the `/runtime/invocation/next` applicable).
*
* This may be different from `cloud.resource_id` if an alias is involved.
*/
public const AWS_LAMBDA_INVOKED_ARN = 'aws.lambda.invoked_arn';
/**
* The UUID of the [AWS Lambda EvenSource Mapping](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-eventsourcemapping.html). An event source is mapped to a lambda function. It's contents are read by Lambda and used to trigger a function. This isn't available in the lambda execution context or the lambda runtime environtment. This is going to be populated by the AWS SDK for each language when that UUID is present. Some of these operations are Create/Delete/Get/List/Update EventSourceMapping.
*/
public const AWS_LAMBDA_RESOURCE_MAPPING_ID = 'aws.lambda.resource_mapping.id';
/**
* The Amazon Resource Name(s) (ARN) of the AWS log group(s).
*
* See the [log group ARN format documentation](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/iam-access-control-overview-cwl.html#CWL_ARN_Format).
*/
public const AWS_LOG_GROUP_ARNS = 'aws.log.group.arns';
/**
* The name(s) of the AWS log group(s) an application is writing to.
*
* Multiple log groups must be supported for cases like multi-container applications, where a single application has sidecar containers, and each write to their own log group.
*/
public const AWS_LOG_GROUP_NAMES = 'aws.log.group.names';
/**
* The ARN(s) of the AWS log stream(s).
*
* See the [log stream ARN format documentation](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/iam-access-control-overview-cwl.html#CWL_ARN_Format). One log group can contain several log streams, so these ARNs necessarily identify both a log group and a log stream.
*/
public const AWS_LOG_STREAM_ARNS = 'aws.log.stream.arns';
/**
* The name(s) of the AWS log stream(s) an application is writing to.
*/
public const AWS_LOG_STREAM_NAMES = 'aws.log.stream.names';
/**
* The AWS request ID as returned in the response headers `x-amzn-requestid`, `x-amzn-request-id` or `x-amz-request-id`.
*/
public const AWS_REQUEST_ID = 'aws.request_id';
/**
* The S3 bucket name the request refers to. Corresponds to the `--bucket` parameter of the [S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/index.html) operations.
* The `bucket` attribute is applicable to all S3 operations that reference a bucket, i.e. that require the bucket name as a mandatory parameter.
* This applies to almost all S3 operations except `list-buckets`.
*/
public const AWS_S3_BUCKET = 'aws.s3.bucket';
/**
* The source object (in the form `bucket`/`key`) for the copy operation.
* The `copy_source` attribute applies to S3 copy operations and corresponds to the `--copy-source` parameter
* of the [copy-object operation within the S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/copy-object.html).
* This applies in particular to the following operations:
*
* - [copy-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/copy-object.html)
* - [upload-part-copy](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part-copy.html)
*/
public const AWS_S3_COPY_SOURCE = 'aws.s3.copy_source';
/**
* The delete request container that specifies the objects to be deleted.
* The `delete` attribute is only applicable to the [delete-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/delete-object.html) operation.
* The `delete` attribute corresponds to the `--delete` parameter of the
* [delete-objects operation within the S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/delete-objects.html).
*/
public const AWS_S3_DELETE = 'aws.s3.delete';
/**
* The S3 object key the request refers to. Corresponds to the `--key` parameter of the [S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/index.html) operations.
* The `key` attribute is applicable to all object-related S3 operations, i.e. that require the object key as a mandatory parameter.
* This applies in particular to the following operations:
*
* - [copy-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/copy-object.html)
* - [delete-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/delete-object.html)
* - [get-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/get-object.html)
* - [head-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/head-object.html)
* - [put-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/put-object.html)
* - [restore-object](https://docs.aws.amazon.com/cli/latest/reference/s3api/restore-object.html)
* - [select-object-content](https://docs.aws.amazon.com/cli/latest/reference/s3api/select-object-content.html)
* - [abort-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/abort-multipart-upload.html)
* - [complete-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/complete-multipart-upload.html)
* - [create-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/create-multipart-upload.html)
* - [list-parts](https://docs.aws.amazon.com/cli/latest/reference/s3api/list-parts.html)
* - [upload-part](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part.html)
* - [upload-part-copy](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part-copy.html)
*/
public const AWS_S3_KEY = 'aws.s3.key';
/**
* The part number of the part being uploaded in a multipart-upload operation. This is a positive integer between 1 and 10,000.
* The `part_number` attribute is only applicable to the [upload-part](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part.html)
* and [upload-part-copy](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part-copy.html) operations.
* The `part_number` attribute corresponds to the `--part-number` parameter of the
* [upload-part operation within the S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part.html).
*/
public const AWS_S3_PART_NUMBER = 'aws.s3.part_number';
/**
* Upload ID that identifies the multipart upload.
* The `upload_id` attribute applies to S3 multipart-upload operations and corresponds to the `--upload-id` parameter
* of the [S3 API](https://docs.aws.amazon.com/cli/latest/reference/s3api/index.html) multipart operations.
* This applies in particular to the following operations:
*
* - [abort-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/abort-multipart-upload.html)
* - [complete-multipart-upload](https://docs.aws.amazon.com/cli/latest/reference/s3api/complete-multipart-upload.html)
* - [list-parts](https://docs.aws.amazon.com/cli/latest/reference/s3api/list-parts.html)
* - [upload-part](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part.html)
* - [upload-part-copy](https://docs.aws.amazon.com/cli/latest/reference/s3api/upload-part-copy.html)
*/
public const AWS_S3_UPLOAD_ID = 'aws.s3.upload_id';
/**
* The ARN of the Secret stored in the Secrets Mangger
*/
public const AWS_SECRETSMANAGER_SECRET_ARN = 'aws.secretsmanager.secret.arn';
/**
* The ARN of the AWS SNS Topic. An Amazon SNS [topic](https://docs.aws.amazon.com/sns/latest/dg/sns-create-topic.html) is a logical access point that acts as a communication channel.
*/
public const AWS_SNS_TOPIC_ARN = 'aws.sns.topic.arn';
/**
* The URL of the AWS SQS Queue. It's a unique identifier for a queue in Amazon Simple Queue Service (SQS) and is used to access the queue and perform actions on it.
*/
public const AWS_SQS_QUEUE_URL = 'aws.sqs.queue.url';
/**
* The ARN of the AWS Step Functions Activity.
*/
public const AWS_STEP_FUNCTIONS_ACTIVITY_ARN = 'aws.step_functions.activity.arn';
/**
* The ARN of the AWS Step Functions State Machine.
*/
public const AWS_STEP_FUNCTIONS_STATE_MACHINE_ARN = 'aws.step_functions.state_machine.arn';
/**
* [Azure Resource Provider Namespace](https://learn.microsoft.com/azure/azure-resource-manager/management/azure-services-resource-providers) as recognized by the client.
*/
public const AZ_NAMESPACE = 'az.namespace';
/**
* The unique identifier of the service request. It's generated by the Azure service and returned with the response.
*/
public const AZ_SERVICE_REQUEST_ID = 'az.service_request_id';
/**
* The unique identifier of the client instance.
*/
public const AZURE_CLIENT_ID = 'azure.client.id';
/**
* Cosmos client connection mode.
*/
public const AZURE_COSMOSDB_CONNECTION_MODE = 'azure.cosmosdb.connection.mode';
/**
* Account or request [consistency level](https://learn.microsoft.com/azure/cosmos-db/consistency-levels).
*/
public const AZURE_COSMOSDB_CONSISTENCY_LEVEL = 'azure.cosmosdb.consistency.level';
/**
* List of regions contacted during operation in the order that they were contacted. If there is more than one region listed, it indicates that the operation was performed on multiple regions i.e. cross-regional call.
*
* Region name matches the format of `displayName` in [Azure Location API](https://learn.microsoft.com/rest/api/subscription/subscriptions/list-locations?view=rest-subscription-2021-10-01&tabs=HTTP#location)
*/
public const AZURE_COSMOSDB_OPERATION_CONTACTED_REGIONS = 'azure.cosmosdb.operation.contacted_regions';
/**
* The number of request units consumed by the operation.
*/
public const AZURE_COSMOSDB_OPERATION_REQUEST_CHARGE = 'azure.cosmosdb.operation.request_charge';
/**
* Request payload size in bytes.
*/
public const AZURE_COSMOSDB_REQUEST_BODY_SIZE = 'azure.cosmosdb.request.body.size';
/**
* Cosmos DB sub status code.
*/
public const AZURE_COSMOSDB_RESPONSE_SUB_STATUS_CODE = 'azure.cosmosdb.response.sub_status_code';
/**
* Array of brand name and version separated by a space
* This value is intended to be taken from the [UA client hints API](https://wicg.github.io/ua-client-hints/#interface) (`navigator.userAgentData.brands`).
*/
public const BROWSER_BRANDS = 'browser.brands';
/**
* Preferred language of the user using the browser
* This value is intended to be taken from the Navigator API `navigator.language`.
*/
public const BROWSER_LANGUAGE = 'browser.language';
/**
* A boolean that is true if the browser is running on a mobile device
* This value is intended to be taken from the [UA client hints API](https://wicg.github.io/ua-client-hints/#interface) (`navigator.userAgentData.mobile`). If unavailable, this attribute SHOULD be left unset.
*/
public const BROWSER_MOBILE = 'browser.mobile';
/**
* The platform on which the browser is running
* This value is intended to be taken from the [UA client hints API](https://wicg.github.io/ua-client-hints/#interface) (`navigator.userAgentData.platform`). If unavailable, the legacy `navigator.platform` API SHOULD NOT be used instead and this attribute SHOULD be left unset in order for the values to be consistent.
* The list of possible values is defined in the [W3C User-Agent Client Hints specification](https://wicg.github.io/ua-client-hints/#sec-ch-ua-platform). Note that some (but not all) of these values can overlap with values in the [`os.type` and `os.name` attributes](./os.md). However, for consistency, the values in the `browser.platform` attribute should capture the exact value that the user agent provides.
*/
public const BROWSER_PLATFORM = 'browser.platform';
/**
* The consistency level of the query. Based on consistency values from [CQL](https://docs.datastax.com/en/cassandra-oss/3.0/cassandra/dml/dmlConfigConsistency.html).
*/
public const CASSANDRA_CONSISTENCY_LEVEL = 'cassandra.consistency.level';
/**
* The data center of the coordinating node for a query.
*/
public const CASSANDRA_COORDINATOR_DC = 'cassandra.coordinator.dc';
/**
* The ID of the coordinating node for a query.
*/
public const CASSANDRA_COORDINATOR_ID = 'cassandra.coordinator.id';
/**
* The fetch size used for paging, i.e. how many rows will be returned at once.
*/
public const CASSANDRA_PAGE_SIZE = 'cassandra.page.size';
/**
* Whether or not the query is idempotent.
*/
public const CASSANDRA_QUERY_IDEMPOTENT = 'cassandra.query.idempotent';
/**
* The number of times a query was speculatively executed. Not set or `0` if the query was not executed speculatively.
*/
public const CASSANDRA_SPECULATIVE_EXECUTION_COUNT = 'cassandra.speculative_execution.count';
/**
* The kind of action a pipeline run is performing.
*/
public const CICD_PIPELINE_ACTION_NAME = 'cicd.pipeline.action.name';
/**
* The human readable name of the pipeline within a CI/CD system.
*/
public const CICD_PIPELINE_NAME = 'cicd.pipeline.name';
/**
* The result of a pipeline run.
*/
public const CICD_PIPELINE_RESULT = 'cicd.pipeline.result';
/**
* The unique identifier of a pipeline run within a CI/CD system.
*/
public const CICD_PIPELINE_RUN_ID = 'cicd.pipeline.run.id';
/**
* The pipeline run goes through these states during its lifecycle.
*/
public const CICD_PIPELINE_RUN_STATE = 'cicd.pipeline.run.state';
/**
* The [URL](https://wikipedia.org/wiki/URL) of the pipeline run, providing the complete address in order to locate and identify the pipeline run.
*/
public const CICD_PIPELINE_RUN_URL_FULL = 'cicd.pipeline.run.url.full';
/**
* The human readable name of a task within a pipeline. Task here most closely aligns with a [computing process](https://wikipedia.org/wiki/Pipeline_(computing)) in a pipeline. Other terms for tasks include commands, steps, and procedures.
*/
public const CICD_PIPELINE_TASK_NAME = 'cicd.pipeline.task.name';
/**
* The unique identifier of a task run within a pipeline.
*/
public const CICD_PIPELINE_TASK_RUN_ID = 'cicd.pipeline.task.run.id';
/**
* The result of a task run.
*/
public const CICD_PIPELINE_TASK_RUN_RESULT = 'cicd.pipeline.task.run.result';
/**
* The [URL](https://wikipedia.org/wiki/URL) of the pipeline task run, providing the complete address in order to locate and identify the pipeline task run.
*/
public const CICD_PIPELINE_TASK_RUN_URL_FULL = 'cicd.pipeline.task.run.url.full';
/**
* The type of the task within a pipeline.
*/
public const CICD_PIPELINE_TASK_TYPE = 'cicd.pipeline.task.type';
/**
* The name of a component of the CICD system.
*/
public const CICD_SYSTEM_COMPONENT = 'cicd.system.component';
/**
* The unique identifier of a worker within a CICD system.
*/
public const CICD_WORKER_ID = 'cicd.worker.id';
/**
* The name of a worker within a CICD system.
*/
public const CICD_WORKER_NAME = 'cicd.worker.name';
/**
* The state of a CICD worker / agent.
*/
public const CICD_WORKER_STATE = 'cicd.worker.state';
/**
* The [URL](https://wikipedia.org/wiki/URL) of the worker, providing the complete address in order to locate and identify the worker.
*/
public const CICD_WORKER_URL_FULL = 'cicd.worker.url.full';
/**
* Client address - domain name if available without reverse DNS lookup; otherwise, IP address or Unix domain socket name.
* When observed from the server side, and when communicating through an intermediary, `client.address` SHOULD represent the client address behind any intermediaries, for example proxies, if it's available.
*/
public const CLIENT_ADDRESS = 'client.address';
/**
* Client port number.
* When observed from the server side, and when communicating through an intermediary, `client.port` SHOULD represent the client port behind any intermediaries, for example proxies, if it's available.
*/
public const CLIENT_PORT = 'client.port';
/**
* The cloud account ID the resource is assigned to.
*/
public const CLOUD_ACCOUNT_ID = 'cloud.account.id';
/**
* Cloud regions often have multiple, isolated locations known as zones to increase availability. Availability zone represents the zone where the resource is running.
*
* Availability zones are called "zones" on Alibaba Cloud and Google Cloud.
*/
public const CLOUD_AVAILABILITY_ZONE = 'cloud.availability_zone';
/**
* The cloud platform in use.
*
* The prefix of the service SHOULD match the one specified in `cloud.provider`.
*/
public const CLOUD_PLATFORM = 'cloud.platform';
/**
* Name of the cloud provider.
*/
public const CLOUD_PROVIDER = 'cloud.provider';
/**
* The geographical region within a cloud provider. When associated with a resource, this attribute specifies the region where the resource operates. When calling services or APIs deployed on a cloud, this attribute identifies the region where the called destination is deployed.
*
* Refer to your provider's docs to see the available regions, for example [Alibaba Cloud regions](https://www.alibabacloud.com/help/doc-detail/40654.htm), [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/global-infrastructure/geographies/), [Google Cloud regions](https://cloud.google.com/about/locations), or [Tencent Cloud regions](https://www.tencentcloud.com/document/product/213/6091).
*/
public const CLOUD_REGION = 'cloud.region';
/**
* Cloud provider-specific native identifier of the monitored cloud resource (e.g. an [ARN](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html) on AWS, a [fully qualified resource ID](https://learn.microsoft.com/rest/api/resources/resources/get-by-id) on Azure, a [full resource name](https://google.aip.dev/122#full-resource-names) on GCP)
*
* On some cloud providers, it may not be possible to determine the full ID at startup,
* so it may be necessary to set `cloud.resource_id` as a span attribute instead.
*
* The exact value to use for `cloud.resource_id` depends on the cloud provider.
* The following well-known definitions MUST be used if you set this attribute and they apply:
*
* - **AWS Lambda:** The function [ARN](https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html).
* Take care not to use the "invoked ARN" directly but replace any
* [alias suffix](https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html)
* with the resolved function version, as the same runtime instance may be invocable with
* multiple different aliases.
* - **GCP:** The [URI of the resource](https://cloud.google.com/iam/docs/full-resource-names)
* - **Azure:** The [Fully Qualified Resource ID](https://docs.microsoft.com/rest/api/resources/resources/get-by-id) of the invoked function,
* *not* the function app, having the form
* `/subscriptions/<SUBSCRIPTION_GUID>/resourceGroups/<RG>/providers/Microsoft.Web/sites/<FUNCAPP>/functions/<FUNC>`.
* This means that a span attribute MUST be used, as an Azure function app can host multiple functions that would usually share
* a TracerProvider.
*/
public const CLOUD_RESOURCE_ID = 'cloud.resource_id';
/**
* The [event_id](https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/spec.md#id) uniquely identifies the event.
*/
public const CLOUDEVENTS_EVENT_ID = 'cloudevents.event_id';
/**
* The [source](https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/spec.md#source-1) identifies the context in which an event happened.
*/
public const CLOUDEVENTS_EVENT_SOURCE = 'cloudevents.event_source';
/**
* The [version of the CloudEvents specification](https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/spec.md#specversion) which the event uses.
*/
public const CLOUDEVENTS_EVENT_SPEC_VERSION = 'cloudevents.event_spec_version';
/**
* The [subject](https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/spec.md#subject) of the event in the context of the event producer (identified by source).
*/
public const CLOUDEVENTS_EVENT_SUBJECT = 'cloudevents.event_subject';
/**
* The [event_type](https://github.com/cloudevents/spec/blob/v1.0.2/cloudevents/spec.md#type) contains a value describing the type of event related to the originating occurrence.
*/
public const CLOUDEVENTS_EVENT_TYPE = 'cloudevents.event_type';
/**
* Deprecated, use `code.column.number`
*
* @deprecated {"note": "Replaced by `code.column.number`.", "reason": "renamed", "renamed_to": "code.column.number"}
*/
public const CODE_COLUMN = 'code.column';
/**
* The column number in `code.file.path` best representing the operation. It SHOULD point within the code unit named in `code.function.name`. This attribute MUST NOT be used on the Profile signal since the data is already captured in 'message Line'. This constraint is imposed to prevent redundancy and maintain data integrity.
*/
public const CODE_COLUMN_NUMBER = 'code.column.number';
/**
* The source code file name that identifies the code unit as uniquely as possible (preferably an absolute file path). This attribute MUST NOT be used on the Profile signal since the data is already captured in 'message Function'. This constraint is imposed to prevent redundancy and maintain data integrity.
*/
public const CODE_FILE_PATH = 'code.file.path';
/**
* Deprecated, use `code.file.path` instead
*
* @deprecated {"note": "Replaced by `code.file.path`.", "reason": "renamed", "renamed_to": "code.file.path"}
*/
public const CODE_FILEPATH = 'code.filepath';
/**
* Deprecated, use `code.function.name` instead
*
* @deprecated {"note": "Value should be included in `code.function.name` which is expected to be a fully-qualified name.\n", "reason": "uncategorized"}
*/
public const CODE_FUNCTION = 'code.function';
/**
* The method or function fully-qualified name without arguments. The value should fit the natural representation of the language runtime, which is also likely the same used within `code.stacktrace` attribute value. This attribute MUST NOT be used on the Profile signal since the data is already captured in 'message Function'. This constraint is imposed to prevent redundancy and maintain data integrity.
*
* Values and format depends on each language runtime, thus it is impossible to provide an exhaustive list of examples.
* The values are usually the same (or prefixes of) the ones found in native stack trace representation stored in
* `code.stacktrace` without information on arguments.
*
* Examples:
*
* - Java method: `com.example.MyHttpService.serveRequest`
* - Java anonymous class method: `com.mycompany.Main$1.myMethod`
* - Java lambda method: `com.mycompany.Main$$Lambda/0x0000748ae4149c00.myMethod`
* - PHP function: `GuzzleHttp\Client::transfer`
* - Go function: `github.com/my/repo/pkg.foo.func5`
* - Elixir: `OpenTelemetry.Ctx.new`
* - Erlang: `opentelemetry_ctx:new`
* - Rust: `playground::my_module::my_cool_func`
* - C function: `fopen`
*/
public const CODE_FUNCTION_NAME = 'code.function.name';
/**
* The line number in `code.file.path` best representing the operation. It SHOULD point within the code unit named in `code.function.name`. This attribute MUST NOT be used on the Profile signal since the data is already captured in 'message Line'. This constraint is imposed to prevent redundancy and maintain data integrity.
*/
public const CODE_LINE_NUMBER = 'code.line.number';
/**
* Deprecated, use `code.line.number` instead
*
* @deprecated {"note": "Replaced by `code.line.number`.", "reason": "renamed", "renamed_to": "code.line.number"}
*/
public const CODE_LINENO = 'code.lineno';
/**
* Deprecated, namespace is now included into `code.function.name`
*
* @deprecated {"note": "Value should be included in `code.function.name` which is expected to be a fully-qualified name.\n", "reason": "uncategorized"}
*/
public const CODE_NAMESPACE = 'code.namespace';
/**
* A stacktrace as a string in the natural representation for the language runtime. The representation is identical to [`exception.stacktrace`](/docs/exceptions/exceptions-spans.md#stacktrace-representation). This attribute MUST NOT be used on the Profile signal since the data is already captured in 'message Location'. This constraint is imposed to prevent redundancy and maintain data integrity.
*/
public const CODE_STACKTRACE = 'code.stacktrace';
/**
* The command used to run the container (i.e. the command name).
*
* If using embedded credentials or sensitive data, it is recommended to remove them to prevent potential leakage.
*/
public const CONTAINER_COMMAND = 'container.command';
/**
* All the command arguments (including the command/executable itself) run by the container.
*/
public const CONTAINER_COMMAND_ARGS = 'container.command_args';
/**
* The full command run by the container as a single string representing the full command.
*/
public const CONTAINER_COMMAND_LINE = 'container.command_line';
/**
* Deprecated, use `cpu.mode` instead.
*
* @deprecated {"note": "Replaced by `cpu.mode`.", "reason": "renamed", "renamed_to": "cpu.mode"}
*/
public const CONTAINER_CPU_STATE = 'container.cpu.state';
/**
* The name of the CSI ([Container Storage Interface](https://github.com/container-storage-interface/spec)) plugin used by the volume.
*
* This can sometimes be referred to as a "driver" in CSI implementations. This should represent the `name` field of the GetPluginInfo RPC.
*/
public const CONTAINER_CSI_PLUGIN_NAME = 'container.csi.plugin.name';
/**
* The unique volume ID returned by the CSI ([Container Storage Interface](https://github.com/container-storage-interface/spec)) plugin.
*
* This can sometimes be referred to as a "volume handle" in CSI implementations. This should represent the `Volume.volume_id` field in CSI spec.
*/
public const CONTAINER_CSI_VOLUME_ID = 'container.csi.volume.id';
/**
* Container ID. Usually a UUID, as for example used to [identify Docker containers](https://docs.docker.com/engine/containers/run/#container-identification). The UUID might be abbreviated.
*/
public const CONTAINER_ID = 'container.id';
/**
* Runtime specific image identifier. Usually a hash algorithm followed by a UUID.
*
* Docker defines a sha256 of the image id; `container.image.id` corresponds to the `Image` field from the Docker container inspect [API](https://docs.docker.com/engine/api/v1.43/#tag/Container/operation/ContainerInspect) endpoint.
* K8s defines a link to the container registry repository with digest `"imageID": "registry.azurecr.io /namespace/service/dockerfile@sha256:bdeabd40c3a8a492eaf9e8e44d0ebbb84bac7ee25ac0cf8a7159d25f62555625"`.
* The ID is assigned by the container runtime and can vary in different environments. Consider using `oci.manifest.digest` if it is important to identify the same image in different environments/runtimes.
*/
public const CONTAINER_IMAGE_ID = 'container.image.id';
/**
* Name of the image the container was built on.
*/
public const CONTAINER_IMAGE_NAME = 'container.image.name';
/**
* Repo digests of the container image as provided by the container runtime.
*
* [Docker](https://docs.docker.com/engine/api/v1.43/#tag/Image/operation/ImageInspect) and [CRI](https://github.com/kubernetes/cri-api/blob/c75ef5b473bbe2d0a4fc92f82235efd665ea8e9f/pkg/apis/runtime/v1/api.proto#L1237-L1238) report those under the `RepoDigests` field.
*/
public const CONTAINER_IMAGE_REPO_DIGESTS = 'container.image.repo_digests';
/**
* Container image tags. An example can be found in [Docker Image Inspect](https://docs.docker.com/engine/api/v1.43/#tag/Image/operation/ImageInspect). Should be only the `<tag>` section of the full name for example from `registry.example.com/my-org/my-image:<tag>`.
*/
public const CONTAINER_IMAGE_TAGS = 'container.image.tags';
/**
* Container labels, `<key>` being the label name, the value being the label value.
*
* For example, a docker container label `app` with value `nginx` SHOULD be recorded as the `container.label.app` attribute with value `"nginx"`.
*/
public const CONTAINER_LABEL = 'container.label';
/**
* Deprecated, use `container.label` instead.
*
* @deprecated {"note": "Replaced by `container.label`.", "reason": "renamed", "renamed_to": "container.label"}
*/
public const CONTAINER_LABELS = 'container.labels';
/**
* Container name used by container runtime.
*/
public const CONTAINER_NAME = 'container.name';
/**
* The container runtime managing this container.
*/
public const CONTAINER_RUNTIME = 'container.runtime';
/**
* The logical CPU number [0..n-1]
*/
public const CPU_LOGICAL_NUMBER = 'cpu.logical_number';
/**
* The mode of the CPU
*/
public const CPU_MODE = 'cpu.mode';
/**
* Value of the garbage collector collection generation.
*/
public const CPYTHON_GC_GENERATION = 'cpython.gc.generation';
/**
* Deprecated, use `cassandra.consistency.level` instead.
*
* @deprecated {"note": "Replaced by `cassandra.consistency.level`.", "reason": "renamed", "renamed_to": "cassandra.consistency.level"}
*/
public const DB_CASSANDRA_CONSISTENCY_LEVEL = 'db.cassandra.consistency_level';
/**
* Deprecated, use `cassandra.coordinator.dc` instead.
*
* @deprecated {"note": "Replaced by `cassandra.coordinator.dc`.", "reason": "renamed", "renamed_to": "cassandra.coordinator.dc"}
*/
public const DB_CASSANDRA_COORDINATOR_DC = 'db.cassandra.coordinator.dc';
/**
* Deprecated, use `cassandra.coordinator.id` instead.
*
* @deprecated {"note": "Replaced by `cassandra.coordinator.id`.", "reason": "renamed", "renamed_to": "cassandra.coordinator.id"}
*/
public const DB_CASSANDRA_COORDINATOR_ID = 'db.cassandra.coordinator.id';
/**
* Deprecated, use `cassandra.query.idempotent` instead.
*
* @deprecated {"note": "Replaced by `cassandra.query.idempotent`.", "reason": "renamed", "renamed_to": "cassandra.query.idempotent"}
*/
public const DB_CASSANDRA_IDEMPOTENCE = 'db.cassandra.idempotence';
/**
* Deprecated, use `cassandra.page.size` instead.
*
* @deprecated {"note": "Replaced by `cassandra.page.size`.", "reason": "renamed", "renamed_to": "cassandra.page.size"}
*/
public const DB_CASSANDRA_PAGE_SIZE = 'db.cassandra.page_size';
/**
* Deprecated, use `cassandra.speculative_execution.count` instead.
*
* @deprecated {"note": "Replaced by `cassandra.speculative_execution.count`.", "reason": "renamed", "renamed_to": "cassandra.speculative_execution.count"}
*/
public const DB_CASSANDRA_SPECULATIVE_EXECUTION_COUNT = 'db.cassandra.speculative_execution_count';
/**
* Deprecated, use `db.collection.name` instead.
*
* @deprecated {"note": "Replaced by `db.collection.name`.", "reason": "renamed", "renamed_to": "db.collection.name"}
*/
public const DB_CASSANDRA_TABLE = 'db.cassandra.table';
/**
* The name of the connection pool; unique within the instrumented application. In case the connection pool implementation doesn't provide a name, instrumentation SHOULD use a combination of parameters that would make the name unique, for example, combining attributes `server.address`, `server.port`, and `db.namespace`, formatted as `server.address:server.port/db.namespace`. Instrumentations that generate connection pool name following different patterns SHOULD document it.
*/
public const DB_CLIENT_CONNECTION_POOL_NAME = 'db.client.connection.pool.name';
/**
* The state of a connection in the pool
*/
public const DB_CLIENT_CONNECTION_STATE = 'db.client.connection.state';
/**
* Deprecated, use `db.client.connection.pool.name` instead.
*
* @deprecated {"note": "Replaced by `db.client.connection.pool.name`.", "reason": "renamed", "renamed_to": "db.client.connection.pool.name"}
*/
public const DB_CLIENT_CONNECTIONS_POOL_NAME = 'db.client.connections.pool.name';
/**
* Deprecated, use `db.client.connection.state` instead.