type go.opentelemetry.io/otel/attribute.KeyValue

728 uses

	go.opentelemetry.io/otel/attribute (current package)
		filter.go#L11: type Filter func(KeyValue) bool
		filter.go#L19: 		return func(KeyValue) bool { return false }
		filter.go#L26: 	return func(kv KeyValue) bool {
		filter.go#L38: 		return func(KeyValue) bool { return true }
		filter.go#L45: 	return func(kv KeyValue) bool {
		hash.go#L36: func hashKVs(kvs []KeyValue) uint64 {
		hash.go#L45: func hashKV(h xxhash.Hash, kv KeyValue) xxhash.Hash {
		iterator.go#L19: 	current KeyValue
		iterator.go#L25: 	attr KeyValue
		iterator.go#L39: func (i *Iterator) Label() KeyValue {
		iterator.go#L45: func (i *Iterator) Attribute() KeyValue {
		iterator.go#L54: func (i *Iterator) IndexedLabel() (int, KeyValue) {
		iterator.go#L60: func (i *Iterator) IndexedAttribute() (int, KeyValue) {
		iterator.go#L72: func (i *Iterator) ToSlice() []KeyValue {
		iterator.go#L78: 	slice := make([]KeyValue, 0, l)
		iterator.go#L144: func (m *MergeIterator) Label() KeyValue {
		iterator.go#L149: func (m *MergeIterator) Attribute() KeyValue {
		key.go#L14: func (k Key) Bool(v bool) KeyValue {
		key.go#L15: 	return KeyValue{
		key.go#L25: func (k Key) BoolSlice(v []bool) KeyValue {
		key.go#L26: 	return KeyValue{
		key.go#L36: func (k Key) Int(v int) KeyValue {
		key.go#L37: 	return KeyValue{
		key.go#L47: func (k Key) IntSlice(v []int) KeyValue {
		key.go#L48: 	return KeyValue{
		key.go#L58: func (k Key) Int64(v int64) KeyValue {
		key.go#L59: 	return KeyValue{
		key.go#L69: func (k Key) Int64Slice(v []int64) KeyValue {
		key.go#L70: 	return KeyValue{
		key.go#L80: func (k Key) Float64(v float64) KeyValue {
		key.go#L81: 	return KeyValue{
		key.go#L91: func (k Key) Float64Slice(v []float64) KeyValue {
		key.go#L92: 	return KeyValue{
		key.go#L102: func (k Key) String(v string) KeyValue {
		key.go#L103: 	return KeyValue{
		key.go#L113: func (k Key) StringSlice(v []string) KeyValue {
		key.go#L114: 	return KeyValue{
		key.go#L124: func (k Key) ByteSlice(v []byte) KeyValue {
		key.go#L125: 	return KeyValue{
		key.go#L135: func (k Key) Slice(v ...Value) KeyValue {
		key.go#L136: 	return KeyValue{
		kv.go#L11: type KeyValue struct {
		kv.go#L17: func (kv KeyValue) Valid() bool {
		kv.go#L22: func Bool(k string, v bool) KeyValue {
		kv.go#L27: func BoolSlice(k string, v []bool) KeyValue {
		kv.go#L32: func Int(k string, v int) KeyValue {
		kv.go#L37: func IntSlice(k string, v []int) KeyValue {
		kv.go#L42: func Int64(k string, v int64) KeyValue {
		kv.go#L47: func Int64Slice(k string, v []int64) KeyValue {
		kv.go#L52: func Float64(k string, v float64) KeyValue {
		kv.go#L57: func Float64Slice(k string, v []float64) KeyValue {
		kv.go#L62: func String(k, v string) KeyValue {
		kv.go#L67: func StringSlice(k string, v []string) KeyValue {
		kv.go#L72: func ByteSlice(k string, v []byte) KeyValue {
		kv.go#L77: func Slice(k string, v ...Value) KeyValue {
		kv.go#L83: func Stringer(k string, v fmt.Stringer) KeyValue {
		set.go#L48: 	Sortable []KeyValue
		set.go#L61: 	keyValueType = reflect.TypeFor[KeyValue]()
		set.go#L73: 		data: [0]KeyValue{},
		set.go#L78: 		data: [0]KeyValue{},
		set.go#L110: func (l *Set) Get(idx int) (KeyValue, bool) {
		set.go#L112: 		return KeyValue{}, false
		set.go#L119: 		return value.Index(idx).Interface().(KeyValue), true
		set.go#L122: 	return KeyValue{}, false
		set.go#L134: 		return rValue.Index(idx).Interface().(KeyValue).Key >= k
		set.go#L139: 	keyValue := rValue.Index(idx).Interface().(KeyValue)
		set.go#L165: func (l *Set) ToSlice() []KeyValue {
		set.go#L209: func NewSet(kvs ...KeyValue) Set {
		set.go#L220: func NewSetWithSortable(kvs []KeyValue, _ *Sortable) Set {
		set.go#L230: func NewSetWithFiltered(kvs []KeyValue, filter Filter) (Set, []KeyValue) {
		set.go#L238: 	slices.SortStableFunc(kvs, func(a, b KeyValue) int {
		set.go#L293: func NewSetWithSortableFiltered(kvs []KeyValue, _ *Sortable, filter Filter) (Set, []KeyValue) {
		set.go#L301: func filteredToFront(slice []KeyValue, keep Filter) int {
		set.go#L315: func (l *Set) Filter(re Filter) (Set, []KeyValue) {
		set.go#L359: func newSet(kvs []KeyValue) Set {
		set.go#L372: func computeDataFixed(kvs []KeyValue) any {
		set.go#L375: 		return [1]KeyValue(kvs)
		set.go#L377: 		return [2]KeyValue(kvs)
		set.go#L379: 		return [3]KeyValue(kvs)
		set.go#L381: 		return [4]KeyValue(kvs)
		set.go#L383: 		return [5]KeyValue(kvs)
		set.go#L385: 		return [6]KeyValue(kvs)
		set.go#L387: 		return [7]KeyValue(kvs)
		set.go#L389: 		return [8]KeyValue(kvs)
		set.go#L391: 		return [9]KeyValue(kvs)
		set.go#L393: 		return [10]KeyValue(kvs)
		set.go#L401: func computeDataReflect(kvs []KeyValue) any {
		set.go#L404: 		*at.Index(i).Addr().Interface().(*KeyValue) = keyValue

	go.opentelemetry.io/otel/semconv/v1.41.0
		attribute_group.go#L51: func AndroidOSAPILevel(val string) attribute.KeyValue {
		attribute_group.go#L251: func AppBuildID(val string) attribute.KeyValue {
		attribute_group.go#L258: func AppInstallationID(val string) attribute.KeyValue {
		attribute_group.go#L265: func AppJankFrameCount(val int) attribute.KeyValue {
		attribute_group.go#L272: func AppJankPeriod(val float64) attribute.KeyValue {
		attribute_group.go#L279: func AppJankThreshold(val float64) attribute.KeyValue {
		attribute_group.go#L286: func AppScreenCoordinateX(val int) attribute.KeyValue {
		attribute_group.go#L293: func AppScreenCoordinateY(val int) attribute.KeyValue {
		attribute_group.go#L300: func AppScreenID(val string) attribute.KeyValue {
		attribute_group.go#L307: func AppScreenName(val string) attribute.KeyValue {
		attribute_group.go#L314: func AppWidgetID(val string) attribute.KeyValue {
		attribute_group.go#L321: func AppWidgetName(val string) attribute.KeyValue {
		attribute_group.go#L448: func ArtifactAttestationFilename(val string) attribute.KeyValue {
		attribute_group.go#L459: func ArtifactAttestationHash(val string) attribute.KeyValue {
		attribute_group.go#L468: func ArtifactAttestationID(val string) attribute.KeyValue {
		attribute_group.go#L476: func ArtifactFilename(val string) attribute.KeyValue {
		attribute_group.go#L486: func ArtifactHash(val string) attribute.KeyValue {
		attribute_group.go#L497: func ArtifactPurl(val string) attribute.KeyValue {
		attribute_group.go#L504: func ArtifactVersion(val string) attribute.KeyValue {
		attribute_group.go#L1254: func AWSBedrockGuardrailID(val string) attribute.KeyValue {
		attribute_group.go#L1265: func AWSBedrockKnowledgeBaseID(val string) attribute.KeyValue {
		attribute_group.go#L1273: func AWSDynamoDBAttributeDefinitions(val ...string) attribute.KeyValue {
		attribute_group.go#L1280: func AWSDynamoDBAttributesToGet(val ...string) attribute.KeyValue {
		attribute_group.go#L1287: func AWSDynamoDBConsistentRead(val bool) attribute.KeyValue {
		attribute_group.go#L1294: func AWSDynamoDBConsumedCapacity(val ...string) attribute.KeyValue {
		attribute_group.go#L1301: func AWSDynamoDBCount(val int) attribute.KeyValue {
		attribute_group.go#L1308: func AWSDynamoDBExclusiveStartTable(val string) attribute.KeyValue {
		attribute_group.go#L1316: func AWSDynamoDBGlobalSecondaryIndexUpdates(val ...string) attribute.KeyValue {
		attribute_group.go#L1324: func AWSDynamoDBGlobalSecondaryIndexes(val ...string) attribute.KeyValue {
		attribute_group.go#L1331: func AWSDynamoDBIndexName(val string) attribute.KeyValue {
		attribute_group.go#L1338: func AWSDynamoDBItemCollectionMetrics(val string) attribute.KeyValue {
		attribute_group.go#L1345: func AWSDynamoDBLimit(val int) attribute.KeyValue {
		attribute_group.go#L1353: func AWSDynamoDBLocalSecondaryIndexes(val ...string) attribute.KeyValue {
		attribute_group.go#L1360: func AWSDynamoDBProjection(val string) attribute.KeyValue {
		attribute_group.go#L1368: func AWSDynamoDBProvisionedReadCapacity(val float64) attribute.KeyValue {
		attribute_group.go#L1376: func AWSDynamoDBProvisionedWriteCapacity(val float64) attribute.KeyValue {
		attribute_group.go#L1383: func AWSDynamoDBScanForward(val bool) attribute.KeyValue {
		attribute_group.go#L1390: func AWSDynamoDBScannedCount(val int) attribute.KeyValue {
		attribute_group.go#L1397: func AWSDynamoDBSegment(val int) attribute.KeyValue {
		attribute_group.go#L1404: func AWSDynamoDBSelect(val string) attribute.KeyValue {
		attribute_group.go#L1411: func AWSDynamoDBTableCount(val int) attribute.KeyValue {
		attribute_group.go#L1418: func AWSDynamoDBTableNames(val ...string) attribute.KeyValue {
		attribute_group.go#L1425: func AWSDynamoDBTotalSegments(val int) attribute.KeyValue {
		attribute_group.go#L1434: func AWSECSClusterARN(val string) attribute.KeyValue {
		attribute_group.go#L1443: func AWSECSContainerARN(val string) attribute.KeyValue {
		attribute_group.go#L1452: func AWSECSTaskARN(val string) attribute.KeyValue {
		attribute_group.go#L1461: func AWSECSTaskFamily(val string) attribute.KeyValue {
		attribute_group.go#L1468: func AWSECSTaskID(val string) attribute.KeyValue {
		attribute_group.go#L1475: func AWSECSTaskRevision(val string) attribute.KeyValue {
		attribute_group.go#L1482: func AWSEKSClusterARN(val string) attribute.KeyValue {
		attribute_group.go#L1489: func AWSExtendedRequestID(val string) attribute.KeyValue {
		attribute_group.go#L1500: func AWSKinesisStreamName(val string) attribute.KeyValue {
		attribute_group.go#L1509: func AWSLambdaInvokedARN(val string) attribute.KeyValue {
		attribute_group.go#L1523: func AWSLambdaResourceMappingID(val string) attribute.KeyValue {
		attribute_group.go#L1530: func AWSLogGroupARNs(val ...string) attribute.KeyValue {
		attribute_group.go#L1537: func AWSLogGroupNames(val ...string) attribute.KeyValue {
		attribute_group.go#L1544: func AWSLogStreamARNs(val ...string) attribute.KeyValue {
		attribute_group.go#L1551: func AWSLogStreamNames(val ...string) attribute.KeyValue {
		attribute_group.go#L1559: func AWSRequestID(val string) attribute.KeyValue {
		attribute_group.go#L1568: func AWSS3Bucket(val string) attribute.KeyValue {
		attribute_group.go#L1575: func AWSS3CopySource(val string) attribute.KeyValue {
		attribute_group.go#L1582: func AWSS3Delete(val string) attribute.KeyValue {
		attribute_group.go#L1591: func AWSS3Key(val string) attribute.KeyValue {
		attribute_group.go#L1599: func AWSS3PartNumber(val int) attribute.KeyValue {
		attribute_group.go#L1606: func AWSS3UploadID(val string) attribute.KeyValue {
		attribute_group.go#L1613: func AWSSecretsmanagerSecretARN(val string) attribute.KeyValue {
		attribute_group.go#L1623: func AWSSNSTopicARN(val string) attribute.KeyValue {
		attribute_group.go#L1631: func AWSSQSQueueURL(val string) attribute.KeyValue {
		attribute_group.go#L1638: func AWSStepFunctionsActivityARN(val string) attribute.KeyValue {
		attribute_group.go#L1645: func AWSStepFunctionsStateMachineARN(val string) attribute.KeyValue {
		attribute_group.go#L1776: func AzureClientID(val string) attribute.KeyValue {
		attribute_group.go#L1786: func AzureCosmosDBOperationContactedRegions(val ...string) attribute.KeyValue {
		attribute_group.go#L1793: func AzureCosmosDBOperationRequestCharge(val float64) attribute.KeyValue {
		attribute_group.go#L1800: func AzureCosmosDBRequestBodySize(val int) attribute.KeyValue {
		attribute_group.go#L1807: func AzureCosmosDBResponseSubStatusCode(val int) attribute.KeyValue {
		attribute_group.go#L1816: func AzureResourceProviderNamespace(val string) attribute.KeyValue {
		attribute_group.go#L1824: func AzureServiceRequestID(val string) attribute.KeyValue {
		attribute_group.go#L1932: func BrowserBrands(val ...string) attribute.KeyValue {
		attribute_group.go#L1939: func BrowserLanguage(val string) attribute.KeyValue {
		attribute_group.go#L1946: func BrowserMobile(val bool) attribute.KeyValue {
		attribute_group.go#L1953: func BrowserPlatform(val string) attribute.KeyValue {
		attribute_group.go#L2032: func CassandraCoordinatorDC(val string) attribute.KeyValue {
		attribute_group.go#L2039: func CassandraCoordinatorID(val string) attribute.KeyValue {
		attribute_group.go#L2046: func CassandraPageSize(val int) attribute.KeyValue {
		attribute_group.go#L2053: func CassandraQueryIdempotent(val bool) attribute.KeyValue {
		attribute_group.go#L2061: func CassandraSpeculativeExecutionCount(val int) attribute.KeyValue {
		attribute_group.go#L2304: func CICDPipelineName(val string) attribute.KeyValue {
		attribute_group.go#L2311: func CICDPipelineRunID(val string) attribute.KeyValue {
		attribute_group.go#L2321: func CICDPipelineRunURLFull(val string) attribute.KeyValue {
		attribute_group.go#L2332: func CICDPipelineTaskName(val string) attribute.KeyValue {
		attribute_group.go#L2339: func CICDPipelineTaskRunID(val string) attribute.KeyValue {
		attribute_group.go#L2349: func CICDPipelineTaskRunURLFull(val string) attribute.KeyValue {
		attribute_group.go#L2356: func CICDSystemComponent(val string) attribute.KeyValue {
		attribute_group.go#L2363: func CICDWorkerID(val string) attribute.KeyValue {
		attribute_group.go#L2370: func CICDWorkerName(val string) attribute.KeyValue {
		attribute_group.go#L2380: func CICDWorkerURLFull(val string) attribute.KeyValue {
		attribute_group.go#L2527: func ClientAddress(val string) attribute.KeyValue {
		attribute_group.go#L2533: func ClientPort(val int) attribute.KeyValue {
		attribute_group.go#L2662: func CloudAccountID(val string) attribute.KeyValue {
		attribute_group.go#L2671: func CloudAvailabilityZone(val string) attribute.KeyValue {
		attribute_group.go#L2681: func CloudRegion(val string) attribute.KeyValue {
		attribute_group.go#L2694: func CloudResourceID(val string) attribute.KeyValue {
		attribute_group.go#L2916: func CloudEventsEventID(val string) attribute.KeyValue {
		attribute_group.go#L2925: func CloudEventsEventSource(val string) attribute.KeyValue {
		attribute_group.go#L2934: func CloudEventsEventSpecVersion(val string) attribute.KeyValue {
		attribute_group.go#L2943: func CloudEventsEventSubject(val string) attribute.KeyValue {
		attribute_group.go#L2953: func CloudEventsEventType(val string) attribute.KeyValue {
		attribute_group.go#L3142: func CloudFoundryAppID(val string) attribute.KeyValue {
		attribute_group.go#L3149: func CloudFoundryAppInstanceID(val string) attribute.KeyValue {
		attribute_group.go#L3156: func CloudFoundryAppName(val string) attribute.KeyValue {
		attribute_group.go#L3163: func CloudFoundryOrgID(val string) attribute.KeyValue {
		attribute_group.go#L3170: func CloudFoundryOrgName(val string) attribute.KeyValue {
		attribute_group.go#L3177: func CloudFoundryProcessID(val string) attribute.KeyValue {
		attribute_group.go#L3184: func CloudFoundryProcessType(val string) attribute.KeyValue {
		attribute_group.go#L3191: func CloudFoundrySpaceID(val string) attribute.KeyValue {
		attribute_group.go#L3198: func CloudFoundrySpaceName(val string) attribute.KeyValue {
		attribute_group.go#L3205: func CloudFoundrySystemID(val string) attribute.KeyValue {
		attribute_group.go#L3212: func CloudFoundrySystemInstanceID(val string) attribute.KeyValue {
		attribute_group.go#L3316: func CodeColumnNumber(val int) attribute.KeyValue {
		attribute_group.go#L3326: func CodeFilePath(val string) attribute.KeyValue {
		attribute_group.go#L3338: func CodeFunctionName(val string) attribute.KeyValue {
		attribute_group.go#L3348: func CodeLineNumber(val int) attribute.KeyValue {
		attribute_group.go#L3360: func CodeStacktrace(val string) attribute.KeyValue {
		attribute_group.go#L3562: func ContainerCommand(val string) attribute.KeyValue {
		attribute_group.go#L3570: func ContainerCommandArgs(val ...string) attribute.KeyValue {
		attribute_group.go#L3577: func ContainerCommandLine(val string) attribute.KeyValue {
		attribute_group.go#L3586: func ContainerCSIPluginName(val string) attribute.KeyValue {
		attribute_group.go#L3595: func ContainerCSIVolumeID(val string) attribute.KeyValue {
		attribute_group.go#L3604: func ContainerID(val string) attribute.KeyValue {
		attribute_group.go#L3611: func ContainerImageID(val string) attribute.KeyValue {
		attribute_group.go#L3618: func ContainerImageName(val string) attribute.KeyValue {
		attribute_group.go#L3625: func ContainerImageRepoDigests(val ...string) attribute.KeyValue {
		attribute_group.go#L3636: func ContainerImageTags(val ...string) attribute.KeyValue {
		attribute_group.go#L3643: func ContainerLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L3650: func ContainerName(val string) attribute.KeyValue {
		attribute_group.go#L3658: func ContainerRuntimeDescription(val string) attribute.KeyValue {
		attribute_group.go#L3665: func ContainerRuntimeName(val string) attribute.KeyValue {
		attribute_group.go#L3672: func ContainerRuntimeVersion(val string) attribute.KeyValue {
		attribute_group.go#L3703: func CPULogicalNumber(val int) attribute.KeyValue {
		attribute_group.go#L3963: func DBClientConnectionPoolName(val string) attribute.KeyValue {
		attribute_group.go#L3970: func DBCollectionName(val string) attribute.KeyValue {
		attribute_group.go#L3977: func DBNamespace(val string) attribute.KeyValue {
		attribute_group.go#L3984: func DBOperationBatchSize(val int) attribute.KeyValue {
		attribute_group.go#L3991: func DBOperationName(val string) attribute.KeyValue {
		attribute_group.go#L3999: func DBOperationParameter(key string, val string) attribute.KeyValue {
		attribute_group.go#L4007: func DBQueryParameter(key string, val string) attribute.KeyValue {
		attribute_group.go#L4014: func DBQuerySummary(val string) attribute.KeyValue {
		attribute_group.go#L4020: func DBQueryText(val string) attribute.KeyValue {
		attribute_group.go#L4027: func DBResponseReturnedRows(val int) attribute.KeyValue {
		attribute_group.go#L4034: func DBResponseStatusCode(val string) attribute.KeyValue {
		attribute_group.go#L4041: func DBStoredProcedureName(val string) attribute.KeyValue {
		attribute_group.go#L4322: func DeploymentID(val string) attribute.KeyValue {
		attribute_group.go#L4329: func DeploymentName(val string) attribute.KeyValue {
		attribute_group.go#L4391: func DestinationAddress(val string) attribute.KeyValue {
		attribute_group.go#L4398: func DestinationPort(val int) attribute.KeyValue {
		attribute_group.go#L4482: func DeviceID(val string) attribute.KeyValue {
		attribute_group.go#L4489: func DeviceManufacturer(val string) attribute.KeyValue {
		attribute_group.go#L4496: func DeviceModelIdentifier(val string) attribute.KeyValue {
		attribute_group.go#L4503: func DeviceModelName(val string) attribute.KeyValue {
		attribute_group.go#L4559: func DNSAnswers(val ...string) attribute.KeyValue {
		attribute_group.go#L4566: func DNSQuestionName(val string) attribute.KeyValue {
		attribute_group.go#L4589: func ElasticsearchNodeName(val string) attribute.KeyValue {
		attribute_group.go#L4630: func EnduserID(val string) attribute.KeyValue {
		attribute_group.go#L4638: func EnduserPseudoID(val string) attribute.KeyValue {
		attribute_group.go#L4749: func ExceptionMessage(val string) attribute.KeyValue {
		attribute_group.go#L4757: func ExceptionStacktrace(val string) attribute.KeyValue {
		attribute_group.go#L4765: func ExceptionType(val string) attribute.KeyValue {
		attribute_group.go#L5006: func FaaSColdstart(val bool) attribute.KeyValue {
		attribute_group.go#L5015: func FaaSCron(val string) attribute.KeyValue {
		attribute_group.go#L5024: func FaaSDocumentCollection(val string) attribute.KeyValue {
		attribute_group.go#L5032: func FaaSDocumentName(val string) attribute.KeyValue {
		attribute_group.go#L5043: func FaaSDocumentTime(val string) attribute.KeyValue {
		attribute_group.go#L5051: func FaaSInstance(val string) attribute.KeyValue {
		attribute_group.go#L5058: func FaaSInvocationID(val string) attribute.KeyValue {
		attribute_group.go#L5065: func FaaSInvokedName(val string) attribute.KeyValue {
		attribute_group.go#L5072: func FaaSInvokedRegion(val string) attribute.KeyValue {
		attribute_group.go#L5079: func FaaSMaxMemory(val int) attribute.KeyValue {
		attribute_group.go#L5086: func FaaSName(val string) attribute.KeyValue {
		attribute_group.go#L5096: func FaaSTime(val string) attribute.KeyValue {
		attribute_group.go#L5103: func FaaSVersion(val string) attribute.KeyValue {
		attribute_group.go#L5282: func FeatureFlagContextID(val string) attribute.KeyValue {
		attribute_group.go#L5290: func FeatureFlagErrorMessage(val string) attribute.KeyValue {
		attribute_group.go#L5297: func FeatureFlagKey(val string) attribute.KeyValue {
		attribute_group.go#L5304: func FeatureFlagProviderName(val string) attribute.KeyValue {
		attribute_group.go#L5311: func FeatureFlagResultVariant(val string) attribute.KeyValue {
		attribute_group.go#L5320: func FeatureFlagSetID(val string) attribute.KeyValue {
		attribute_group.go#L5328: func FeatureFlagVersion(val string) attribute.KeyValue {
		attribute_group.go#L5589: func FileAccessed(val string) attribute.KeyValue {
		attribute_group.go#L5596: func FileAttributes(val ...string) attribute.KeyValue {
		attribute_group.go#L5603: func FileChanged(val string) attribute.KeyValue {
		attribute_group.go#L5610: func FileCreated(val string) attribute.KeyValue {
		attribute_group.go#L5617: func FileDirectory(val string) attribute.KeyValue {
		attribute_group.go#L5624: func FileExtension(val string) attribute.KeyValue {
		attribute_group.go#L5631: func FileForkName(val string) attribute.KeyValue {
		attribute_group.go#L5637: func FileGroupID(val string) attribute.KeyValue {
		attribute_group.go#L5644: func FileGroupName(val string) attribute.KeyValue {
		attribute_group.go#L5651: func FileInode(val string) attribute.KeyValue {
		attribute_group.go#L5657: func FileMode(val string) attribute.KeyValue {
		attribute_group.go#L5664: func FileModified(val string) attribute.KeyValue {
		attribute_group.go#L5671: func FileName(val string) attribute.KeyValue {
		attribute_group.go#L5678: func FileOwnerID(val string) attribute.KeyValue {
		attribute_group.go#L5685: func FileOwnerName(val string) attribute.KeyValue {
		attribute_group.go#L5692: func FilePath(val string) attribute.KeyValue {
		attribute_group.go#L5698: func FileSize(val int) attribute.KeyValue {
		attribute_group.go#L5705: func FileSymbolicLinkTargetPath(val string) attribute.KeyValue {
		attribute_group.go#L6048: func GCPAppHubApplicationContainer(val string) attribute.KeyValue {
		attribute_group.go#L6055: func GCPAppHubApplicationID(val string) attribute.KeyValue {
		attribute_group.go#L6062: func GCPAppHubApplicationLocation(val string) attribute.KeyValue {
		attribute_group.go#L6069: func GCPAppHubServiceID(val string) attribute.KeyValue {
		attribute_group.go#L6076: func GCPAppHubWorkloadID(val string) attribute.KeyValue {
		attribute_group.go#L6084: func GCPAppHubDestinationApplicationContainer(val string) attribute.KeyValue {
		attribute_group.go#L6091: func GCPAppHubDestinationApplicationID(val string) attribute.KeyValue {
		attribute_group.go#L6099: func GCPAppHubDestinationApplicationLocation(val string) attribute.KeyValue {
		attribute_group.go#L6106: func GCPAppHubDestinationServiceID(val string) attribute.KeyValue {
		attribute_group.go#L6113: func GCPAppHubDestinationWorkloadID(val string) attribute.KeyValue {
		attribute_group.go#L6120: func GCPClientService(val string) attribute.KeyValue {
		attribute_group.go#L6131: func GCPCloudRunJobExecution(val string) attribute.KeyValue {
		attribute_group.go#L6141: func GCPCloudRunJobTaskIndex(val int) attribute.KeyValue {
		attribute_group.go#L6151: func GCPGCEInstanceHostname(val string) attribute.KeyValue {
		attribute_group.go#L6162: func GCPGCEInstanceName(val string) attribute.KeyValue {
		attribute_group.go#L6169: func GCPGCEInstanceGroupManagerName(val string) attribute.KeyValue {
		attribute_group.go#L6177: func GCPGCEInstanceGroupManagerRegion(val string) attribute.KeyValue {
		attribute_group.go#L6185: func GCPGCEInstanceGroupManagerZone(val string) attribute.KeyValue {
		attribute_group.go#L7077: func GenAIAgentDescription(val string) attribute.KeyValue {
		attribute_group.go#L7083: func GenAIAgentID(val string) attribute.KeyValue {
		attribute_group.go#L7090: func GenAIAgentName(val string) attribute.KeyValue {
		attribute_group.go#L7097: func GenAIAgentVersion(val string) attribute.KeyValue {
		attribute_group.go#L7105: func GenAIConversationID(val string) attribute.KeyValue {
		attribute_group.go#L7112: func GenAIDataSourceID(val string) attribute.KeyValue {
		attribute_group.go#L7119: func GenAIEmbeddingsDimensionCount(val int) attribute.KeyValue {
		attribute_group.go#L7126: func GenAIEvaluationExplanation(val string) attribute.KeyValue {
		attribute_group.go#L7133: func GenAIEvaluationName(val string) attribute.KeyValue {
		attribute_group.go#L7140: func GenAIEvaluationScoreLabel(val string) attribute.KeyValue {
		attribute_group.go#L7147: func GenAIEvaluationScoreValue(val float64) attribute.KeyValue {
		attribute_group.go#L7154: func GenAIPromptName(val string) attribute.KeyValue {
		attribute_group.go#L7161: func GenAIRequestChoiceCount(val int) attribute.KeyValue {
		attribute_group.go#L7168: func GenAIRequestEncodingFormats(val ...string) attribute.KeyValue {
		attribute_group.go#L7175: func GenAIRequestFrequencyPenalty(val float64) attribute.KeyValue {
		attribute_group.go#L7182: func GenAIRequestMaxTokens(val int) attribute.KeyValue {
		attribute_group.go#L7189: func GenAIRequestModel(val string) attribute.KeyValue {
		attribute_group.go#L7196: func GenAIRequestPresencePenalty(val float64) attribute.KeyValue {
		attribute_group.go#L7203: func GenAIRequestSeed(val int) attribute.KeyValue {
		attribute_group.go#L7210: func GenAIRequestStopSequences(val ...string) attribute.KeyValue {
		attribute_group.go#L7217: func GenAIRequestStream(val bool) attribute.KeyValue {
		attribute_group.go#L7224: func GenAIRequestTemperature(val float64) attribute.KeyValue {
		attribute_group.go#L7231: func GenAIRequestTopK(val float64) attribute.KeyValue {
		attribute_group.go#L7238: func GenAIRequestTopP(val float64) attribute.KeyValue {
		attribute_group.go#L7246: func GenAIResponseFinishReasons(val ...string) attribute.KeyValue {
		attribute_group.go#L7253: func GenAIResponseID(val string) attribute.KeyValue {
		attribute_group.go#L7260: func GenAIResponseModel(val string) attribute.KeyValue {
		attribute_group.go#L7269: func GenAIResponseTimeToFirstChunk(val float64) attribute.KeyValue {
		attribute_group.go#L7276: func GenAIRetrievalQueryText(val string) attribute.KeyValue {
		attribute_group.go#L7283: func GenAIToolCallID(val string) attribute.KeyValue {
		attribute_group.go#L7290: func GenAIToolDescription(val string) attribute.KeyValue {
		attribute_group.go#L7297: func GenAIToolName(val string) attribute.KeyValue {
		attribute_group.go#L7304: func GenAIToolType(val string) attribute.KeyValue {
		attribute_group.go#L7311: func GenAIUsageCacheCreationInputTokens(val int) attribute.KeyValue {
		attribute_group.go#L7318: func GenAIUsageCacheReadInputTokens(val int) attribute.KeyValue {
		attribute_group.go#L7325: func GenAIUsageInputTokens(val int) attribute.KeyValue {
		attribute_group.go#L7332: func GenAIUsageOutputTokens(val int) attribute.KeyValue {
		attribute_group.go#L7340: func GenAIUsageReasoningOutputTokens(val int) attribute.KeyValue {
		attribute_group.go#L7347: func GenAIWorkflowName(val string) attribute.KeyValue {
		attribute_group.go#L7587: func GeoCountryISOCode(val string) attribute.KeyValue {
		attribute_group.go#L7594: func GeoLocalityName(val string) attribute.KeyValue {
		attribute_group.go#L7603: func GeoLocationLat(val float64) attribute.KeyValue {
		attribute_group.go#L7612: func GeoLocationLon(val float64) attribute.KeyValue {
		attribute_group.go#L7620: func GeoPostalCode(val string) attribute.KeyValue {
		attribute_group.go#L7629: func GeoRegionISOCode(val string) attribute.KeyValue {
		attribute_group.go#L7712: func GoCPUDetailedState(val string) attribute.KeyValue {
		attribute_group.go#L7719: func GoMemoryDetailedType(val string) attribute.KeyValue {
		attribute_group.go#L7791: func GraphQLDocument(val string) attribute.KeyValue {
		attribute_group.go#L7798: func GraphQLOperationName(val string) attribute.KeyValue {
		attribute_group.go#L7853: func HerokuAppID(val string) attribute.KeyValue {
		attribute_group.go#L7860: func HerokuReleaseCommit(val string) attribute.KeyValue {
		attribute_group.go#L7867: func HerokuReleaseCreationTimestamp(val string) attribute.KeyValue {
		attribute_group.go#L8060: func HostCPUCacheL2Size(val int) attribute.KeyValue {
		attribute_group.go#L8067: func HostCPUFamily(val string) attribute.KeyValue {
		attribute_group.go#L8075: func HostCPUModelID(val string) attribute.KeyValue {
		attribute_group.go#L8082: func HostCPUModelName(val string) attribute.KeyValue {
		attribute_group.go#L8089: func HostCPUStepping(val string) attribute.KeyValue {
		attribute_group.go#L8096: func HostCPUVendorID(val string) attribute.KeyValue {
		attribute_group.go#L8105: func HostID(val string) attribute.KeyValue {
		attribute_group.go#L8112: func HostImageID(val string) attribute.KeyValue {
		attribute_group.go#L8119: func HostImageName(val string) attribute.KeyValue {
		attribute_group.go#L8128: func HostImageVersion(val string) attribute.KeyValue {
		attribute_group.go#L8135: func HostIP(val ...string) attribute.KeyValue {
		attribute_group.go#L8142: func HostMac(val ...string) attribute.KeyValue {
		attribute_group.go#L8150: func HostName(val string) attribute.KeyValue {
		attribute_group.go#L8157: func HostType(val string) attribute.KeyValue {
		attribute_group.go#L8381: func HTTPRequestBodySize(val int) attribute.KeyValue {
		attribute_group.go#L8389: func HTTPRequestHeader(key string, val ...string) attribute.KeyValue {
		attribute_group.go#L8396: func HTTPRequestMethodOriginal(val string) attribute.KeyValue {
		attribute_group.go#L8403: func HTTPRequestResendCount(val int) attribute.KeyValue {
		attribute_group.go#L8412: func HTTPRequestSize(val int) attribute.KeyValue {
		attribute_group.go#L8424: func HTTPResponseBodySize(val int) attribute.KeyValue {
		attribute_group.go#L8432: func HTTPResponseHeader(key string, val ...string) attribute.KeyValue {
		attribute_group.go#L8441: func HTTPResponseSize(val int) attribute.KeyValue {
		attribute_group.go#L8450: func HTTPResponseStatusCode(val int) attribute.KeyValue {
		attribute_group.go#L8458: func HTTPRoute(val string) attribute.KeyValue {
		attribute_group.go#L8816: func HwBatteryCapacity(val string) attribute.KeyValue {
		attribute_group.go#L8825: func HwBatteryChemistry(val string) attribute.KeyValue {
		attribute_group.go#L8832: func HwBiosVersion(val string) attribute.KeyValue {
		attribute_group.go#L8839: func HwDriverVersion(val string) attribute.KeyValue {
		attribute_group.go#L8846: func HwEnclosureType(val string) attribute.KeyValue {
		attribute_group.go#L8853: func HwFirmwareVersion(val string) attribute.KeyValue {
		attribute_group.go#L8860: func HwID(val string) attribute.KeyValue {
		attribute_group.go#L8867: func HwLogicalDiskRaidLevel(val string) attribute.KeyValue {
		attribute_group.go#L8873: func HwMemoryType(val string) attribute.KeyValue {
		attribute_group.go#L8880: func HwModel(val string) attribute.KeyValue {
		attribute_group.go#L8887: func HwName(val string) attribute.KeyValue {
		attribute_group.go#L8894: func HwNetworkLogicalAddresses(val ...string) attribute.KeyValue {
		attribute_group.go#L8901: func HwNetworkPhysicalAddress(val string) attribute.KeyValue {
		attribute_group.go#L8908: func HwParent(val string) attribute.KeyValue {
		attribute_group.go#L8918: func HwPhysicalDiskSmartAttribute(val string) attribute.KeyValue {
		attribute_group.go#L8925: func HwPhysicalDiskType(val string) attribute.KeyValue {
		attribute_group.go#L8932: func HwSensorLocation(val string) attribute.KeyValue {
		attribute_group.go#L8939: func HwSerialNumber(val string) attribute.KeyValue {
		attribute_group.go#L8945: func HwVendor(val string) attribute.KeyValue {
		attribute_group.go#L9185: func JSONRPCProtocolVersion(val string) attribute.KeyValue {
		attribute_group.go#L9193: func JSONRPCRequestID(val string) attribute.KeyValue {
		attribute_group.go#L10041: func K8SClusterName(val string) attribute.KeyValue {
		attribute_group.go#L10048: func K8SClusterUID(val string) attribute.KeyValue {
		attribute_group.go#L10056: func K8SContainerName(val string) attribute.KeyValue {
		attribute_group.go#L10064: func K8SContainerRestartCount(val int) attribute.KeyValue {
		attribute_group.go#L10071: func K8SContainerStatusLastTerminatedReason(val string) attribute.KeyValue {
		attribute_group.go#L10079: func K8SCronJobAnnotation(key string, val string) attribute.KeyValue {
		attribute_group.go#L10087: func K8SCronJobLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L10094: func K8SCronJobName(val string) attribute.KeyValue {
		attribute_group.go#L10100: func K8SCronJobUID(val string) attribute.KeyValue {
		attribute_group.go#L10108: func K8SDaemonSetAnnotation(key string, val string) attribute.KeyValue {
		attribute_group.go#L10116: func K8SDaemonSetLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L10123: func K8SDaemonSetName(val string) attribute.KeyValue {
		attribute_group.go#L10130: func K8SDaemonSetUID(val string) attribute.KeyValue {
		attribute_group.go#L10138: func K8SDeploymentAnnotation(key string, val string) attribute.KeyValue {
		attribute_group.go#L10146: func K8SDeploymentLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L10153: func K8SDeploymentName(val string) attribute.KeyValue {
		attribute_group.go#L10160: func K8SDeploymentUID(val string) attribute.KeyValue {
		attribute_group.go#L10167: func K8SHPAMetricType(val string) attribute.KeyValue {
		attribute_group.go#L10173: func K8SHPAName(val string) attribute.KeyValue {
		attribute_group.go#L10180: func K8SHPAScaletargetrefAPIVersion(val string) attribute.KeyValue {
		attribute_group.go#L10187: func K8SHPAScaletargetrefKind(val string) attribute.KeyValue {
		attribute_group.go#L10194: func K8SHPAScaletargetrefName(val string) attribute.KeyValue {
		attribute_group.go#L10200: func K8SHPAUID(val string) attribute.KeyValue {
		attribute_group.go#L10207: func K8SHugepageSize(val string) attribute.KeyValue {
		attribute_group.go#L10215: func K8SJobAnnotation(key string, val string) attribute.KeyValue {
		attribute_group.go#L10223: func K8SJobLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L10229: func K8SJobName(val string) attribute.KeyValue {
		attribute_group.go#L10235: func K8SJobUID(val string) attribute.KeyValue {
		attribute_group.go#L10243: func K8SNamespaceAnnotation(key string, val string) attribute.KeyValue {
		attribute_group.go#L10251: func K8SNamespaceLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L10258: func K8SNamespaceName(val string) attribute.KeyValue {
		attribute_group.go#L10266: func K8SNodeAnnotation(key string, val string) attribute.KeyValue {
		attribute_group.go#L10274: func K8SNodeLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L10280: func K8SNodeName(val string) attribute.KeyValue {
		attribute_group.go#L10287: func K8SNodeSystemContainerName(val string) attribute.KeyValue {
		attribute_group.go#L10293: func K8SNodeUID(val string) attribute.KeyValue {
		attribute_group.go#L10301: func K8SPersistentvolumeAnnotation(key string, val string) attribute.KeyValue {
		attribute_group.go#L10309: func K8SPersistentvolumeLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L10316: func K8SPersistentvolumeName(val string) attribute.KeyValue {
		attribute_group.go#L10323: func K8SPersistentvolumeUID(val string) attribute.KeyValue {
		attribute_group.go#L10332: func K8SPersistentvolumeclaimAnnotation(key string, val string) attribute.KeyValue {
		attribute_group.go#L10340: func K8SPersistentvolumeclaimLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L10347: func K8SPersistentvolumeclaimName(val string) attribute.KeyValue {
		attribute_group.go#L10354: func K8SPersistentvolumeclaimUID(val string) attribute.KeyValue {
		attribute_group.go#L10362: func K8SPodAnnotation(key string, val string) attribute.KeyValue {
		attribute_group.go#L10369: func K8SPodHostname(val string) attribute.KeyValue {
		attribute_group.go#L10375: func K8SPodIP(val string) attribute.KeyValue {
		attribute_group.go#L10382: func K8SPodLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L10388: func K8SPodName(val string) attribute.KeyValue {
		attribute_group.go#L10395: func K8SPodStartTime(val string) attribute.KeyValue {
		attribute_group.go#L10401: func K8SPodUID(val string) attribute.KeyValue {
		attribute_group.go#L10409: func K8SReplicaSetAnnotation(key string, val string) attribute.KeyValue {
		attribute_group.go#L10417: func K8SReplicaSetLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L10424: func K8SReplicaSetName(val string) attribute.KeyValue {
		attribute_group.go#L10431: func K8SReplicaSetUID(val string) attribute.KeyValue {
		attribute_group.go#L10438: func K8SReplicationControllerName(val string) attribute.KeyValue {
		attribute_group.go#L10445: func K8SReplicationControllerUID(val string) attribute.KeyValue {
		attribute_group.go#L10452: func K8SResourceQuotaName(val string) attribute.KeyValue {
		attribute_group.go#L10459: func K8SResourceQuotaResourceName(val string) attribute.KeyValue {
		attribute_group.go#L10466: func K8SResourceQuotaUID(val string) attribute.KeyValue {
		attribute_group.go#L10474: func K8SServiceAnnotation(key string, val string) attribute.KeyValue {
		attribute_group.go#L10481: func K8SServiceEndpointZone(val string) attribute.KeyValue {
		attribute_group.go#L10489: func K8SServiceLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L10496: func K8SServiceName(val string) attribute.KeyValue {
		attribute_group.go#L10503: func K8SServicePublishNotReadyAddresses(val bool) attribute.KeyValue {
		attribute_group.go#L10511: func K8SServiceSelector(key string, val string) attribute.KeyValue {
		attribute_group.go#L10518: func K8SServiceTrafficDistribution(val string) attribute.KeyValue {
		attribute_group.go#L10524: func K8SServiceUID(val string) attribute.KeyValue {
		attribute_group.go#L10532: func K8SStatefulSetAnnotation(key string, val string) attribute.KeyValue {
		attribute_group.go#L10540: func K8SStatefulSetLabel(key string, val string) attribute.KeyValue {
		attribute_group.go#L10547: func K8SStatefulSetName(val string) attribute.KeyValue {
		attribute_group.go#L10554: func K8SStatefulSetUID(val string) attribute.KeyValue {
		attribute_group.go#L10563: func K8SStorageclassName(val string) attribute.KeyValue {
		attribute_group.go#L10570: func K8SVolumeName(val string) attribute.KeyValue {
		attribute_group.go#L10933: func LogFileName(val string) attribute.KeyValue {
		attribute_group.go#L10940: func LogFileNameResolved(val string) attribute.KeyValue {
		attribute_group.go#L10946: func LogFilePath(val string) attribute.KeyValue {
		attribute_group.go#L10953: func LogFilePathResolved(val string) attribute.KeyValue {
		attribute_group.go#L10960: func LogRecordOriginal(val string) attribute.KeyValue {
		attribute_group.go#L10966: func LogRecordUID(val string) attribute.KeyValue {
		attribute_group.go#L10997: func MainframeLparName(val string) attribute.KeyValue {
		attribute_group.go#L11059: func McpProtocolVersion(val string) attribute.KeyValue {
		attribute_group.go#L11066: func McpResourceURI(val string) attribute.KeyValue {
		attribute_group.go#L11074: func McpSessionID(val string) attribute.KeyValue {
		attribute_group.go#L11631: func MessagingBatchMessageCount(val int) attribute.KeyValue {
		attribute_group.go#L11638: func MessagingClientID(val string) attribute.KeyValue {
		attribute_group.go#L11645: func MessagingConsumerGroupName(val string) attribute.KeyValue {
		attribute_group.go#L11653: func MessagingDestinationAnonymous(val bool) attribute.KeyValue {
		attribute_group.go#L11660: func MessagingDestinationName(val string) attribute.KeyValue {
		attribute_group.go#L11668: func MessagingDestinationPartitionID(val string) attribute.KeyValue {
		attribute_group.go#L11676: func MessagingDestinationSubscriptionName(val string) attribute.KeyValue {
		attribute_group.go#L11683: func MessagingDestinationTemplate(val string) attribute.KeyValue {
		attribute_group.go#L11691: func MessagingDestinationTemporary(val bool) attribute.KeyValue {
		attribute_group.go#L11699: func MessagingEventHubsMessageEnqueuedTime(val int) attribute.KeyValue {
		attribute_group.go#L11707: func MessagingGCPPubSubMessageAckDeadline(val int) attribute.KeyValue {
		attribute_group.go#L11714: func MessagingGCPPubSubMessageAckID(val string) attribute.KeyValue {
		attribute_group.go#L11721: func MessagingGCPPubSubMessageDeliveryAttempt(val int) attribute.KeyValue {
		attribute_group.go#L11729: func MessagingGCPPubSubMessageOrderingKey(val string) attribute.KeyValue {
		attribute_group.go#L11738: func MessagingKafkaMessageKey(val string) attribute.KeyValue {
		attribute_group.go#L11745: func MessagingKafkaMessageTombstone(val bool) attribute.KeyValue {
		attribute_group.go#L11752: func MessagingKafkaOffset(val int) attribute.KeyValue {
		attribute_group.go#L11759: func MessagingMessageBodySize(val int) attribute.KeyValue {
		attribute_group.go#L11767: func MessagingMessageConversationID(val string) attribute.KeyValue {
		attribute_group.go#L11774: func MessagingMessageEnvelopeSize(val int) attribute.KeyValue {
		attribute_group.go#L11781: func MessagingMessageID(val string) attribute.KeyValue {
		attribute_group.go#L11788: func MessagingOperationName(val string) attribute.KeyValue {
		attribute_group.go#L11795: func MessagingRabbitMQDestinationRoutingKey(val string) attribute.KeyValue {
		attribute_group.go#L11802: func MessagingRabbitMQMessageDeliveryTag(val int) attribute.KeyValue {
		attribute_group.go#L11810: func MessagingRocketMQMessageDelayTimeLevel(val int) attribute.KeyValue {
		attribute_group.go#L11818: func MessagingRocketMQMessageDeliveryTimestamp(val int) attribute.KeyValue {
		attribute_group.go#L11826: func MessagingRocketMQMessageGroup(val string) attribute.KeyValue {
		attribute_group.go#L11833: func MessagingRocketMQMessageKeys(val ...string) attribute.KeyValue {
		attribute_group.go#L11840: func MessagingRocketMQMessageTag(val string) attribute.KeyValue {
		attribute_group.go#L11848: func MessagingRocketMQNamespace(val string) attribute.KeyValue {
		attribute_group.go#L11856: func MessagingServiceBusMessageDeliveryCount(val int) attribute.KeyValue {
		attribute_group.go#L11864: func MessagingServiceBusMessageEnqueuedTime(val int) attribute.KeyValue {
		attribute_group.go#L12196: func NetworkCarrierICC(val string) attribute.KeyValue {
		attribute_group.go#L12203: func NetworkCarrierMCC(val string) attribute.KeyValue {
		attribute_group.go#L12210: func NetworkCarrierMNC(val string) attribute.KeyValue {
		attribute_group.go#L12217: func NetworkCarrierName(val string) attribute.KeyValue {
		attribute_group.go#L12224: func NetworkInterfaceName(val string) attribute.KeyValue {
		attribute_group.go#L12231: func NetworkLocalAddress(val string) attribute.KeyValue {
		attribute_group.go#L12238: func NetworkLocalPort(val int) attribute.KeyValue {
		attribute_group.go#L12245: func NetworkPeerAddress(val string) attribute.KeyValue {
		attribute_group.go#L12252: func NetworkPeerPort(val int) attribute.KeyValue {
		attribute_group.go#L12261: func NetworkProtocolName(val string) attribute.KeyValue {
		attribute_group.go#L12268: func NetworkProtocolVersion(val string) attribute.KeyValue {
		attribute_group.go#L12463: func NfsOperationName(val string) attribute.KeyValue {
		attribute_group.go#L12471: func NfsServerRepcacheStatus(val string) attribute.KeyValue {
		attribute_group.go#L12502: func OCIManifestDigest(val string) attribute.KeyValue {
		attribute_group.go#L12555: func OncRPCProcedureName(val string) attribute.KeyValue {
		attribute_group.go#L12562: func OncRPCProcedureNumber(val int) attribute.KeyValue {
		attribute_group.go#L12569: func OncRPCProgramName(val string) attribute.KeyValue {
		attribute_group.go#L12576: func OncRPCVersion(val int) attribute.KeyValue {
		attribute_group.go#L12629: func OpenAIResponseServiceTier(val string) attribute.KeyValue {
		attribute_group.go#L12636: func OpenAIResponseSystemFingerprint(val string) attribute.KeyValue {
		attribute_group.go#L12692: func OpenShiftClusterquotaName(val string) attribute.KeyValue {
		attribute_group.go#L12699: func OpenShiftClusterquotaUID(val string) attribute.KeyValue {
		attribute_group.go#L12821: func OracleDBDomain(val string) attribute.KeyValue {
		attribute_group.go#L12829: func OracleDBInstanceName(val string) attribute.KeyValue {
		attribute_group.go#L12836: func OracleDBName(val string) attribute.KeyValue {
		attribute_group.go#L12843: func OracleDBPdb(val string) attribute.KeyValue {
		attribute_group.go#L12850: func OracleDBService(val string) attribute.KeyValue {
		attribute_group.go#L12876: func OracleCloudRealm(val string) attribute.KeyValue {
		attribute_group.go#L12942: func OSBuildID(val string) attribute.KeyValue {
		attribute_group.go#L12950: func OSDescription(val string) attribute.KeyValue {
		attribute_group.go#L12956: func OSName(val string) attribute.KeyValue {
		attribute_group.go#L12965: func OSVersion(val string) attribute.KeyValue {
		attribute_group.go#L13155: func OTelComponentName(val string) attribute.KeyValue {
		attribute_group.go#L13162: func OTelEventName(val string) attribute.KeyValue {
		attribute_group.go#L13169: func OTelScopeName(val string) attribute.KeyValue {
		attribute_group.go#L13176: func OTelScopeSchemaURL(val string) attribute.KeyValue {
		attribute_group.go#L13183: func OTelScopeVersion(val string) attribute.KeyValue {
		attribute_group.go#L13190: func OTelStatusDescription(val string) attribute.KeyValue {
		attribute_group.go#L13446: func PprofLocationIsFolded(val bool) attribute.KeyValue {
		attribute_group.go#L13453: func PprofMappingHasFilenames(val bool) attribute.KeyValue {
		attribute_group.go#L13460: func PprofMappingHasFunctions(val bool) attribute.KeyValue {
		attribute_group.go#L13467: func PprofMappingHasInlineFrames(val bool) attribute.KeyValue {
		attribute_group.go#L13474: func PprofMappingHasLineNumbers(val bool) attribute.KeyValue {
		attribute_group.go#L13482: func PprofProfileComment(val ...string) attribute.KeyValue {
		attribute_group.go#L13489: func PprofProfileDocURL(val string) attribute.KeyValue {
		attribute_group.go#L13497: func PprofProfileDropFrames(val string) attribute.KeyValue {
		attribute_group.go#L13505: func PprofProfileKeepFrames(val string) attribute.KeyValue {
		attribute_group.go#L13513: func PprofScopeDefaultSampleType(val string) attribute.KeyValue {
		attribute_group.go#L13520: func PprofScopeSampleTypeOrder(val ...int) attribute.KeyValue {
		attribute_group.go#L13941: func ProcessArgsCount(val int) attribute.KeyValue {
		attribute_group.go#L13950: func ProcessCommand(val string) attribute.KeyValue {
		attribute_group.go#L13962: func ProcessCommandArgs(val ...string) attribute.KeyValue {
		attribute_group.go#L13973: func ProcessCommandLine(val string) attribute.KeyValue {
		attribute_group.go#L13980: func ProcessCreationTime(val string) attribute.KeyValue {
		attribute_group.go#L13988: func ProcessEnvironmentVariable(key string, val string) attribute.KeyValue {
		attribute_group.go#L13995: func ProcessExecutableBuildIDGNU(val string) attribute.KeyValue {
		attribute_group.go#L14002: func ProcessExecutableBuildIDGo(val string) attribute.KeyValue {
		attribute_group.go#L14009: func ProcessExecutableBuildIDHtlhash(val string) attribute.KeyValue {
		attribute_group.go#L14018: func ProcessExecutableName(val string) attribute.KeyValue {
		attribute_group.go#L14027: func ProcessExecutablePath(val string) attribute.KeyValue {
		attribute_group.go#L14034: func ProcessExitCode(val int) attribute.KeyValue {
		attribute_group.go#L14041: func ProcessExitTime(val string) attribute.KeyValue {
		attribute_group.go#L14049: func ProcessGroupLeaderPID(val int) attribute.KeyValue {
		attribute_group.go#L14056: func ProcessInteractive(val bool) attribute.KeyValue {
		attribute_group.go#L14063: func ProcessLinuxCgroup(val string) attribute.KeyValue {
		attribute_group.go#L14070: func ProcessOwner(val string) attribute.KeyValue {
		attribute_group.go#L14077: func ProcessParentPID(val int) attribute.KeyValue {
		attribute_group.go#L14083: func ProcessPID(val int) attribute.KeyValue {
		attribute_group.go#L14090: func ProcessRealUserID(val int) attribute.KeyValue {
		attribute_group.go#L14097: func ProcessRealUserName(val string) attribute.KeyValue {
		attribute_group.go#L14105: func ProcessRuntimeDescription(val string) attribute.KeyValue {
		attribute_group.go#L14112: func ProcessRuntimeName(val string) attribute.KeyValue {
		attribute_group.go#L14119: func ProcessRuntimeVersion(val string) attribute.KeyValue {
		attribute_group.go#L14126: func ProcessSavedUserID(val int) attribute.KeyValue {
		attribute_group.go#L14133: func ProcessSavedUserName(val string) attribute.KeyValue {
		attribute_group.go#L14141: func ProcessSessionLeaderPID(val int) attribute.KeyValue {
		attribute_group.go#L14147: func ProcessTitle(val string) attribute.KeyValue {
		attribute_group.go#L14154: func ProcessUserID(val int) attribute.KeyValue {
		attribute_group.go#L14161: func ProcessUserName(val string) attribute.KeyValue {
		attribute_group.go#L14167: func ProcessVpid(val int) attribute.KeyValue {
		attribute_group.go#L14174: func ProcessWorkingDirectory(val string) attribute.KeyValue {
		attribute_group.go#L14382: func RPCMethod(val string) attribute.KeyValue {
		attribute_group.go#L14389: func RPCMethodOriginal(val string) attribute.KeyValue {
		attribute_group.go#L14397: func RPCRequestMetadata(key string, val ...string) attribute.KeyValue {
		attribute_group.go#L14405: func RPCResponseMetadata(key string, val ...string) attribute.KeyValue {
		attribute_group.go#L14412: func RPCResponseStatusCode(val string) attribute.KeyValue {
		attribute_group.go#L14539: func SecurityRuleCategory(val string) attribute.KeyValue {
		attribute_group.go#L14546: func SecurityRuleDescription(val string) attribute.KeyValue {
		attribute_group.go#L14553: func SecurityRuleLicense(val string) attribute.KeyValue {
		attribute_group.go#L14560: func SecurityRuleName(val string) attribute.KeyValue {
		attribute_group.go#L14567: func SecurityRuleReference(val string) attribute.KeyValue {
		attribute_group.go#L14575: func SecurityRuleRulesetName(val string) attribute.KeyValue {
		attribute_group.go#L14583: func SecurityRuleUUID(val string) attribute.KeyValue {
		attribute_group.go#L14590: func SecurityRuleVersion(val string) attribute.KeyValue {
		attribute_group.go#L14627: func ServerAddress(val string) attribute.KeyValue {
		attribute_group.go#L14633: func ServerPort(val int) attribute.KeyValue {
		attribute_group.go#L14793: func ServiceInstanceID(val string) attribute.KeyValue {
		attribute_group.go#L14799: func ServiceName(val string) attribute.KeyValue {
		attribute_group.go#L14806: func ServiceNamespace(val string) attribute.KeyValue {
		attribute_group.go#L14816: func ServicePeerName(val string) attribute.KeyValue {
		attribute_group.go#L14827: func ServicePeerNamespace(val string) attribute.KeyValue {
		attribute_group.go#L14834: func ServiceVersion(val string) attribute.KeyValue {
		attribute_group.go#L14887: func SessionID(val string) attribute.KeyValue {
		attribute_group.go#L14894: func SessionPreviousID(val string) attribute.KeyValue {
		attribute_group.go#L14983: func SourceAddress(val string) attribute.KeyValue {
		attribute_group.go#L14989: func SourcePort(val int) attribute.KeyValue {
		attribute_group.go#L15117: func SystemDevice(val string) attribute.KeyValue {
		attribute_group.go#L15124: func SystemFilesystemMode(val string) attribute.KeyValue {
		attribute_group.go#L15131: func SystemFilesystemMountpoint(val string) attribute.KeyValue {
		attribute_group.go#L15311: func TelemetryDistroName(val string) attribute.KeyValue {
		attribute_group.go#L15318: func TelemetryDistroVersion(val string) attribute.KeyValue {
		attribute_group.go#L15325: func TelemetrySDKName(val string) attribute.KeyValue {
		attribute_group.go#L15332: func TelemetrySDKVersion(val string) attribute.KeyValue {
		attribute_group.go#L15434: func TestCaseName(val string) attribute.KeyValue {
		attribute_group.go#L15443: func TestSuiteName(val string) attribute.KeyValue {
		attribute_group.go#L15526: func ThreadID(val int) attribute.KeyValue {
		attribute_group.go#L15532: func ThreadName(val string) attribute.KeyValue {
		attribute_group.go#L15891: func TLSCipher(val string) attribute.KeyValue {
		attribute_group.go#L15900: func TLSClientCertificate(val string) attribute.KeyValue {
		attribute_group.go#L15909: func TLSClientCertificateChain(val ...string) attribute.KeyValue {
		attribute_group.go#L15918: func TLSClientHashMd5(val string) attribute.KeyValue {
		attribute_group.go#L15927: func TLSClientHashSha1(val string) attribute.KeyValue {
		attribute_group.go#L15936: func TLSClientHashSha256(val string) attribute.KeyValue {
		attribute_group.go#L15945: func TLSClientIssuer(val string) attribute.KeyValue {
		attribute_group.go#L15952: func TLSClientJa3(val string) attribute.KeyValue {
		attribute_group.go#L15959: func TLSClientNotAfter(val string) attribute.KeyValue {
		attribute_group.go#L15966: func TLSClientNotBefore(val string) attribute.KeyValue {
		attribute_group.go#L15973: func TLSClientSubject(val string) attribute.KeyValue {
		attribute_group.go#L15980: func TLSClientSupportedCiphers(val ...string) attribute.KeyValue {
		attribute_group.go#L15987: func TLSCurve(val string) attribute.KeyValue {
		attribute_group.go#L15995: func TLSEstablished(val bool) attribute.KeyValue {
		attribute_group.go#L16005: func TLSNextProtocol(val string) attribute.KeyValue {
		attribute_group.go#L16015: func TLSProtocolVersion(val string) attribute.KeyValue {
		attribute_group.go#L16022: func TLSResumed(val bool) attribute.KeyValue {
		attribute_group.go#L16031: func TLSServerCertificate(val string) attribute.KeyValue {
		attribute_group.go#L16040: func TLSServerCertificateChain(val ...string) attribute.KeyValue {
		attribute_group.go#L16049: func TLSServerHashMd5(val string) attribute.KeyValue {
		attribute_group.go#L16058: func TLSServerHashSha1(val string) attribute.KeyValue {
		attribute_group.go#L16067: func TLSServerHashSha256(val string) attribute.KeyValue {
		attribute_group.go#L16076: func TLSServerIssuer(val string) attribute.KeyValue {
		attribute_group.go#L16083: func TLSServerJa3s(val string) attribute.KeyValue {
		attribute_group.go#L16090: func TLSServerNotAfter(val string) attribute.KeyValue {
		attribute_group.go#L16097: func TLSServerNotBefore(val string) attribute.KeyValue {
		attribute_group.go#L16104: func TLSServerSubject(val string) attribute.KeyValue {
		attribute_group.go#L16389: func URLDomain(val string) attribute.KeyValue {
		attribute_group.go#L16396: func URLExtension(val string) attribute.KeyValue {
		attribute_group.go#L16404: func URLFragment(val string) attribute.KeyValue {
		attribute_group.go#L16413: func URLFull(val string) attribute.KeyValue {
		attribute_group.go#L16420: func URLOriginal(val string) attribute.KeyValue {
		attribute_group.go#L16428: func URLPath(val string) attribute.KeyValue {
		attribute_group.go#L16434: func URLPort(val int) attribute.KeyValue {
		attribute_group.go#L16442: func URLQuery(val string) attribute.KeyValue {
		attribute_group.go#L16449: func URLRegisteredDomain(val string) attribute.KeyValue {
		attribute_group.go#L16458: func URLScheme(val string) attribute.KeyValue {
		attribute_group.go#L16468: func URLSubdomain(val string) attribute.KeyValue {
		attribute_group.go#L16477: func URLTemplate(val string) attribute.KeyValue {
		attribute_group.go#L16485: func URLTopLevelDomain(val string) attribute.KeyValue {
		attribute_group.go#L16557: func UserEmail(val string) attribute.KeyValue {
		attribute_group.go#L16563: func UserFullName(val string) attribute.KeyValue {
		attribute_group.go#L16570: func UserHash(val string) attribute.KeyValue {
		attribute_group.go#L16576: func UserID(val string) attribute.KeyValue {
		attribute_group.go#L16582: func UserName(val string) attribute.KeyValue {
		attribute_group.go#L16589: func UserRoles(val ...string) attribute.KeyValue {
		attribute_group.go#L16700: func UserAgentName(val string) attribute.KeyValue {
		attribute_group.go#L16709: func UserAgentOriginal(val string) attribute.KeyValue {
		attribute_group.go#L16716: func UserAgentOSName(val string) attribute.KeyValue {
		attribute_group.go#L16725: func UserAgentOSVersion(val string) attribute.KeyValue {
		attribute_group.go#L16732: func UserAgentVersion(val string) attribute.KeyValue {
		attribute_group.go#L17004: func VCSChangeID(val string) attribute.KeyValue {
		attribute_group.go#L17013: func VCSChangeTitle(val string) attribute.KeyValue {
		attribute_group.go#L17020: func VCSOwnerName(val string) attribute.KeyValue {
		attribute_group.go#L17029: func VCSRefBaseName(val string) attribute.KeyValue {
		attribute_group.go#L17039: func VCSRefBaseRevision(val string) attribute.KeyValue {
		attribute_group.go#L17048: func VCSRefHeadName(val string) attribute.KeyValue {
		attribute_group.go#L17058: func VCSRefHeadRevision(val string) attribute.KeyValue {
		attribute_group.go#L17066: func VCSRepositoryName(val string) attribute.KeyValue {
		attribute_group.go#L17076: func VCSRepositoryURLFull(val string) attribute.KeyValue {
		attribute_group.go#L17229: func WebEngineDescription(val string) attribute.KeyValue {
		attribute_group.go#L17235: func WebEngineName(val string) attribute.KeyValue {
		attribute_group.go#L17242: func WebEngineVersion(val string) attribute.KeyValue {
		attribute_group.go#L17276: func ZOSSmfID(val string) attribute.KeyValue {
		attribute_group.go#L17283: func ZOSSysplexName(val string) attribute.KeyValue {
		error_type.go#L32: func ErrorType(err error) attribute.KeyValue {

	go.opentelemetry.io/otel/trace
		auto.go#L216: func (s *autoSpan) SetAttributes(attrs ...attribute.KeyValue) {
		auto.go#L265: func convCappedAttrs(limit int, attrs []attribute.KeyValue) ([]telemetry.Attr, uint32) {
		auto.go#L288: func convAttrs(attrs []attribute.KeyValue) []telemetry.Attr {
		auto.go#L522: func (s *autoSpan) addEvent(name string, tStamp time.Time, attrs []attribute.KeyValue) {
		config.go#L66: 	attributes []attribute.KeyValue
		config.go#L75: func (cfg *SpanConfig) Attributes() []attribute.KeyValue {
		config.go#L156: 	attributes []attribute.KeyValue
		config.go#L162: func (cfg *EventConfig) Attributes() []attribute.KeyValue {
		config.go#L217: type attributeOption []attribute.KeyValue
		config.go#L220: 	c.attributes = append(c.attributes, []attribute.KeyValue(o)...)
		config.go#L225: 	c.attributes = append(c.attributes, []attribute.KeyValue(o)...)
		config.go#L240: func WithAttributes(attributes ...attribute.KeyValue) SpanStartEventOption {
		config.go#L329: 	merged := make([]attribute.KeyValue, 0, a.Len()+b.Len())
		config.go#L345: func WithInstrumentationAttributes(attr ...attribute.KeyValue) TracerOption {
		noop.go#L67: func (noopSpan) SetAttributes(...attribute.KeyValue) {}
		span.go#L73: 	SetAttributes(kv ...attribute.KeyValue)
		span.go#L100: 	Attributes []attribute.KeyValue
		span.go#L105: func LinkFromContext(ctx context.Context, attrs ...attribute.KeyValue) Link {

	github.com/gotd/td/telegram
		invoke.go#L31: 		var attrs []attribute.KeyValue