Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions bottlecap/src/tags/lambda/tags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,10 @@ const ACCOUNT_ID_KEY: &str = "account_id";

// Span tag keys for durable function execution context
pub const REQUEST_ID_KEY: &str = "request_id";
pub const DURABLE_EXECUTION_ID_KEY: &str = "aws_lambda.durable_function.execution_id";
pub const DURABLE_EXECUTION_NAME_KEY: &str = "aws_lambda.durable_function.execution_name";
pub const DURABLE_FUNCTION_FIRST_INVOCATION_KEY: &str =
"aws_lambda.durable_function.first_invocation";
pub const DURABLE_FUNCTION_EXECUTION_STATUS_KEY: &str =
"aws_lambda.durable_function.execution_status";
pub const DURABLE_EXECUTION_ID_KEY: &str = "aws.durable.execution_id";
pub const DURABLE_EXECUTION_NAME_KEY: &str = "aws.durable.execution_name";
pub const DURABLE_FUNCTION_FIRST_INVOCATION_KEY: &str = "aws.durable.first_invocation";
pub const DURABLE_FUNCTION_EXECUTION_STATUS_KEY: &str = "aws.durable.execution_status";

Comment on lines +55 to 59
const AWS_ACCOUNT_KEY: &str = "aws_account";
const RESOURCE_KEY: &str = "resource";
Expand Down
Loading