We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a406a64 commit 01469ccCopy full SHA for 01469cc
packages/resource-detector-aws/src/detectors/AwsEcsDetector.ts
@@ -178,9 +178,6 @@ export class AwsEcsDetector implements ResourceDetector {
178
* Extract container ID from a cgroup line using regex pattern matching.
179
* Handles the new AWS ECS Fargate format: /ecs/<taskId>/<taskId>-<containerId>
180
* Returns the last segment after the final '/' which should be the complete container ID.
181
- *
182
- * Note: This implementation uses regex patterns instead of manual string parsing
183
- * as suggested in PR review to handle the new ECS Fargate cgroup format more reliably.
184
*/
185
private _extractContainerIdFromLine(line: string): string | undefined {
186
if (!line) {
0 commit comments