-
Notifications
You must be signed in to change notification settings - Fork 824
/
experimental_attributes.ts
7148 lines (6267 loc) · 267 KB
/
experimental_attributes.ts
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
/*
* Copyright The OpenTelemetry Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//----------------------------------------------------------------------------------------------------------
// DO NOT EDIT, this is an Auto-generated file from scripts/semconv/templates/registry/stable/attributes.ts.j2
//----------------------------------------------------------------------------------------------------------
/**
* The ID of a running ECS task. The ID **MUST** be extracted from `task.arn`.
*
* @example 10838bed-421f-43ef-870a-f43feacbbb5b
*
* @example 23ebb8ac-c18f-46c6-8bbe-d55d0e37cfbd
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_ECS_TASK_ID = 'aws.ecs.task.id' as const;
/**
* 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).
*
* @example 33
*
* @example 32
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_ANDROID_OS_API_LEVEL = 'android.os.api_level' as const;
/**
* Deprecated use the `device.app.lifecycle` event definition including `android.state` as a payload field instead.
*
* @note 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.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_ANDROID_STATE = 'android.state' as const;
/**
* Enum value "background" for attribute {@link ATTR_ANDROID_STATE}.
*/
export const ANDROID_STATE_VALUE_BACKGROUND = "background" as const;
/**
* Enum value "created" for attribute {@link ATTR_ANDROID_STATE}.
*/
export const ANDROID_STATE_VALUE_CREATED = "created" as const;
/**
* Enum value "foreground" for attribute {@link ATTR_ANDROID_STATE}.
*/
export const ANDROID_STATE_VALUE_FOREGROUND = "foreground" as const;
/**
* 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.
*
* @example golang-binary-amd64-v0.1.0.attestation
*
* @example docker-image-amd64-v0.1.0.intoto.json1
*
* @example release-1.tar.gz.attestation
*
* @example file-name-package.tar.gz.intoto.json1
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_ARTIFACT_ATTESTATION_FILENAME = 'artifact.attestation.filename' as const;
/**
* 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 also refer to this as the [digest](https://github.com/in-toto/attestation/blob/main/spec/README.md#in-toto-attestation-framework-spec).
*
* @example 1b31dfcd5b7f9267bf2ff47651df1cfb9147b9e4df1f335accf65b4cda498408
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_ARTIFACT_ATTESTATION_HASH = 'artifact.attestation.hash' as const;
/**
* The id of the build [software attestation](https://slsa.dev/attestation-model).
*
* @example 123
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_ARTIFACT_ATTESTATION_ID = 'artifact.attestation.id' as const;
/**
* 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.
*
* @example golang-binary-amd64-v0.1.0
*
* @example docker-image-amd64-v0.1.0
*
* @example release-1.tar.gz
*
* @example file-name-package.tar.gz
*
* @note 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.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_ARTIFACT_FILENAME = 'artifact.filename' as const;
/**
* 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.
*
* @example 9ff4c52759e2c4ac70b7d517bc7fcdc1cda631ca0045271ddd1b192544f8a3e9
*
* @note 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.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_ARTIFACT_HASH = 'artifact.hash' as const;
/**
* 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.
*
* @example pkg:github/package-url/purl-spec@1209109710924
*
* @example pkg:npm/[email protected]
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_ARTIFACT_PURL = 'artifact.purl' as const;
/**
* The version of the artifact.
*
* @example v0.1.0
*
* @example 1.2.1
*
* @example 122691-build
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_ARTIFACT_VERSION = 'artifact.version' as const;
/**
* The JSON-serialized value of each item in the `AttributeDefinitions` request field.
*
* @example { "AttributeName": "string", "AttributeType": "string" }
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_ATTRIBUTE_DEFINITIONS = 'aws.dynamodb.attribute_definitions' as const;
/**
* The value of the `AttributesToGet` request parameter.
*
* @example lives
*
* @example id
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_ATTRIBUTES_TO_GET = 'aws.dynamodb.attributes_to_get' as const;
/**
* The value of the `ConsistentRead` request parameter.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_CONSISTENT_READ = 'aws.dynamodb.consistent_read' as const;
/**
* The JSON-serialized value of each item in the `ConsumedCapacity` response field.
*
* @example { "CapacityUnits": number, "GlobalSecondaryIndexes": { "string" : { "CapacityUnits": number, "ReadCapacityUnits": number, "WriteCapacityUnits": number } }, "LocalSecondaryIndexes": { "string" : { "CapacityUnits": number, "ReadCapacityUnits": number, "WriteCapacityUnits": number } }, "ReadCapacityUnits": number, "Table": { "CapacityUnits": number, "ReadCapacityUnits": number, "WriteCapacityUnits": number }, "TableName": "string", "WriteCapacityUnits": number }
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_CONSUMED_CAPACITY = 'aws.dynamodb.consumed_capacity' as const;
/**
* The value of the `Count` response parameter.
*
* @example 10
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_COUNT = 'aws.dynamodb.count' as const;
/**
* The value of the `ExclusiveStartTableName` request parameter.
*
* @example Users
*
* @example CatsTable
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_EXCLUSIVE_START_TABLE = 'aws.dynamodb.exclusive_start_table' as const;
/**
* The JSON-serialized value of each item in the `GlobalSecondaryIndexUpdates` request field.
*
* @example { "Create": { "IndexName": "string", "KeySchema": [ { "AttributeName": "string", "KeyType": "string" } ], "Projection": { "NonKeyAttributes": [ "string" ], "ProjectionType": "string" }, "ProvisionedThroughput": { "ReadCapacityUnits": number, "WriteCapacityUnits": number } }
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_GLOBAL_SECONDARY_INDEX_UPDATES = 'aws.dynamodb.global_secondary_index_updates' as const;
/**
* The JSON-serialized value of each item of the `GlobalSecondaryIndexes` request field
*
* @example { "IndexName": "string", "KeySchema": [ { "AttributeName": "string", "KeyType": "string" } ], "Projection": { "NonKeyAttributes": [ "string" ], "ProjectionType": "string" }, "ProvisionedThroughput": { "ReadCapacityUnits": number, "WriteCapacityUnits": number } }
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_GLOBAL_SECONDARY_INDEXES = 'aws.dynamodb.global_secondary_indexes' as const;
/**
* The value of the `IndexName` request parameter.
*
* @example name_to_group
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_INDEX_NAME = 'aws.dynamodb.index_name' as const;
/**
* The JSON-serialized value of the `ItemCollectionMetrics` response field.
*
* @example { "string" : [ { "ItemCollectionKey": { "string" : { "B": blob, "BOOL": boolean, "BS": [ blob ], "L": [ "AttributeValue" ], "M": { "string" : "AttributeValue" }, "N": "string", "NS": [ "string" ], "NULL": boolean, "S": "string", "SS": [ "string" ] } }, "SizeEstimateRangeGB": [ number ] } ] }
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_ITEM_COLLECTION_METRICS = 'aws.dynamodb.item_collection_metrics' as const;
/**
* The value of the `Limit` request parameter.
*
* @example 10
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_LIMIT = 'aws.dynamodb.limit' as const;
/**
* The JSON-serialized value of each item of the `LocalSecondaryIndexes` request field.
*
* @example { "IndexArn": "string", "IndexName": "string", "IndexSizeBytes": number, "ItemCount": number, "KeySchema": [ { "AttributeName": "string", "KeyType": "string" } ], "Projection": { "NonKeyAttributes": [ "string" ], "ProjectionType": "string" } }
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_LOCAL_SECONDARY_INDEXES = 'aws.dynamodb.local_secondary_indexes' as const;
/**
* The value of the `ProjectionExpression` request parameter.
*
* @example Title
*
* @example Title, Price, Color
*
* @example Title, Description, RelatedItems, ProductReviews
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_PROJECTION = 'aws.dynamodb.projection' as const;
/**
* The value of the `ProvisionedThroughput.ReadCapacityUnits` request parameter.
*
* @example 1.0
*
* @example 2.0
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_PROVISIONED_READ_CAPACITY = 'aws.dynamodb.provisioned_read_capacity' as const;
/**
* The value of the `ProvisionedThroughput.WriteCapacityUnits` request parameter.
*
* @example 1.0
*
* @example 2.0
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_PROVISIONED_WRITE_CAPACITY = 'aws.dynamodb.provisioned_write_capacity' as const;
/**
* The value of the `ScanIndexForward` request parameter.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_SCAN_FORWARD = 'aws.dynamodb.scan_forward' as const;
/**
* The value of the `ScannedCount` response parameter.
*
* @example 50
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_SCANNED_COUNT = 'aws.dynamodb.scanned_count' as const;
/**
* The value of the `Segment` request parameter.
*
* @example 10
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_SEGMENT = 'aws.dynamodb.segment' as const;
/**
* The value of the `Select` request parameter.
*
* @example ALL_ATTRIBUTES
*
* @example COUNT
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_SELECT = 'aws.dynamodb.select' as const;
/**
* The number of items in the `TableNames` response parameter.
*
* @example 20
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_TABLE_COUNT = 'aws.dynamodb.table_count' as const;
/**
* The keys in the `RequestItems` object field.
*
* @example Users
*
* @example Cats
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_TABLE_NAMES = 'aws.dynamodb.table_names' as const;
/**
* The value of the `TotalSegments` request parameter.
*
* @example 100
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_DYNAMODB_TOTAL_SEGMENTS = 'aws.dynamodb.total_segments' as const;
/**
* The ARN of an [ECS cluster](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/clusters.html).
*
* @example arn:aws:ecs:us-west-2:123456789123:cluster/my-cluster
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_ECS_CLUSTER_ARN = 'aws.ecs.cluster.arn' as const;
/**
* The Amazon Resource Name (ARN) of an [ECS container instance](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ECS_instances.html).
*
* @example arn:aws:ecs:us-west-1:123456789123:container/32624152-9086-4f0e-acae-1a75b14fe4d9
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_ECS_CONTAINER_ARN = 'aws.ecs.container.arn' as const;
/**
* The [launch type](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_types.html) for an ECS task.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_ECS_LAUNCHTYPE = 'aws.ecs.launchtype' as const;
/**
* Enum value "ec2" for attribute {@link ATTR_AWS_ECS_LAUNCHTYPE}.
*/
export const AWS_ECS_LAUNCHTYPE_VALUE_EC2 = "ec2" as const;
/**
* Enum value "fargate" for attribute {@link ATTR_AWS_ECS_LAUNCHTYPE}.
*/
export const AWS_ECS_LAUNCHTYPE_VALUE_FARGATE = "fargate" as const;
/**
* The ARN of a running [ECS task](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-account-settings.html#ecs-resource-ids).
*
* @example arn:aws:ecs:us-west-1:123456789123:task/10838bed-421f-43ef-870a-f43feacbbb5b
*
* @example arn:aws:ecs:us-west-1:123456789123:task/my-cluster/task-id/23ebb8ac-c18f-46c6-8bbe-d55d0e37cfbd
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_ECS_TASK_ARN = 'aws.ecs.task.arn' as const;
/**
* 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.
*
* @example opentelemetry-family
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_ECS_TASK_FAMILY = 'aws.ecs.task.family' as const;
/**
* The revision for the task definition used to create the ECS task.
*
* @example 8
*
* @example 26
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_ECS_TASK_REVISION = 'aws.ecs.task.revision' as const;
/**
* The ARN of an EKS cluster.
*
* @example arn:aws:ecs:us-west-2:123456789123:cluster/my-cluster
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_EKS_CLUSTER_ARN = 'aws.eks.cluster.arn' as const;
/**
* 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).
*
* @example arn:aws:lambda:us-east-1:123456:function:myfunction:myalias
*
* @note This may be different from `cloud.resource_id` if an alias is involved.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_LAMBDA_INVOKED_ARN = 'aws.lambda.invoked_arn' as const;
/**
* The Amazon Resource Name(s) (ARN) of the AWS log group(s).
*
* @example arn:aws:logs:us-west-1:123456789012:log-group:/aws/my/group:*
*
* @note See the [log group ARN format documentation](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/iam-access-control-overview-cwl.html#CWL_ARN_Format).
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_LOG_GROUP_ARNS = 'aws.log.group.arns' as const;
/**
* The name(s) of the AWS log group(s) an application is writing to.
*
* @example /aws/lambda/my-function
*
* @example opentelemetry-service
*
* @note 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.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_LOG_GROUP_NAMES = 'aws.log.group.names' as const;
/**
* The ARN(s) of the AWS log stream(s).
*
* @example arn:aws:logs:us-west-1:123456789012:log-group:/aws/my/group:log-stream:logs/main/10838bed-421f-43ef-870a-f43feacbbb5b
*
* @note 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.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_LOG_STREAM_ARNS = 'aws.log.stream.arns' as const;
/**
* The name(s) of the AWS log stream(s) an application is writing to.
*
* @example logs/main/10838bed-421f-43ef-870a-f43feacbbb5b
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_LOG_STREAM_NAMES = 'aws.log.stream.names' as const;
/**
* The AWS request ID as returned in the response headers `x-amz-request-id` or `x-amz-requestid`.
*
* @example 79b9da39-b7ae-508a-a6bc-864b2829c622
*
* @example C9ER4AJX75574TDJ
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_REQUEST_ID = 'aws.request_id' as const;
/**
* 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.
*
* @example some-bucket-name
*
* @note 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`.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_S3_BUCKET = 'aws.s3.bucket' as const;
/**
* The source object (in the form `bucket`/`key`) for the copy operation.
*
* @example someFile.yml
*
* @note 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)
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_S3_COPY_SOURCE = 'aws.s3.copy_source' as const;
/**
* The delete request container that specifies the objects to be deleted.
*
* @example Objects=[{Key=string,VersionId=string},{Key=string,VersionId=string}],Quiet=boolean
*
* @note 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).
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_S3_DELETE = 'aws.s3.delete' as const;
/**
* 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.
*
* @example someFile.yml
*
* @note 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)
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_S3_KEY = 'aws.s3.key' as const;
/**
* The part number of the part being uploaded in a multipart-upload operation. This is a positive integer between 1 and 10,000.
*
* @example 3456
*
* @note 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).
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_S3_PART_NUMBER = 'aws.s3.part_number' as const;
/**
* Upload ID that identifies the multipart upload.
*
* @example dfRtDYWFbkRONycy.Yxwh66Yjlx.cph0gtNBtJ
*
* @note 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)
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AWS_S3_UPLOAD_ID = 'aws.s3.upload_id' as const;
/**
* The unique identifier of the service request. It's generated by the Azure service and returned with the response.
*
* @example 00000000-0000-0000-0000-000000000000
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_AZ_SERVICE_REQUEST_ID = 'az.service_request_id' as const;
/**
* Array of brand name and version separated by a space
*
* @example Not A;Brand 99
*
* @example Chromium 99
*
* @example Chrome 99
*
* @note This value is intended to be taken from the [UA client hints API](https://wicg.github.io/ua-client-hints/#interface) (`navigator.userAgentData.brands`).
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_BROWSER_BRANDS = 'browser.brands' as const;
/**
* Preferred language of the user using the browser
*
* @example en
*
* @example en-US
*
* @example fr
*
* @example fr-FR
*
* @note This value is intended to be taken from the Navigator API `navigator.language`.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_BROWSER_LANGUAGE = 'browser.language' as const;
/**
* A boolean that is true if the browser is running on a mobile device
*
* @note 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.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_BROWSER_MOBILE = 'browser.mobile' as const;
/**
* The platform on which the browser is running
*
* @example Windows
*
* @example macOS
*
* @example Android
*
* @note 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.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_BROWSER_PLATFORM = 'browser.platform' as const;
/**
* The human readable name of the pipeline within a CI/CD system.
*
* @example Build and Test
*
* @example Lint
*
* @example Deploy Go Project
*
* @example deploy_to_environment
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_CICD_PIPELINE_NAME = 'cicd.pipeline.name' as const;
/**
* The unique identifier of a pipeline run within a CI/CD system.
*
* @example 120912
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_CICD_PIPELINE_RUN_ID = 'cicd.pipeline.run.id' as const;
/**
* The human readable name of a task within a pipeline. Task here most closely aligns with a [computing process](https://en.wikipedia.org/wiki/Pipeline_(computing)) in a pipeline. Other terms for tasks include commands, steps, and procedures.
*
* @example Run GoLang Linter
*
* @example Go Build
*
* @example go-test
*
* @example deploy_binary
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_CICD_PIPELINE_TASK_NAME = 'cicd.pipeline.task.name' as const;
/**
* The unique identifier of a task run within a pipeline.
*
* @example 12097
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_CICD_PIPELINE_TASK_RUN_ID = 'cicd.pipeline.task.run.id' as const;
/**
* The [URL](https://en.wikipedia.org/wiki/URL) of the pipeline run providing the complete address in order to locate and identify the pipeline run.
*
* @example https://github.com/open-telemetry/semantic-conventions/actions/runs/9753949763/job/26920038674?pr=1075
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_CICD_PIPELINE_TASK_RUN_URL_FULL = 'cicd.pipeline.task.run.url.full' as const;
/**
* The type of the task within a pipeline.
*
* @example build
*
* @example test
*
* @example deploy
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_CICD_PIPELINE_TASK_TYPE = 'cicd.pipeline.task.type' as const;
/**
* Enum value "build" for attribute {@link ATTR_CICD_PIPELINE_TASK_TYPE}.
*/
export const CICD_PIPELINE_TASK_TYPE_VALUE_BUILD = "build" as const;
/**
* Enum value "deploy" for attribute {@link ATTR_CICD_PIPELINE_TASK_TYPE}.
*/
export const CICD_PIPELINE_TASK_TYPE_VALUE_DEPLOY = "deploy" as const;
/**
* Enum value "test" for attribute {@link ATTR_CICD_PIPELINE_TASK_TYPE}.
*/
export const CICD_PIPELINE_TASK_TYPE_VALUE_TEST = "test" as const;
/**
* The cloud account ID the resource is assigned to.
*
* @example 111111111111
*
* @example opentelemetry
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_CLOUD_ACCOUNT_ID = 'cloud.account.id' as const;
/**
* Cloud regions often have multiple, isolated locations known as zones to increase availability. Availability zone represents the zone where the resource is running.
*
* @example us-east-1c
*
* @note Availability zones are called "zones" on Alibaba Cloud and Google Cloud.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_CLOUD_AVAILABILITY_ZONE = 'cloud.availability_zone' as const;
/**
* The cloud platform in use.
*
* @note The prefix of the service **SHOULD** match the one specified in `cloud.provider`.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_CLOUD_PLATFORM = 'cloud.platform' as const;
/**
* Enum value "alibaba_cloud_ecs" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_ALIBABA_CLOUD_ECS = "alibaba_cloud_ecs" as const;
/**
* Enum value "alibaba_cloud_fc" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_ALIBABA_CLOUD_FC = "alibaba_cloud_fc" as const;
/**
* Enum value "alibaba_cloud_openshift" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_ALIBABA_CLOUD_OPENSHIFT = "alibaba_cloud_openshift" as const;
/**
* Enum value "aws_app_runner" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AWS_APP_RUNNER = "aws_app_runner" as const;
/**
* Enum value "aws_ec2" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AWS_EC2 = "aws_ec2" as const;
/**
* Enum value "aws_ecs" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AWS_ECS = "aws_ecs" as const;
/**
* Enum value "aws_eks" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AWS_EKS = "aws_eks" as const;
/**
* Enum value "aws_elastic_beanstalk" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AWS_ELASTIC_BEANSTALK = "aws_elastic_beanstalk" as const;
/**
* Enum value "aws_lambda" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AWS_LAMBDA = "aws_lambda" as const;
/**
* Enum value "aws_openshift" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AWS_OPENSHIFT = "aws_openshift" as const;
/**
* Enum value "azure_aks" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AZURE_AKS = "azure_aks" as const;
/**
* Enum value "azure_app_service" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AZURE_APP_SERVICE = "azure_app_service" as const;
/**
* Enum value "azure_container_apps" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AZURE_CONTAINER_APPS = "azure_container_apps" as const;
/**
* Enum value "azure_container_instances" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AZURE_CONTAINER_INSTANCES = "azure_container_instances" as const;
/**
* Enum value "azure_functions" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AZURE_FUNCTIONS = "azure_functions" as const;
/**
* Enum value "azure_openshift" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AZURE_OPENSHIFT = "azure_openshift" as const;
/**
* Enum value "azure_vm" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_AZURE_VM = "azure_vm" as const;
/**
* Enum value "gcp_app_engine" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_GCP_APP_ENGINE = "gcp_app_engine" as const;
/**
* Enum value "gcp_bare_metal_solution" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_GCP_BARE_METAL_SOLUTION = "gcp_bare_metal_solution" as const;
/**
* Enum value "gcp_cloud_functions" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_GCP_CLOUD_FUNCTIONS = "gcp_cloud_functions" as const;
/**
* Enum value "gcp_cloud_run" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_GCP_CLOUD_RUN = "gcp_cloud_run" as const;
/**
* Enum value "gcp_compute_engine" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_GCP_COMPUTE_ENGINE = "gcp_compute_engine" as const;
/**
* Enum value "gcp_kubernetes_engine" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_GCP_KUBERNETES_ENGINE = "gcp_kubernetes_engine" as const;
/**
* Enum value "gcp_openshift" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_GCP_OPENSHIFT = "gcp_openshift" as const;
/**
* Enum value "ibm_cloud_openshift" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_IBM_CLOUD_OPENSHIFT = "ibm_cloud_openshift" as const;
/**
* Enum value "tencent_cloud_cvm" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_TENCENT_CLOUD_CVM = "tencent_cloud_cvm" as const;
/**
* Enum value "tencent_cloud_eks" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_TENCENT_CLOUD_EKS = "tencent_cloud_eks" as const;
/**
* Enum value "tencent_cloud_scf" for attribute {@link ATTR_CLOUD_PLATFORM}.
*/
export const CLOUD_PLATFORM_VALUE_TENCENT_CLOUD_SCF = "tencent_cloud_scf" as const;
/**
* Name of the cloud provider.
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_CLOUD_PROVIDER = 'cloud.provider' as const;
/**
* Enum value "alibaba_cloud" for attribute {@link ATTR_CLOUD_PROVIDER}.
*/
export const CLOUD_PROVIDER_VALUE_ALIBABA_CLOUD = "alibaba_cloud" as const;
/**
* Enum value "aws" for attribute {@link ATTR_CLOUD_PROVIDER}.
*/
export const CLOUD_PROVIDER_VALUE_AWS = "aws" as const;
/**
* Enum value "azure" for attribute {@link ATTR_CLOUD_PROVIDER}.
*/
export const CLOUD_PROVIDER_VALUE_AZURE = "azure" as const;
/**
* Enum value "gcp" for attribute {@link ATTR_CLOUD_PROVIDER}.
*/
export const CLOUD_PROVIDER_VALUE_GCP = "gcp" as const;
/**
* Enum value "heroku" for attribute {@link ATTR_CLOUD_PROVIDER}.
*/
export const CLOUD_PROVIDER_VALUE_HEROKU = "heroku" as const;
/**
* Enum value "ibm_cloud" for attribute {@link ATTR_CLOUD_PROVIDER}.
*/
export const CLOUD_PROVIDER_VALUE_IBM_CLOUD = "ibm_cloud" as const;
/**
* Enum value "tencent_cloud" for attribute {@link ATTR_CLOUD_PROVIDER}.
*/
export const CLOUD_PROVIDER_VALUE_TENCENT_CLOUD = "tencent_cloud" as const;
/**
* The geographical region the resource is running.
*
* @example us-central1
*
* @example us-east-1
*
* @note 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).
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_CLOUD_REGION = 'cloud.region' as const;
/**
* 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://cloud.google.com/apis/design/resource_names#full_resource_name) on GCP)
*
* @example arn:aws:lambda:REGION:ACCOUNT_ID:function:my-function
*
* @example //run.googleapis.com/projects/PROJECT_ID/locations/LOCATION_ID/services/SERVICE_ID
*
* @example /subscriptions/<SUBSCIPTION_GUID>/resourceGroups/<RG>/providers/Microsoft.Web/sites/<FUNCAPP>/functions/<FUNC>
*
* @note 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.