Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .github/workflows/plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -299,24 +299,6 @@ jobs:
- run: yarn test:plugins:ci
- uses: codecov/codecov-action@v2

fs:
runs-on: ubuntu-latest
env:
PLUGINS: fs
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/node/setup
- run: yarn install
- uses: ./.github/actions/node/12
- run: yarn test:plugins:ci
- uses: ./.github/actions/node/14
- run: yarn test:plugins:ci
- uses: ./.github/actions/node/16
- run: yarn test:plugins:ci
- uses: ./.github/actions/node/latest
- run: yarn test:plugins:ci
- uses: codecov/codecov-action@v2

generic-pool:
runs-on: ubuntu-latest
env:
Expand Down
2 changes: 0 additions & 2 deletions docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ tracer.use('pg', {
<h5 id="generic-pool"></h5>
<h5 id="google-cloud-pubsub"></h5>
<h5 id="fastify"></h5>
<h5 id="fs"></h5>
<h5 id="graphql"></h5>
<h5 id="graphql-tags"></h5>
<h5 id="graphql-config"></h5>
Expand Down Expand Up @@ -108,7 +107,6 @@ tracer.use('pg', {
* [elasticsearch](./interfaces/plugins.elasticsearch.html)
* [express](./interfaces/plugins.express.html)
* [fastify](./interfaces/plugins.fastify.html)
* [fs](./interfaces/plugins.fs.html)
* [generic-pool](./interfaces/plugins.generic_pool.html)
* [google-cloud-pubsub](./interfaces/plugins.google_cloud_pubsub.html)
* [graphql](./interfaces/plugins.graphql.html)
Expand Down
1 change: 0 additions & 1 deletion docs/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ tracer.use('express');
tracer.use('express', httpServerOptions);
tracer.use('fastify');
tracer.use('fastify', httpServerOptions);
tracer.use('fs');
tracer.use('generic-pool');
tracer.use('google-cloud-pubsub');
tracer.use('graphql', graphqlOptions);
Expand Down
7 changes: 0 additions & 7 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,6 @@ interface Plugins {
"elasticsearch": plugins.elasticsearch;
"express": plugins.express;
"fastify": plugins.fastify;
"fs": plugins.fs;
"generic-pool": plugins.generic_pool;
"google-cloud-pubsub": plugins.google_cloud_pubsub;
"graphql": plugins.graphql;
Expand Down Expand Up @@ -903,12 +902,6 @@ declare namespace plugins {
*/
interface fastify extends HttpServer {}

/**
* This plugin automatically instruments the
* [fs](https://nodejs.org/api/fs.html) module.
*/
interface fs extends Instrumentation {}

/**
* This plugin patches the [generic-pool](https://github.com/coopernurse/node-pool)
* module to bind the callbacks the the caller context.
Expand Down
Loading