Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
@opentelemetry/instrumentation-mysql2
Advanced tools
OpenTelemetry instrumentation for `mysql2` database client for MySQL
@opentelemetry/instrumentation-mysql2 is an npm package that provides automatic instrumentation for the mysql2 library using OpenTelemetry. This allows developers to collect and export telemetry data such as traces and metrics from their MySQL2 database operations, which can be used for monitoring and performance analysis.
Automatic Tracing
This feature allows you to automatically trace MySQL2 queries. The code sample demonstrates how to set up the OpenTelemetry NodeTracerProvider and register the MySQL2 instrumentation. Once set up, any MySQL2 queries executed will be automatically traced.
const { NodeTracerProvider } = require('@opentelemetry/sdk-trace-node');
const { registerInstrumentations } = require('@opentelemetry/instrumentation');
const { MySQL2Instrumentation } = require('@opentelemetry/instrumentation-mysql2');
const provider = new NodeTracerProvider();
provider.register();
registerInstrumentations({
instrumentations: [
new MySQL2Instrumentation(),
],
});
const mysql = require('mysql2');
const connection = mysql.createConnection({
host: 'localhost',
user: 'root',
database: 'test'
});
connection.query('SELECT 1', (err, results) => {
if (err) throw err;
console.log(results);
connection.end();
});
Custom Span Attributes
This feature allows you to add custom attributes to spans. The code sample shows how to use the `responseHook` option to add the number of rows returned by a MySQL2 query as a custom attribute to the span.
const { NodeTracerProvider } = require('@opentelemetry/sdk-trace-node');
const { registerInstrumentations } = require('@opentelemetry/instrumentation');
const { MySQL2Instrumentation } = require('@opentelemetry/instrumentation-mysql2');
const provider = new NodeTracerProvider();
provider.register();
registerInstrumentations({
instrumentations: [
new MySQL2Instrumentation({
responseHook: (span, response) => {
span.setAttribute('mysql2.rows', response.length);
}
}),
],
});
const mysql = require('mysql2');
const connection = mysql.createConnection({
host: 'localhost',
user: 'root',
database: 'test'
});
connection.query('SELECT 1', (err, results) => {
if (err) throw err;
console.log(results);
connection.end();
});
@opentelemetry/instrumentation-mongodb provides similar functionality for MongoDB as @opentelemetry/instrumentation-mysql2 does for MySQL2. It allows for automatic tracing and collection of telemetry data from MongoDB operations, enabling performance monitoring and analysis.
@opentelemetry/instrumentation-pg offers automatic instrumentation for PostgreSQL using the pg library. Like @opentelemetry/instrumentation-mysql2, it helps in collecting and exporting telemetry data for monitoring and performance analysis of PostgreSQL database operations.
While not an instrumentation package, mysql2 is the underlying library that @opentelemetry/instrumentation-mysql2 instruments. It provides a fast and feature-rich MySQL client for Node.js, and can be used directly for database operations without automatic tracing.
This module provides automatic instrumentation for the mysql2
module, which may be loaded using the @opentelemetry/sdk-trace-node
package and is included in the @opentelemetry/auto-instrumentations-node
bundle.
If total installation size is not constrained, it is recommended to use the @opentelemetry/auto-instrumentations-node
bundle with @opentelemetry/sdk-node for the most seamless instrumentation experience.
Compatible with OpenTelemetry JS API and SDK 1.0+
.
npm install --save @opentelemetry/instrumentation-mysql2
mysql2
versions >=1.4.2 <4
OpenTelemetry MySQL2 Instrumentation allows the user to automatically collect trace data and export them to the backend of choice, to give observability to distributed systems when working with mysql2.
To load a specific plugin (MySQL2 in this case), specify it in the registerInstrumentations's configuration
const { NodeTracerProvider } = require('@opentelemetry/sdk-trace-node');
const { MySQL2Instrumentation } = require('@opentelemetry/instrumentation-mysql2');
const { registerInstrumentations } = require('@opentelemetry/instrumentation');
const provider = new NodeTracerProvider();
provider.register();
registerInstrumentations({
instrumentations: [
new MySQL2Instrumentation(),
],
})
You can set the following instrumentation options:
Options | Type | Description |
---|---|---|
responseHook | MySQL2InstrumentationExecutionResponseHook (function) | Function for adding custom attributes from db response |
addSqlCommenterCommentToQueries | boolean | If true, adds sqlcommenter specification compliant comment to queries with tracing context (default false). NOTE: A comment will not be added to queries that already contain -- or /* ... */ in them, even if these are not actually part of comments |
This package uses @opentelemetry/semantic-conventions
version 1.22+
, which implements Semantic Convention Version 1.7.0
Attributes collected:
Attribute | Short Description |
---|---|
db.connection_string | The connection string used to connect to the database. |
db.name | This attribute is used to report the name of the database being accessed. |
db.statement | The database statement being executed. |
db.system | An identifier for the database management system (DBMS) product being used. |
db.user | Username for accessing the database. |
net.peer.name | Remote hostname or similar. |
net.peer.port | Remote port number. |
Apache 2.0 - See LICENSE for more information.
FAQs
OpenTelemetry instrumentation for `mysql2` database client for MySQL
We found that @opentelemetry/instrumentation-mysql2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.