We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ed5ee6 commit 0b4f9dcCopy full SHA for 0b4f9dc
1 file changed
src/stacks/agent.ts
@@ -197,7 +197,9 @@ export class AgentStack extends Stack {
197
198
// Runtime logs and traces
199
runtime.with(agentcoremixins.mixins.CfnRuntimeLogsMixin.APPLICATION_LOGS.toLogGroup(applicationLogGroup));
200
- runtime.with(agentcoremixins.mixins.CfnRuntimeLogsMixin.TRACES.toXRay());
+ // X-Ray trace delivery requires UpdateTraceSegmentDestination pre-configuration at the account level.
201
+ // Disabled until the aws/spans log group and X-Ray resource policy are set up.
202
+ // runtime.with(agentcoremixins.mixins.CfnRuntimeLogsMixin.TRACES.toXRay());
203
runtime.with(agentcoremixins.mixins.CfnRuntimeLogsMixin.USAGE_LOGS.toLogGroup(usageLogGroup));
204
205
NagSuppressions.addResourceSuppressions(runtime, [
0 commit comments