From de263f3bd05c04c69cad84599e9e823828d812aa Mon Sep 17 00:00:00 2001 From: vikrum <291215+vikrum@users.noreply.github.com> Date: Tue, 24 Sep 2024 14:10:07 -0700 Subject: [PATCH] fix(typo): Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5cec98e..acd2f8e 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,6 @@ const meter = metrics.getMeterProvider().getMeter('node-metrics'); setupNodeMetrics(meter); ``` -Now your Prometheus-exported metrics should be included along with whatever other metrics you ahve selected. See [openapi-typescript-infra/service](https://github.com/openapi-typescript-infra/service) for a more complete example of metrics integrated with an express service host. +Now your Prometheus-exported metrics should be included along with whatever other metrics you have selected. See [openapi-typescript-infra/service](https://github.com/openapi-typescript-infra/service) for a more complete example of metrics integrated with an express service host. -One notable change from the existing libraries - they divide active handles and active 'requests' using deprecated Node APIs. I've chosed to merge these into 'resources' using the new getActiveResourcesInfo API, which is Node17+. It should fail gracefully if that function is not available. +One notable change from the existing libraries - they divide active handles and active 'requests' using deprecated Node APIs. I've chosen to merge these into 'resources' using the new getActiveResourcesInfo API, which is Node17+. It should fail gracefully if that function is not available.