
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
@aspecto/opentelemetry-instrumentation-express
Advanced tools
enhanced open telemetry instrumentation for the `express` web framework
aspecto-opentelemetry-express
This module provide enhanced instrumentation for the express
web framework.
The instrumentation conforms to the Semantic conventions for HTTP spans.
This instrumentation supports ^4.9.0
: all versions >= 4.9.0
(released 2014) and < 5.0.0
(in alpha).
This instrumentation is automatically used by aspecto's
tracing library.
To manually add it to a trace provider:
const { NodeTracerProvider } = require('@opentelemetry/node');
const { registerInstrumentations } = require('@opentelemetry/instrumentation');
const { ExpressInstrumentation } = require('@aspecto/opentelemetry-instrumentation-express');
const traceProvider = new NodeTracerProvider({
// be sure to disable old plugin
plugins: {
express: { enabled: false, path: '@aspecto/opentelemetry-plugin-express' }
}
});
registerInstrumentations({
traceProvider,
instrumentations: [
new ExpressInstrumentation()
]
});
Express instrumentation has few options available to choose from. You can set the following:
Options | Type | Description |
---|---|---|
requestHook | RequestHook (function) | Hook for adding custom attributes before express start handling the request. Receives params: span, { moduleVersion, req, res } |
Express auto instrumentation will create a single span per request with the following attributes. Detailed specification and cases can be found here.
http.route
This is a conventional http attribute, which is collected by express instead of the http module (which is not aware of the route). It will always contain path-parameterized data with low cardinality (no ids), but might be missing parts of the path in case of early termination or middlewares that accept any path.
Example: /api/users/:id
express.route.full
This attribute will always contain the entire path. The part of the path that has been consumed by express will be shown as is (parameterized), and the leftover will be concatenated after (due to early termination or middleware that accept any path).
Example: /api/users/:id/books/758734
(The :id
part was consumed, but the bookid
part was not).
express.route.configured
This attribute is relevant when user configures multi path options for the same middleware. It reduces even further the cardinality space compared to http.route
, and supply more info about how the app routing works.
Example: /api["/foo", /"bar"]
- meaning that the same endpoint is triggered by routes /api/foo
and /api/bar
.
express.route.params
This attribute holds a json stringified map, where the keys are the url path param names, and the values are the matched params from the actual url.
Example: {"id":"1234"}
.
express.unhandled
Set to true when request was not handled by any middleware in express, and got fallback to the default app finalhandler
. This can happen if client sent request with invalid path or method (resulting in 404). This can be useful to filter out requests from internet bots which try to call common routes on servers.
express.instrumentation.errors
In case of internal error in instrumentation, this attribute will contain the error description. There are no known valid use cases which are expected to produce this attribute.
route
data, in any valid express edge case. Contrib instrumentation does a good job for common cases, but miss nuances on complex setups.requestHook
for adding custom attributes to span, as well as ability to capture express version into user defined attribute.FAQs
enhanced open telemetry instrumentation for the `express` web framework
The npm package @aspecto/opentelemetry-instrumentation-express receives a total of 57 weekly downloads. As such, @aspecto/opentelemetry-instrumentation-express popularity was classified as not popular.
We found that @aspecto/opentelemetry-instrumentation-express demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.