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-tedious
Advanced tools
OpenTelemetry instrumentation for `tedious` database client for Microsoft SQL Server
@opentelemetry/instrumentation-tedious is an OpenTelemetry instrumentation library for the Tedious SQL Server client. It allows you to automatically collect and report telemetry data such as traces and metrics from your SQL Server interactions, which can be used for monitoring and debugging purposes.
Automatic Tracing
This feature allows you to automatically trace SQL queries made using the Tedious client. The traces can be used to monitor the performance and behavior of your SQL queries.
{"import":"import { NodeTracerProvider } from '@opentelemetry/node';","import2":"import { registerInstrumentations } from '@opentelemetry/instrumentation';","import3":"import { TediousInstrumentation } from '@opentelemetry/instrumentation-tedious';","setup":"const provider = new NodeTracerProvider();","register":"registerInstrumentations({\n instrumentations: [\n new TediousInstrumentation(),\n ],\n tracerProvider: provider,\n});","start":"provider.register();"}
Custom Span Attributes
This feature allows you to add custom attributes to the spans generated by the Tedious instrumentation. This can be useful for adding additional context to your telemetry data.
{"import":"import { TediousInstrumentation } from '@opentelemetry/instrumentation-tedious';","setup":"const tediousInstrumentation = new TediousInstrumentation({\n responseHook: (span, request, response) => {\n span.setAttribute('custom-attribute', 'value');\n }\n});"}
@opentelemetry/instrumentation-mysql is an OpenTelemetry instrumentation library for the MySQL client. It provides similar functionalities for MySQL as @opentelemetry/instrumentation-tedious does for SQL Server, including automatic tracing and custom span attributes.
@opentelemetry/instrumentation-pg is an OpenTelemetry instrumentation library for the PostgreSQL client. Like @opentelemetry/instrumentation-tedious, it allows for automatic tracing and custom span attributes, but it is designed for use with PostgreSQL.
@opentelemetry/instrumentation-mongodb is an OpenTelemetry instrumentation library for the MongoDB client. It provides similar functionalities for MongoDB as @opentelemetry/instrumentation-tedious does for SQL Server, including automatic tracing and custom span attributes.
This module provides automatic instrumentation for the tedious
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-tedious
>=1.11.0 <20
OpenTelemetry Tedious 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 tedious
.
To load a specific plugin, specify it in the registerInstrumentations's configuration:
const { NodeTracerProvider } = require('@opentelemetry/sdk-trace-node');
const { TediousInstrumentation } = require('@opentelemetry/instrumentation-tedious');
const { registerInstrumentations } = require('@opentelemetry/instrumentation');
const provider = new NodeTracerProvider();
provider.register();
registerInstrumentations({
instrumentations: [
new TediousInstrumentation(),
],
})
This package uses @opentelemetry/semantic-conventions
version 1.22+
, which implements Semantic Convention Version 1.7.0
Attributes collected:
Attribute | Short Description |
---|---|
db.name | This attribute is used to report the name of the database being accessed. |
db.sql.table | The name of the primary table that the operation is acting upon. |
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 `tedious` database client for Microsoft SQL Server
The npm package @opentelemetry/instrumentation-tedious receives a total of 1,081,277 weekly downloads. As such, @opentelemetry/instrumentation-tedious popularity was classified as popular.
We found that @opentelemetry/instrumentation-tedious 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.