Skip to content

Commit 9062abf

Browse files
committed
move lib dir
1 parent cb29d63 commit 9062abf

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

detectors/node/opentelemetry-resource-detector-aws/src/detectors/AwsBeanstalkDetectorSync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import {
3333
ATTR_SERVICE_INSTANCE_ID,
3434
CLOUD_PROVIDER_VALUE_AWS,
3535
CLOUD_PLATFORM_VALUE_AWS_ELASTIC_BEANSTALK,
36-
} from '../../lib/semconv';
36+
} from '../lib/semconv';
3737
import * as fs from 'fs';
3838
import * as util from 'util';
3939

detectors/node/opentelemetry-resource-detector-aws/src/detectors/AwsEc2DetectorSync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import {
3434
ATTR_HOST_NAME,
3535
CLOUD_PROVIDER_VALUE_AWS,
3636
CLOUD_PLATFORM_VALUE_AWS_EC2,
37-
} from '../../lib/semconv';
37+
} from '../lib/semconv';
3838
import * as http from 'http';
3939

4040
/**

detectors/node/opentelemetry-resource-detector-aws/src/detectors/AwsEcsDetectorSync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import {
4242
ATTR_AWS_LOG_STREAM_ARNS,
4343
CLOUD_PROVIDER_VALUE_AWS,
4444
CLOUD_PLATFORM_VALUE_AWS_ECS,
45-
} from '../../lib/semconv';
45+
} from '../lib/semconv';
4646
// Patch until the OpenTelemetry SDK is updated to ship this attribute
4747
import { SemanticResourceAttributes as AdditionalSemanticResourceAttributes } from './SemanticResourceAttributes';
4848
import * as http from 'http';

detectors/node/opentelemetry-resource-detector-aws/src/detectors/AwsEksDetectorSync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import {
3030
ATTR_CONTAINER_ID,
3131
CLOUD_PROVIDER_VALUE_AWS,
3232
CLOUD_PLATFORM_VALUE_AWS_EKS,
33-
} from '../../lib/semconv';
33+
} from '../lib/semconv';
3434
import * as https from 'https';
3535
import * as fs from 'fs';
3636
import * as util from 'util';

detectors/node/opentelemetry-resource-detector-aws/src/detectors/AwsLambdaDetectorSync.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import {
2929
ATTR_FAAS_NAME,
3030
CLOUD_PROVIDER_VALUE_AWS,
3131
CLOUD_PLATFORM_VALUE_AWS_LAMBDA,
32-
} from '../../lib/semconv';
32+
} from '../lib/semconv';
3333

3434
/**
3535
* The AwsLambdaDetector can be used to detect if a process is running in AWS Lambda

detectors/node/opentelemetry-resource-detector-aws/lib/semconv.ts renamed to detectors/node/opentelemetry-resource-detector-aws/src/lib/semconv.ts

File renamed without changes.

detectors/node/opentelemetry-resource-detector-aws/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"include": [
88
"src/**/*.ts",
99
"test/**/*.ts",
10-
"lib/**/*.ts"
10+
"src/lib/**/*.ts"
1111
]
1212
}

0 commit comments

Comments
 (0)