mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2025-02-05 13:15:41 +02:00
394 lines
16 KiB
Go
394 lines
16 KiB
Go
|
// Copyright The OpenTelemetry Authors
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
// Code generated from semantic convention specification. DO NOT EDIT.
|
||
|
|
||
|
package semconv // import "go.opentelemetry.io/otel/semconv/v1.25.0"
|
||
|
|
||
|
import "go.opentelemetry.io/otel/attribute"
|
||
|
|
||
|
// Operations that access some remote service.
|
||
|
const (
|
||
|
// PeerServiceKey is the attribute Key conforming to the "peer.service"
|
||
|
// semantic conventions. It represents the
|
||
|
// [`service.name`](/docs/resource/README.md#service) of the remote
|
||
|
// service. SHOULD be equal to the actual `service.name` resource attribute
|
||
|
// of the remote service if any.
|
||
|
//
|
||
|
// Type: string
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Examples: 'AuthTokenCache'
|
||
|
PeerServiceKey = attribute.Key("peer.service")
|
||
|
)
|
||
|
|
||
|
// PeerService returns an attribute KeyValue conforming to the
|
||
|
// "peer.service" semantic conventions. It represents the
|
||
|
// [`service.name`](/docs/resource/README.md#service) of the remote service.
|
||
|
// SHOULD be equal to the actual `service.name` resource attribute of the
|
||
|
// remote service if any.
|
||
|
func PeerService(val string) attribute.KeyValue {
|
||
|
return PeerServiceKey.String(val)
|
||
|
}
|
||
|
|
||
|
// Span attributes used by AWS Lambda (in addition to general `faas`
|
||
|
// attributes).
|
||
|
const (
|
||
|
// AWSLambdaInvokedARNKey is the attribute Key conforming to the
|
||
|
// "aws.lambda.invoked_arn" semantic conventions. It represents 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).
|
||
|
//
|
||
|
// Type: string
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Examples: 'arn:aws:lambda:us-east-1:123456:function:myfunction:myalias'
|
||
|
// Note: This may be different from `cloud.resource_id` if an alias is
|
||
|
// involved.
|
||
|
AWSLambdaInvokedARNKey = attribute.Key("aws.lambda.invoked_arn")
|
||
|
)
|
||
|
|
||
|
// AWSLambdaInvokedARN returns an attribute KeyValue conforming to the
|
||
|
// "aws.lambda.invoked_arn" semantic conventions. It represents 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).
|
||
|
func AWSLambdaInvokedARN(val string) attribute.KeyValue {
|
||
|
return AWSLambdaInvokedARNKey.String(val)
|
||
|
}
|
||
|
|
||
|
// Semantic conventions for the OpenTracing Shim
|
||
|
const (
|
||
|
// OpentracingRefTypeKey is the attribute Key conforming to the
|
||
|
// "opentracing.ref_type" semantic conventions. It represents the
|
||
|
// parent-child Reference type
|
||
|
//
|
||
|
// Type: Enum
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Note: The causal relationship between a child Span and a parent Span.
|
||
|
OpentracingRefTypeKey = attribute.Key("opentracing.ref_type")
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// The parent Span depends on the child Span in some capacity
|
||
|
OpentracingRefTypeChildOf = OpentracingRefTypeKey.String("child_of")
|
||
|
// The parent Span doesn't depend in any way on the result of the child Span
|
||
|
OpentracingRefTypeFollowsFrom = OpentracingRefTypeKey.String("follows_from")
|
||
|
)
|
||
|
|
||
|
// Span attributes used by non-OTLP exporters to represent OpenTelemetry Span's
|
||
|
// concepts.
|
||
|
const (
|
||
|
// OTelStatusCodeKey is the attribute Key conforming to the
|
||
|
// "otel.status_code" semantic conventions. It represents the name of the
|
||
|
// code, either "OK" or "ERROR". MUST NOT be set if the status code is
|
||
|
// UNSET.
|
||
|
//
|
||
|
// Type: Enum
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: stable
|
||
|
OTelStatusCodeKey = attribute.Key("otel.status_code")
|
||
|
|
||
|
// OTelStatusDescriptionKey is the attribute Key conforming to the
|
||
|
// "otel.status_description" semantic conventions. It represents the
|
||
|
// description of the Status if it has a value, otherwise not set.
|
||
|
//
|
||
|
// Type: string
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: stable
|
||
|
// Examples: 'resource not found'
|
||
|
OTelStatusDescriptionKey = attribute.Key("otel.status_description")
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// The operation has been validated by an Application developer or Operator to have completed successfully
|
||
|
OTelStatusCodeOk = OTelStatusCodeKey.String("OK")
|
||
|
// The operation contains an error
|
||
|
OTelStatusCodeError = OTelStatusCodeKey.String("ERROR")
|
||
|
)
|
||
|
|
||
|
// OTelStatusDescription returns an attribute KeyValue conforming to the
|
||
|
// "otel.status_description" semantic conventions. It represents the
|
||
|
// description of the Status if it has a value, otherwise not set.
|
||
|
func OTelStatusDescription(val string) attribute.KeyValue {
|
||
|
return OTelStatusDescriptionKey.String(val)
|
||
|
}
|
||
|
|
||
|
// The `aws` conventions apply to operations using the AWS SDK. They map
|
||
|
// request or response parameters in AWS SDK API calls to attributes on a Span.
|
||
|
// The conventions have been collected over time based on feedback from AWS
|
||
|
// users of tracing and will continue to evolve as new interesting conventions
|
||
|
// are found.
|
||
|
// Some descriptions are also provided for populating general OpenTelemetry
|
||
|
// semantic conventions based on these APIs.
|
||
|
const (
|
||
|
// AWSRequestIDKey is the attribute Key conforming to the "aws.request_id"
|
||
|
// semantic conventions. It represents the AWS request ID as returned in
|
||
|
// the response headers `x-amz-request-id` or `x-amz-requestid`.
|
||
|
//
|
||
|
// Type: string
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Examples: '79b9da39-b7ae-508a-a6bc-864b2829c622', 'C9ER4AJX75574TDJ'
|
||
|
AWSRequestIDKey = attribute.Key("aws.request_id")
|
||
|
)
|
||
|
|
||
|
// AWSRequestID returns an attribute KeyValue conforming to the
|
||
|
// "aws.request_id" semantic conventions. It represents the AWS request ID as
|
||
|
// returned in the response headers `x-amz-request-id` or `x-amz-requestid`.
|
||
|
func AWSRequestID(val string) attribute.KeyValue {
|
||
|
return AWSRequestIDKey.String(val)
|
||
|
}
|
||
|
|
||
|
// Attributes that exist for S3 request types.
|
||
|
const (
|
||
|
// AWSS3BucketKey is the attribute Key conforming to the "aws.s3.bucket"
|
||
|
// semantic conventions. It represents 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.
|
||
|
//
|
||
|
// Type: string
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Examples: '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`.
|
||
|
AWSS3BucketKey = attribute.Key("aws.s3.bucket")
|
||
|
|
||
|
// AWSS3CopySourceKey is the attribute Key conforming to the
|
||
|
// "aws.s3.copy_source" semantic conventions. It represents the source
|
||
|
// object (in the form `bucket`/`key`) for the copy operation.
|
||
|
//
|
||
|
// Type: string
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Examples: '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)
|
||
|
AWSS3CopySourceKey = attribute.Key("aws.s3.copy_source")
|
||
|
|
||
|
// AWSS3DeleteKey is the attribute Key conforming to the "aws.s3.delete"
|
||
|
// semantic conventions. It represents the delete request container that
|
||
|
// specifies the objects to be deleted.
|
||
|
//
|
||
|
// Type: string
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Examples:
|
||
|
// '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).
|
||
|
AWSS3DeleteKey = attribute.Key("aws.s3.delete")
|
||
|
|
||
|
// AWSS3KeyKey is the attribute Key conforming to the "aws.s3.key" semantic
|
||
|
// conventions. It represents 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.
|
||
|
//
|
||
|
// Type: string
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Examples: '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)
|
||
|
AWSS3KeyKey = attribute.Key("aws.s3.key")
|
||
|
|
||
|
// AWSS3PartNumberKey is the attribute Key conforming to the
|
||
|
// "aws.s3.part_number" semantic conventions. It represents the part number
|
||
|
// of the part being uploaded in a multipart-upload operation. This is a
|
||
|
// positive integer between 1 and 10,000.
|
||
|
//
|
||
|
// Type: int
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Examples: 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).
|
||
|
AWSS3PartNumberKey = attribute.Key("aws.s3.part_number")
|
||
|
|
||
|
// AWSS3UploadIDKey is the attribute Key conforming to the
|
||
|
// "aws.s3.upload_id" semantic conventions. It represents the upload ID
|
||
|
// that identifies the multipart upload.
|
||
|
//
|
||
|
// Type: string
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Examples: '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)
|
||
|
AWSS3UploadIDKey = attribute.Key("aws.s3.upload_id")
|
||
|
)
|
||
|
|
||
|
// AWSS3Bucket returns an attribute KeyValue conforming to the
|
||
|
// "aws.s3.bucket" semantic conventions. It represents 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.
|
||
|
func AWSS3Bucket(val string) attribute.KeyValue {
|
||
|
return AWSS3BucketKey.String(val)
|
||
|
}
|
||
|
|
||
|
// AWSS3CopySource returns an attribute KeyValue conforming to the
|
||
|
// "aws.s3.copy_source" semantic conventions. It represents the source object
|
||
|
// (in the form `bucket`/`key`) for the copy operation.
|
||
|
func AWSS3CopySource(val string) attribute.KeyValue {
|
||
|
return AWSS3CopySourceKey.String(val)
|
||
|
}
|
||
|
|
||
|
// AWSS3Delete returns an attribute KeyValue conforming to the
|
||
|
// "aws.s3.delete" semantic conventions. It represents the delete request
|
||
|
// container that specifies the objects to be deleted.
|
||
|
func AWSS3Delete(val string) attribute.KeyValue {
|
||
|
return AWSS3DeleteKey.String(val)
|
||
|
}
|
||
|
|
||
|
// AWSS3Key returns an attribute KeyValue conforming to the "aws.s3.key"
|
||
|
// semantic conventions. It represents 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.
|
||
|
func AWSS3Key(val string) attribute.KeyValue {
|
||
|
return AWSS3KeyKey.String(val)
|
||
|
}
|
||
|
|
||
|
// AWSS3PartNumber returns an attribute KeyValue conforming to the
|
||
|
// "aws.s3.part_number" semantic conventions. It represents the part number of
|
||
|
// the part being uploaded in a multipart-upload operation. This is a positive
|
||
|
// integer between 1 and 10,000.
|
||
|
func AWSS3PartNumber(val int) attribute.KeyValue {
|
||
|
return AWSS3PartNumberKey.Int(val)
|
||
|
}
|
||
|
|
||
|
// AWSS3UploadID returns an attribute KeyValue conforming to the
|
||
|
// "aws.s3.upload_id" semantic conventions. It represents the upload ID that
|
||
|
// identifies the multipart upload.
|
||
|
func AWSS3UploadID(val string) attribute.KeyValue {
|
||
|
return AWSS3UploadIDKey.String(val)
|
||
|
}
|
||
|
|
||
|
// Semantic conventions to apply when instrumenting the GraphQL implementation.
|
||
|
// They map GraphQL operations to attributes on a Span.
|
||
|
const (
|
||
|
// GraphqlDocumentKey is the attribute Key conforming to the
|
||
|
// "graphql.document" semantic conventions. It represents the GraphQL
|
||
|
// document being executed.
|
||
|
//
|
||
|
// Type: string
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Examples: 'query findBookByID { bookByID(id: ?) { name } }'
|
||
|
// Note: The value may be sanitized to exclude sensitive information.
|
||
|
GraphqlDocumentKey = attribute.Key("graphql.document")
|
||
|
|
||
|
// GraphqlOperationNameKey is the attribute Key conforming to the
|
||
|
// "graphql.operation.name" semantic conventions. It represents the name of
|
||
|
// the operation being executed.
|
||
|
//
|
||
|
// Type: string
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Examples: 'findBookByID'
|
||
|
GraphqlOperationNameKey = attribute.Key("graphql.operation.name")
|
||
|
|
||
|
// GraphqlOperationTypeKey is the attribute Key conforming to the
|
||
|
// "graphql.operation.type" semantic conventions. It represents the type of
|
||
|
// the operation being executed.
|
||
|
//
|
||
|
// Type: Enum
|
||
|
// RequirementLevel: Optional
|
||
|
// Stability: experimental
|
||
|
// Examples: 'query', 'mutation', 'subscription'
|
||
|
GraphqlOperationTypeKey = attribute.Key("graphql.operation.type")
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
// GraphQL query
|
||
|
GraphqlOperationTypeQuery = GraphqlOperationTypeKey.String("query")
|
||
|
// GraphQL mutation
|
||
|
GraphqlOperationTypeMutation = GraphqlOperationTypeKey.String("mutation")
|
||
|
// GraphQL subscription
|
||
|
GraphqlOperationTypeSubscription = GraphqlOperationTypeKey.String("subscription")
|
||
|
)
|
||
|
|
||
|
// GraphqlDocument returns an attribute KeyValue conforming to the
|
||
|
// "graphql.document" semantic conventions. It represents the GraphQL document
|
||
|
// being executed.
|
||
|
func GraphqlDocument(val string) attribute.KeyValue {
|
||
|
return GraphqlDocumentKey.String(val)
|
||
|
}
|
||
|
|
||
|
// GraphqlOperationName returns an attribute KeyValue conforming to the
|
||
|
// "graphql.operation.name" semantic conventions. It represents the name of the
|
||
|
// operation being executed.
|
||
|
func GraphqlOperationName(val string) attribute.KeyValue {
|
||
|
return GraphqlOperationNameKey.String(val)
|
||
|
}
|