├── .asf.yaml ├── .dockerignore ├── .editorconfig ├── .eslintrc.js ├── .file-headerrc ├── .github └── workflows │ ├── build.yaml │ ├── license.yaml │ └── test.yaml ├── .gitignore ├── .gitmodules ├── .husky └── pre-commit ├── .licenserc.yaml ├── .prettierrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── dist ├── LICENSE ├── NOTICE └── licenses │ ├── LICENSE-grpc_tools_node_protoc_ts.txt │ ├── LICENSE-on-finished.txt │ ├── LICENSE-protobuf-js.txt │ ├── LICENSE-semver.txt │ ├── LICENSE-tslib.txt │ ├── LICENSE-uuid.txt │ └── LICENSE-winston.txt ├── docs └── How-to-release.md ├── jest.config.js ├── jest.setup.js ├── package.json ├── scripts └── protoc.sh ├── src ├── Log.ts ├── Tag.ts ├── agent │ └── protocol │ │ ├── Protocol.ts │ │ └── grpc │ │ ├── AuthInterceptor.ts │ │ ├── GrpcProtocol.ts │ │ ├── SegmentObjectAdapter.ts │ │ └── clients │ │ ├── Client.ts │ │ ├── HeartbeatClient.ts │ │ └── TraceReportClient.ts ├── annotations │ └── index.ts ├── aws │ ├── AWSLambdaGatewayAPIHTTP.ts │ ├── AWSLambdaGatewayAPIREST.ts │ ├── AWSLambdaTriggerPlugin.ts │ └── SDK2.ts ├── azure │ └── AzureHttpTriggerPlugin.ts ├── config │ └── AgentConfig.ts ├── core │ ├── OptionMethods.ts │ ├── PluginInstaller.ts │ └── SwPlugin.ts ├── egg │ └── index.ts ├── index.ts ├── lib │ └── EventEmitter.ts ├── logging │ └── index.ts ├── plugins │ ├── AMQPLibPlugin.ts │ ├── AWS2DynamoDBPlugin.ts │ ├── AWS2LambdaPlugin.ts │ ├── AWS2SNSPlugin.ts │ ├── AWS2SQSPlugin.ts │ ├── AxiosPlugin.ts │ ├── ExpressPlugin.ts │ ├── HttpPlugin.ts │ ├── IORedisPlugin.ts │ ├── MongoDBPlugin.ts │ ├── MongoosePlugin.ts │ ├── MySQL2Plugin.ts │ ├── MySQLPlugin.ts │ └── PgPlugin.ts ├── trace │ ├── Component.ts │ ├── ID.ts │ ├── NewID.ts │ ├── context │ │ ├── CarrierItem.ts │ │ ├── Context.ts │ │ ├── ContextCarrier.ts │ │ ├── ContextManager.ts │ │ ├── DummyContext.ts │ │ ├── Segment.ts │ │ ├── SegmentRef.ts │ │ └── SpanContext.ts │ └── span │ │ ├── DummySpan.ts │ │ ├── EntrySpan.ts │ │ ├── ExitSpan.ts │ │ ├── LocalSpan.ts │ │ └── Span.ts └── tsconfig.json ├── tests ├── build │ ├── Dockerfile │ ├── main.ts │ ├── package.json │ └── tsconfig.json ├── plugins │ ├── axios │ │ ├── client.ts │ │ ├── docker-compose.yml │ │ ├── expected.data.yaml │ │ ├── server.ts │ │ └── test.ts │ ├── common │ │ ├── Dockerfile.agent │ │ └── base-compose.yml │ ├── express │ │ ├── client.ts │ │ ├── docker-compose.yml │ │ ├── expected.data.yaml │ │ ├── server.ts │ │ └── test.ts │ ├── http │ │ ├── client.ts │ │ ├── docker-compose.yml │ │ ├── expected.data.yaml │ │ ├── server.ts │ │ └── test.ts │ ├── ioredis │ │ ├── client.ts │ │ ├── docker-compose.yml │ │ ├── expected.data.yaml │ │ ├── server.ts │ │ └── test.ts │ ├── mongodb │ │ ├── client.ts │ │ ├── docker-compose.yml │ │ ├── expected.data.yaml │ │ ├── init │ │ │ └── init.js │ │ ├── server.ts │ │ └── test.ts │ ├── mongoose │ │ ├── client.ts │ │ ├── docker-compose.yml │ │ ├── expected.data.yaml │ │ ├── init │ │ │ └── init.js │ │ ├── server.ts │ │ └── test.ts │ ├── mysql │ │ ├── client.ts │ │ ├── docker-compose.yml │ │ ├── expected.data.yaml │ │ ├── init │ │ │ └── init.sql │ │ ├── server.ts │ │ └── test.ts │ ├── mysql2 │ │ ├── client.ts │ │ ├── docker-compose.yml │ │ ├── expected.data.yaml │ │ ├── init │ │ │ └── init.sql │ │ ├── server.ts │ │ └── test.ts │ └── pg │ │ ├── client.ts │ │ ├── docker-compose.yml │ │ ├── expected.data.yaml │ │ ├── init │ │ └── init.sql │ │ ├── server.ts │ │ └── test.ts ├── tsconfig.json └── tslint.json └── tsconfig.json /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.file-headerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/.file-headerrc -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/license.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/.github/workflows/license.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/.gitmodules -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run lint-staged 5 | -------------------------------------------------------------------------------- /.licenserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/.licenserc.yaml -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /dist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/dist/LICENSE -------------------------------------------------------------------------------- /dist/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/dist/NOTICE -------------------------------------------------------------------------------- /dist/licenses/LICENSE-grpc_tools_node_protoc_ts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/dist/licenses/LICENSE-grpc_tools_node_protoc_ts.txt -------------------------------------------------------------------------------- /dist/licenses/LICENSE-on-finished.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/dist/licenses/LICENSE-on-finished.txt -------------------------------------------------------------------------------- /dist/licenses/LICENSE-protobuf-js.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/dist/licenses/LICENSE-protobuf-js.txt -------------------------------------------------------------------------------- /dist/licenses/LICENSE-semver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/dist/licenses/LICENSE-semver.txt -------------------------------------------------------------------------------- /dist/licenses/LICENSE-tslib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/dist/licenses/LICENSE-tslib.txt -------------------------------------------------------------------------------- /dist/licenses/LICENSE-uuid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/dist/licenses/LICENSE-uuid.txt -------------------------------------------------------------------------------- /dist/licenses/LICENSE-winston.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/dist/licenses/LICENSE-winston.txt -------------------------------------------------------------------------------- /docs/How-to-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/docs/How-to-release.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/jest.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /scripts/protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/scripts/protoc.sh -------------------------------------------------------------------------------- /src/Log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/Log.ts -------------------------------------------------------------------------------- /src/Tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/Tag.ts -------------------------------------------------------------------------------- /src/agent/protocol/Protocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/agent/protocol/Protocol.ts -------------------------------------------------------------------------------- /src/agent/protocol/grpc/AuthInterceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/agent/protocol/grpc/AuthInterceptor.ts -------------------------------------------------------------------------------- /src/agent/protocol/grpc/GrpcProtocol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/agent/protocol/grpc/GrpcProtocol.ts -------------------------------------------------------------------------------- /src/agent/protocol/grpc/SegmentObjectAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/agent/protocol/grpc/SegmentObjectAdapter.ts -------------------------------------------------------------------------------- /src/agent/protocol/grpc/clients/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/agent/protocol/grpc/clients/Client.ts -------------------------------------------------------------------------------- /src/agent/protocol/grpc/clients/HeartbeatClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/agent/protocol/grpc/clients/HeartbeatClient.ts -------------------------------------------------------------------------------- /src/agent/protocol/grpc/clients/TraceReportClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/agent/protocol/grpc/clients/TraceReportClient.ts -------------------------------------------------------------------------------- /src/annotations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/annotations/index.ts -------------------------------------------------------------------------------- /src/aws/AWSLambdaGatewayAPIHTTP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/aws/AWSLambdaGatewayAPIHTTP.ts -------------------------------------------------------------------------------- /src/aws/AWSLambdaGatewayAPIREST.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/aws/AWSLambdaGatewayAPIREST.ts -------------------------------------------------------------------------------- /src/aws/AWSLambdaTriggerPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/aws/AWSLambdaTriggerPlugin.ts -------------------------------------------------------------------------------- /src/aws/SDK2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/aws/SDK2.ts -------------------------------------------------------------------------------- /src/azure/AzureHttpTriggerPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/azure/AzureHttpTriggerPlugin.ts -------------------------------------------------------------------------------- /src/config/AgentConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/config/AgentConfig.ts -------------------------------------------------------------------------------- /src/core/OptionMethods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/core/OptionMethods.ts -------------------------------------------------------------------------------- /src/core/PluginInstaller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/core/PluginInstaller.ts -------------------------------------------------------------------------------- /src/core/SwPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/core/SwPlugin.ts -------------------------------------------------------------------------------- /src/egg/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/egg/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/EventEmitter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/lib/EventEmitter.ts -------------------------------------------------------------------------------- /src/logging/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/logging/index.ts -------------------------------------------------------------------------------- /src/plugins/AMQPLibPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/AMQPLibPlugin.ts -------------------------------------------------------------------------------- /src/plugins/AWS2DynamoDBPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/AWS2DynamoDBPlugin.ts -------------------------------------------------------------------------------- /src/plugins/AWS2LambdaPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/AWS2LambdaPlugin.ts -------------------------------------------------------------------------------- /src/plugins/AWS2SNSPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/AWS2SNSPlugin.ts -------------------------------------------------------------------------------- /src/plugins/AWS2SQSPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/AWS2SQSPlugin.ts -------------------------------------------------------------------------------- /src/plugins/AxiosPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/AxiosPlugin.ts -------------------------------------------------------------------------------- /src/plugins/ExpressPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/ExpressPlugin.ts -------------------------------------------------------------------------------- /src/plugins/HttpPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/HttpPlugin.ts -------------------------------------------------------------------------------- /src/plugins/IORedisPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/IORedisPlugin.ts -------------------------------------------------------------------------------- /src/plugins/MongoDBPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/MongoDBPlugin.ts -------------------------------------------------------------------------------- /src/plugins/MongoosePlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/MongoosePlugin.ts -------------------------------------------------------------------------------- /src/plugins/MySQL2Plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/MySQL2Plugin.ts -------------------------------------------------------------------------------- /src/plugins/MySQLPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/MySQLPlugin.ts -------------------------------------------------------------------------------- /src/plugins/PgPlugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/plugins/PgPlugin.ts -------------------------------------------------------------------------------- /src/trace/Component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/Component.ts -------------------------------------------------------------------------------- /src/trace/ID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/ID.ts -------------------------------------------------------------------------------- /src/trace/NewID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/NewID.ts -------------------------------------------------------------------------------- /src/trace/context/CarrierItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/context/CarrierItem.ts -------------------------------------------------------------------------------- /src/trace/context/Context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/context/Context.ts -------------------------------------------------------------------------------- /src/trace/context/ContextCarrier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/context/ContextCarrier.ts -------------------------------------------------------------------------------- /src/trace/context/ContextManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/context/ContextManager.ts -------------------------------------------------------------------------------- /src/trace/context/DummyContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/context/DummyContext.ts -------------------------------------------------------------------------------- /src/trace/context/Segment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/context/Segment.ts -------------------------------------------------------------------------------- /src/trace/context/SegmentRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/context/SegmentRef.ts -------------------------------------------------------------------------------- /src/trace/context/SpanContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/context/SpanContext.ts -------------------------------------------------------------------------------- /src/trace/span/DummySpan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/span/DummySpan.ts -------------------------------------------------------------------------------- /src/trace/span/EntrySpan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/span/EntrySpan.ts -------------------------------------------------------------------------------- /src/trace/span/ExitSpan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/span/ExitSpan.ts -------------------------------------------------------------------------------- /src/trace/span/LocalSpan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/span/LocalSpan.ts -------------------------------------------------------------------------------- /src/trace/span/Span.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/trace/span/Span.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /tests/build/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/build/Dockerfile -------------------------------------------------------------------------------- /tests/build/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/build/main.ts -------------------------------------------------------------------------------- /tests/build/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/build/package.json -------------------------------------------------------------------------------- /tests/build/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/build/tsconfig.json -------------------------------------------------------------------------------- /tests/plugins/axios/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/axios/client.ts -------------------------------------------------------------------------------- /tests/plugins/axios/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/axios/docker-compose.yml -------------------------------------------------------------------------------- /tests/plugins/axios/expected.data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/axios/expected.data.yaml -------------------------------------------------------------------------------- /tests/plugins/axios/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/axios/server.ts -------------------------------------------------------------------------------- /tests/plugins/axios/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/axios/test.ts -------------------------------------------------------------------------------- /tests/plugins/common/Dockerfile.agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/common/Dockerfile.agent -------------------------------------------------------------------------------- /tests/plugins/common/base-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/common/base-compose.yml -------------------------------------------------------------------------------- /tests/plugins/express/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/express/client.ts -------------------------------------------------------------------------------- /tests/plugins/express/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/express/docker-compose.yml -------------------------------------------------------------------------------- /tests/plugins/express/expected.data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/express/expected.data.yaml -------------------------------------------------------------------------------- /tests/plugins/express/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/express/server.ts -------------------------------------------------------------------------------- /tests/plugins/express/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/express/test.ts -------------------------------------------------------------------------------- /tests/plugins/http/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/http/client.ts -------------------------------------------------------------------------------- /tests/plugins/http/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/http/docker-compose.yml -------------------------------------------------------------------------------- /tests/plugins/http/expected.data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/http/expected.data.yaml -------------------------------------------------------------------------------- /tests/plugins/http/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/http/server.ts -------------------------------------------------------------------------------- /tests/plugins/http/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/http/test.ts -------------------------------------------------------------------------------- /tests/plugins/ioredis/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/ioredis/client.ts -------------------------------------------------------------------------------- /tests/plugins/ioredis/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/ioredis/docker-compose.yml -------------------------------------------------------------------------------- /tests/plugins/ioredis/expected.data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/ioredis/expected.data.yaml -------------------------------------------------------------------------------- /tests/plugins/ioredis/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/ioredis/server.ts -------------------------------------------------------------------------------- /tests/plugins/ioredis/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/ioredis/test.ts -------------------------------------------------------------------------------- /tests/plugins/mongodb/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mongodb/client.ts -------------------------------------------------------------------------------- /tests/plugins/mongodb/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mongodb/docker-compose.yml -------------------------------------------------------------------------------- /tests/plugins/mongodb/expected.data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mongodb/expected.data.yaml -------------------------------------------------------------------------------- /tests/plugins/mongodb/init/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mongodb/init/init.js -------------------------------------------------------------------------------- /tests/plugins/mongodb/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mongodb/server.ts -------------------------------------------------------------------------------- /tests/plugins/mongodb/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mongodb/test.ts -------------------------------------------------------------------------------- /tests/plugins/mongoose/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mongoose/client.ts -------------------------------------------------------------------------------- /tests/plugins/mongoose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mongoose/docker-compose.yml -------------------------------------------------------------------------------- /tests/plugins/mongoose/expected.data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mongoose/expected.data.yaml -------------------------------------------------------------------------------- /tests/plugins/mongoose/init/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mongoose/init/init.js -------------------------------------------------------------------------------- /tests/plugins/mongoose/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mongoose/server.ts -------------------------------------------------------------------------------- /tests/plugins/mongoose/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mongoose/test.ts -------------------------------------------------------------------------------- /tests/plugins/mysql/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mysql/client.ts -------------------------------------------------------------------------------- /tests/plugins/mysql/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mysql/docker-compose.yml -------------------------------------------------------------------------------- /tests/plugins/mysql/expected.data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mysql/expected.data.yaml -------------------------------------------------------------------------------- /tests/plugins/mysql/init/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mysql/init/init.sql -------------------------------------------------------------------------------- /tests/plugins/mysql/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mysql/server.ts -------------------------------------------------------------------------------- /tests/plugins/mysql/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mysql/test.ts -------------------------------------------------------------------------------- /tests/plugins/mysql2/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mysql2/client.ts -------------------------------------------------------------------------------- /tests/plugins/mysql2/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mysql2/docker-compose.yml -------------------------------------------------------------------------------- /tests/plugins/mysql2/expected.data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mysql2/expected.data.yaml -------------------------------------------------------------------------------- /tests/plugins/mysql2/init/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mysql2/init/init.sql -------------------------------------------------------------------------------- /tests/plugins/mysql2/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mysql2/server.ts -------------------------------------------------------------------------------- /tests/plugins/mysql2/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/mysql2/test.ts -------------------------------------------------------------------------------- /tests/plugins/pg/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/pg/client.ts -------------------------------------------------------------------------------- /tests/plugins/pg/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/pg/docker-compose.yml -------------------------------------------------------------------------------- /tests/plugins/pg/expected.data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/pg/expected.data.yaml -------------------------------------------------------------------------------- /tests/plugins/pg/init/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/pg/init/init.sql -------------------------------------------------------------------------------- /tests/plugins/pg/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/pg/server.ts -------------------------------------------------------------------------------- /tests/plugins/pg/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/plugins/pg/test.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tests/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tests/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/skywalking-nodejs/HEAD/tsconfig.json --------------------------------------------------------------------------------