From 7883cc8d1b63b736521e4f0084af5bbc874ffab2 Mon Sep 17 00:00:00 2001 From: "Michael Erskine (at work)" <74360165+michael-erskine@users.noreply.github.com> Date: Mon, 27 Jul 2026 11:47:16 +0100 Subject: [PATCH] README has incorrect link to node stream API Updated README with the current node stream API link --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 789551f..503f2f9 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ Streaming [Performance Monitor](http://technet.microsoft.com/en-us/library/cc749249.aspx) metrics for [Node](http://nodejs.org) on Windows. -[node-perfmon](http://markitondemand.github.com/node-perfmon) is a thin wrapper around [typeperf](http://technet.microsoft.com/en-us/library/bb490960.aspx), and provides a [ReadableStream](http://nodejs.org/docs/latest/api/streams.html#readable_Stream) interface to the typeperf output. Metrics are streamed once per second. `perfmon` wraps up the typeperf executable as a child_process. It ensures that no more than one process will be spawned for each host machine streaming metrics. +[node-perfmon](http://markitondemand.github.com/node-perfmon) is a thin wrapper around [typeperf](http://technet.microsoft.com/en-us/library/bb490960.aspx), and provides a [ReadableStream](https://nodejs.org/docs/latest/api/stream.html#readable-streams) interface to the typeperf output. Metrics are streamed once per second. `perfmon` wraps up the typeperf executable as a child_process. It ensures that no more than one process will be spawned for each host machine streaming metrics. ### Dependenices @@ -80,4 +80,4 @@ var counters = [ perfmon(counters, 'somecomputer.somewhere.local', function(err, data) { console.log(data); }); -``` \ No newline at end of file +```