forked from open-telemetry/opentelemetry-js-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use localhost for services in CI (open-telemetry#816)
- Loading branch information
Showing
29 changed files
with
199 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
163 changes: 82 additions & 81 deletions
163
plugins/node/opentelemetry-instrumentation-aws-sdk/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,82 +1,83 @@ | ||
{ | ||
"name": "@opentelemetry/instrumentation-aws-sdk", | ||
"version": "0.4.0", | ||
"description": "OpenTelemetry automatic instrumentation for the `aws-sdk` package", | ||
"keywords": [ | ||
"aws", | ||
"opentelemetry", | ||
"aws-sdk" | ||
], | ||
"homepage": "https://github.com/open-telemetry/opentelemetry-js-contrib#readme", | ||
"license": "Apache-2.0", | ||
"author": "OpenTelemetry Authors", | ||
"bugs": { | ||
"url": "https://github.com/open-telemetry/opentelemetry-js-contrib/issues" | ||
}, | ||
"main": "build/src/index.js", | ||
"types": "build/src/index.d.ts", | ||
"files": [ | ||
"build/src/**/*.js", | ||
"build/src/**/*.js.map", | ||
"build/src/**/*.d.ts", | ||
"doc", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": "open-telemetry/opentelemetry-js-contrib", | ||
"scripts": { | ||
"clean": "rimraf build/*", | ||
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../", | ||
"compile": "npm run version:update && tsc -p .", | ||
"lint": "eslint . --ext .ts", | ||
"lint:fix": "eslint . --ext .ts --fix", | ||
"precompile": "tsc --version && lerna run version --scope $(npm pkg get name) --include-filtered-dependencies", | ||
"prewatch": "npm run precompile", | ||
"prepare": "npm run compile", | ||
"tdd": "npm run test -- --watch-extensions ts --watch", | ||
"test": "nyc ts-mocha -p tsconfig.json --require '@opentelemetry/contrib-test-utils' 'test/**/*.test.ts'", | ||
"test-all-versions": "tav", | ||
"version:update": "node ../../../scripts/version-update.js", | ||
"watch": "tsc -w" | ||
}, | ||
"peerDependencies": { | ||
"@opentelemetry/api": "^1.0.1" | ||
}, | ||
"dependencies": { | ||
"@opentelemetry/core": "^1.0.0", | ||
"@opentelemetry/instrumentation": "^0.27.0", | ||
"@opentelemetry/semantic-conventions": "^1.0.0", | ||
"@opentelemetry/propagation-utils": "^0.26.0" | ||
}, | ||
"devDependencies": { | ||
"@aws-sdk/client-dynamodb": "3.37.0", | ||
"@aws-sdk/client-s3": "3.37.0", | ||
"@aws-sdk/client-sqs": "3.37.0", | ||
"@aws-sdk/types": "3.37.0", | ||
"@opentelemetry/api": "1.0.1", | ||
"@opentelemetry/sdk-trace-base": "1.0.1", | ||
"@types/mocha": "8.2.3", | ||
"@types/node": "14.18.2", | ||
"@types/sinon": "10.0.6", | ||
"aws-sdk": "2.1008.0", | ||
"eslint": "7.32.0", | ||
"expect": "27.4.2", | ||
"mocha": "7.2.0", | ||
"nock": "13.2.1", | ||
"nyc": "15.1.0", | ||
"rimraf": "3.0.2", | ||
"sinon": "12.0.1", | ||
"gts": "3.1.0", | ||
"@opentelemetry/contrib-test-utils": "^0.28.0", | ||
"test-all-versions": "5.0.1", | ||
"ts-mocha": "8.0.0", | ||
"ts-node": "9.1.1", | ||
"typescript": "4.3.4" | ||
}, | ||
"engines": { | ||
"node": ">=8.5.0" | ||
} | ||
} | ||
"name": "@opentelemetry/instrumentation-aws-sdk", | ||
"version": "0.4.0", | ||
"description": "OpenTelemetry automatic instrumentation for the `aws-sdk` package", | ||
"keywords": [ | ||
"aws", | ||
"aws-sdk", | ||
"nodejs", | ||
"opentelemetry" | ||
], | ||
"homepage": "https://github.com/open-telemetry/opentelemetry-js-contrib#readme", | ||
"license": "Apache-2.0", | ||
"author": "OpenTelemetry Authors", | ||
"bugs": { | ||
"url": "https://github.com/open-telemetry/opentelemetry-js-contrib/issues" | ||
}, | ||
"main": "build/src/index.js", | ||
"types": "build/src/index.d.ts", | ||
"files": [ | ||
"build/src/**/*.js", | ||
"build/src/**/*.js.map", | ||
"build/src/**/*.d.ts", | ||
"doc", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"repository": "open-telemetry/opentelemetry-js-contrib", | ||
"scripts": { | ||
"clean": "rimraf build/*", | ||
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json -p ../../", | ||
"compile": "npm run version:update && tsc -p .", | ||
"lint": "eslint . --ext .ts", | ||
"lint:fix": "eslint . --ext .ts --fix", | ||
"precompile": "tsc --version && lerna run version --scope $(npm pkg get name) --include-filtered-dependencies", | ||
"prewatch": "npm run precompile", | ||
"prepare": "npm run compile", | ||
"tdd": "npm run test -- --watch-extensions ts --watch", | ||
"test": "nyc ts-mocha -p tsconfig.json --require '@opentelemetry/contrib-test-utils' 'test/**/*.test.ts'", | ||
"test-all-versions": "tav", | ||
"version:update": "node ../../../scripts/version-update.js", | ||
"watch": "tsc -w" | ||
}, | ||
"peerDependencies": { | ||
"@opentelemetry/api": "^1.0.1" | ||
}, | ||
"dependencies": { | ||
"@opentelemetry/core": "^1.0.0", | ||
"@opentelemetry/instrumentation": "^0.27.0", | ||
"@opentelemetry/semantic-conventions": "^1.0.0", | ||
"@opentelemetry/propagation-utils": "^0.26.0" | ||
}, | ||
"devDependencies": { | ||
"@aws-sdk/client-dynamodb": "3.37.0", | ||
"@aws-sdk/client-s3": "3.37.0", | ||
"@aws-sdk/client-sqs": "3.37.0", | ||
"@aws-sdk/types": "3.37.0", | ||
"@opentelemetry/api": "1.0.1", | ||
"@opentelemetry/sdk-trace-base": "1.0.1", | ||
"@types/mocha": "8.2.3", | ||
"@types/node": "14.18.2", | ||
"@types/sinon": "10.0.6", | ||
"aws-sdk": "2.1008.0", | ||
"eslint": "7.32.0", | ||
"expect": "27.4.2", | ||
"mocha": "7.2.0", | ||
"nock": "13.2.1", | ||
"nyc": "15.1.0", | ||
"rimraf": "3.0.2", | ||
"sinon": "12.0.1", | ||
"gts": "3.1.0", | ||
"@opentelemetry/contrib-test-utils": "^0.28.0", | ||
"test-all-versions": "5.0.1", | ||
"ts-mocha": "8.0.0", | ||
"ts-node": "9.1.1", | ||
"typescript": "4.3.4" | ||
}, | ||
"engines": { | ||
"node": ">=8.5.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.