Skip to content

Commit d244e8d

Browse files
committed
update semconv.ts by using node ../../scripts/gen-semconv-ts.js
1 parent 2c44300 commit d244e8d

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

packages/instrumentation-aws-sdk/src/semconv.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,26 @@ export const ATTR_AWS_SECRETSMANAGER_SECRET_ARN =
3939
*/
4040
export const ATTR_AWS_SNS_TOPIC_ARN = 'aws.sns.topic.arn' as const;
4141

42+
/**
43+
* The ARN of the AWS Step Functions Activity.
44+
*
45+
* @example arn:aws:states:us-east-1:123456789012:activity:get-greeting
46+
*
47+
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
48+
*/
49+
export const ATTR_AWS_STEP_FUNCTIONS_ACTIVITY_ARN =
50+
'aws.step_functions.activity.arn' as const;
51+
52+
/**
53+
* The ARN of the AWS Step Functions State Machine.
54+
*
55+
* @example arn:aws:states:us-east-1:123456789012:stateMachine:myStateMachine:1
56+
*
57+
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
58+
*/
59+
export const ATTR_AWS_STEP_FUNCTIONS_STATE_MACHINE_ARN =
60+
'aws.step_functions.state_machine.arn' as const;
61+
4262
/**
4363
* The name of the operation being performed.
4464
*

0 commit comments

Comments
 (0)