You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: clarify the latest major version of the instrumentation module for some instrumentations (#4837)
In docs, instrumentation, and tests, the major version of the target
module being instrumented was not specified. There should be no functional
change for any current releases of modules with this change. In other
words, any changes to actual instrumentations is capping the major version
supported at the *currently released* major version.
Closes: #4803
Copy file name to clipboardExpand all lines: docs/reference/supported-technologies.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Though you can use Elastic APM [with any Node.js framework](/reference/custom-st
49
49
|[AWS Lambda](/reference/lambda.md)| N/A ||
50
50
|[Azure Functions](/reference/azure-functions.md)| v3, v4 |[Node.js programming model v3 and v4](https://learn.microsoft.com/en-us/azure/azure-functions/functions-node-upgrade-v4)|
|[Koa](/reference/koa.md) via koa-router or @koa/router| >=5.2.0 <14.0.0 | Koa doesn’t have a built in router, so we can’t support Koa directly since we rely on router information for full support. We currently support the most popular Koa router called [koa-router](https://github.com/koajs/koa-router). |
@@ -88,21 +88,21 @@ The Node.js agent will automatically instrument the following modules to give yo
88
88
|[@aws-sdk/client-sqs](https://www.npmjs.com/package/@aws-sdk/client-s3)| >=3.15.0 <4 | Will instrument SQS send/receive/delete messages |
89
89
|[@aws-sdk/client-dynamodb](https://www.npmjs.com/package/@aws-sdk/client-dynamodb)| >=3.15.0 <4 | Will instrument all DynamoDB methods |
90
90
|[cassandra-driver](https://www.npmjs.com/package/cassandra-driver)| >=3.0.0 <5 | Will instrument all queries |
91
-
|[elasticsearch](https://www.npmjs.com/package/elasticsearch)| >=8.0.0 | Will instrument all queries |
92
-
|[@elastic/elasticsearch](https://www.npmjs.com/package/@elastic/elasticsearch)| >=7.0.0 <9.0.0 | Will instrument all queries |
91
+
|[elasticsearch](https://www.npmjs.com/package/elasticsearch)| >=8.0.0 <17 | Will instrument all queries |
92
+
|[@elastic/elasticsearch](https://www.npmjs.com/package/@elastic/elasticsearch)| >=7.0.0 <10.0.0 | Will instrument all queries |
93
93
|[graphql](https://www.npmjs.com/package/graphql)| >=0.7.0 <17 | Will instrument all queries |
94
-
|[handlebars](https://www.npmjs.com/package/handlebars)|*| Will instrument compile and render calls |
95
-
|[jade](https://www.npmjs.com/package/jade)| >=0.5.6 | Will instrument compile and render calls; Deprecated. No longer tested. Use pug. |
96
-
|[pug](https://www.npmjs.com/package/pug)| >=0.1.0 | Will instrument compile and render calls |
94
+
|[handlebars](https://www.npmjs.com/package/handlebars)|>=1 <5| Will instrument compile and render calls |
95
+
|[jade](https://www.npmjs.com/package/jade)| >=0.5.6 <2 | Will instrument compile and render calls; Deprecated. No longer tested. Use pug. |
96
+
|[pug](https://www.npmjs.com/package/pug)| >=0.1.0 <4 | Will instrument compile and render calls |
97
97
|[ioredis](https://www.npmjs.com/package/ioredis)| >=2.0.0 <6.0.0 | Will instrument all queries |
98
-
|[memcached](https://www.npmjs.com/package/memcached)| >=2.2.0 | Will instrument all commands. |
98
+
|[memcached](https://www.npmjs.com/package/memcached)| >=2.2.0 <3 | Will instrument all commands. |
99
99
|[mongodb-core](https://www.npmjs.com/package/mongodb-core)| >=1.2.19 <4 | Will instrument all queries.A lot of higher level MongoDB modules use mongodb-core,so those should be supported as well. |
100
100
|[mongodb](https://www.npmjs.com/package/mongodb)| >=2.0.0 <3.3.0 | Supported via mongodb-core |
101
101
|[mongodb](https://www.npmjs.com/package/mongodb)| >=3.3.0 <7 | Will instrument all queries |
102
102
|[mongojs](https://www.npmjs.com/package/mongojs)| >=1.0.0 <2.7.0 | Supported via mongodb-core |
103
103
|[mongoose](https://www.npmjs.com/package/mongoose)| >=4.0.0 <5.7.0 | Supported via mongodb-core |
104
104
|[mongoose](https://www.npmjs.com/package/mongoose)| >=5.7.0 <8 | Supported via mongodb |
105
-
|[mysql](https://www.npmjs.com/package/mysql)|^2.0.0 | Will instrument all queries |
105
+
|[mysql](https://www.npmjs.com/package/mysql)|>=2.0.0 <3| Will instrument all queries |
106
106
|[mysql2](https://www.npmjs.com/package/mysql2)| >=1.0.0 <4.0.0 | Will instrument all queries |
107
107
|[pg](https://www.npmjs.com/package/pg)| >=4.0.0 <9.0.0 | Will instrument all queries |
108
108
|[redis](https://www.npmjs.com/package/redis)| >=2.0.0 <5.0.0 | Will instrument all queries |
0 commit comments