Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
diagnostic-channel
Advanced tools
Provides a context-saving pub/sub channel to connect diagnostic event publishers and subscribers
The diagnostic-channel npm package is a tool for instrumenting and collecting diagnostic data from various libraries and frameworks in Node.js applications. It allows developers to monitor and trace the performance and behavior of their applications by capturing and reporting diagnostic information.
HTTP Request Monitoring
This feature allows you to monitor HTTP requests made by your Node.js application. The code sample demonstrates how to subscribe to the 'http' channel and log HTTP request messages.
const channel = require('diagnostic-channel');
const http = require('http');
channel.subscribe('http', function (message) {
console.log('HTTP request:', message);
});
http.createServer((req, res) => {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(8080);
MongoDB Query Monitoring
This feature allows you to monitor MongoDB queries made by your Node.js application. The code sample demonstrates how to subscribe to the 'mongodb' channel and log MongoDB query messages.
const channel = require('diagnostic-channel');
const mongodb = require('mongodb');
channel.subscribe('mongodb', function (message) {
console.log('MongoDB query:', message);
});
const MongoClient = mongodb.MongoClient;
const url = 'mongodb://localhost:27017';
const dbName = 'myproject';
MongoClient.connect(url, function(err, client) {
if (err) throw err;
const db = client.db(dbName);
db.collection('documents').find({}).toArray(function(err, docs) {
if (err) throw err;
console.log(docs);
client.close();
});
});
Redis Command Monitoring
This feature allows you to monitor Redis commands made by your Node.js application. The code sample demonstrates how to subscribe to the 'redis' channel and log Redis command messages.
const channel = require('diagnostic-channel');
const redis = require('redis');
channel.subscribe('redis', function (message) {
console.log('Redis command:', message);
});
const client = redis.createClient();
client.on('connect', function() {
client.set('key', 'value', redis.print);
client.get('key', function(err, reply) {
if (err) throw err;
console.log(reply);
client.quit();
});
});
Winston is a versatile logging library for Node.js that allows you to log messages to various transports (e.g., console, file, HTTP). While it focuses on logging rather than diagnostic data collection, it can be used to achieve similar monitoring and tracing goals by logging relevant information.
New Relic is a performance monitoring and observability platform that provides detailed insights into the performance of your applications. The New Relic Node.js agent can be used to monitor and trace Node.js applications, offering a more integrated and feature-rich solution compared to diagnostic-channel.
This package provides a channel to connect diagnostic event publishers and subscribers. It includes a way to preserve context for the published event too. What that context is and contains is deliberately left unspecified.
const channel = require('diagnostic-channel').channel;
channel.subscribe('someEvent', function (event) {
// do something about the event
});
The properties of the event
object passed to the subscriber handler function
are determined by the publisher.
var someData = { myField: "myData" };
const channel = require('diagnostic-channel').channel;
channel.publish('someEvent', someData);
Preserving context on publication may require some additional effort. A
correlation handler can be added with the addContextPreservation
method, and
then the bindToContext
method can be used to set up context using the
provided handler before calling its received function.
channel.addContextPreservation((callback) => {
return Zone.current.wrap(callback);
});
function doWork(args, callback) {
// In some context...
doBatchedAsyncWork(args, channel.bindToContext((result) => {
channel.publish('someEvent', {result: result});
callback(result);
}))
}
channel.subscribe(name: string, callback: (event: any) => void): void
Register the callback to be called when publish
is invoked with a matching name. The callback will be given the object that is passed to the publish
call.
If the callback throws an error, it will be silently ignored. If the callback modifies the event object, any subsequent subscribers will see the modified object, and it may also impact the original code's execution.
channel.publish(name: string, event: any): void
Trigger each subscribed callback for the same named event, passing the event
object to each.
Subscribers may modify the event object.
channel.unsubscribe(name: string, callback: (event: any) => void): void
Remove a previously registered callback from the named event. This uses function equality so it must be a reference to the same function, not an equivalent function.
channel.addContextPreservation(preserver: (callback: Function) => Function)
Pushes the provided context preservation function onto a 'stack' of functions to preserve context.
The context preservation function preserver
is expected to capture the current context and return a function that when invoked restores this preserved context and only then calls the provided callback with the originally provided arguments. Before returning, this second function should also restore the previous context.
A simple example preserving the Zone.js context:
channel.addContextPreservation((callback) => {
return Zone.current.wrap(callback);
});
A more general, but somewhat contrived, example, where the 'context' is a global object called context
:
var context = { value: 1 };
channel.addContextPreservation((callback) => {
var preservedContext = context;
return function () {
var priorContext = context;
context = preservedContext;
var result = callback.apply(this, arguments);
context = priorContext;
return result;
}
});
channel.bindToContext(callback: Function)
Returns a function which will call the callback after applying each of the registered context preservation functions, and return the result of the callback after unwinding each of the context preservation functions.
For example, when using Zone.js:
channel.addContextPreservation((callback) => Zone.current.wrap(callback));
var z1 = Zone.current.fork({name: 'zone 1'});
var z2 = Zone.current.fork({name: 'zone 2'});
var z1BoundFunc = z1.run(() => channel.bindToContext(() => Zone.current.name));
var result = z2.run(() => z1BoundFunc());
Because the function was bound in zone 1
, result
will be zone 1
.
channel.registerMonkeyPatch(packageName: string, patcher: {versionSpecifier: string, patch: (any, path: string) => any})
;
In order to inject publishing and context preservation behavior into third party libraries, we support monkey patching libraries as they are require
'd.
Calling this function will register a candidate monkey patcher to be applied when a future require(packageName)
is called. If the package's version is a semver match for the versionSpecifier
range, then the original object for that package is passed to the patch
function, along with the path to the module, and the patch
function should return a patched version which will end up as the result of the require
.
For a simple example where we patch a doSomethingAsync
method of the foo
module to preserve the current context when invoking a callback:
function patchFunction(originalPackage, packagePath) {
var originalFooAsync = foo.doSomethingAsync;
foo.doSomethingAsync = function () {
var callback = arguments[arguments.length-1];
if (callback && typeof callback == 'function') {
arguments[arguments.length-1] = channel.bindToContext(callback);
}
return originalFooAsync.apply(this, arguments);
}
return originalPackage;
}
var patcher = {
versionSpecifier: ">= 1.0.0 < 2.0.0",
patch: patchFunction
};
channel.registerMonkeyPatch('foo', patcher);
var foo = require('foo');
// Now foo.doSomethingAsync will be the patched version, assuming that the version of the foo package found by require() falls within the 1.0.0 - 2.0.0 range.
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.
As this SDK is designed to enable applications to perform data collection which is sent to the Microsoft collection endpoints the following is required to identify our privacy statement.
The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.
FAQs
Provides a context-saving pub/sub channel to connect diagnostic event publishers and subscribers
We found that diagnostic-channel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.