npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@appsightnet/nodejs-aspnet-healthz

v0.1.0-alpha.6

Published

This package aims to provide report output similar to the AspNetCore.Diagnostics.HealthChecks package in NuGet.

Downloads

186

Readme

Overview

This package aims to provide report output similar to the AspNetCore.Diagnostics.HealthChecks package in NuGet.

Note This package is currently minimally configured to support HealthReport and UIHealthReport output of AspNetCore.Diagnostics.HealthChecks 6.*. Therefore, for other use cases such as integrating it into routing, you will need to implement it individually for each framework.

Motivation

When operating containerized applications, configuring health checks becomes essential. Health checks are supported in various operational environments, and while the HTTP status code rules are generally consistent, the payload schema can vary depending on the environment.

In my own experience, I frequently develop APIs using ASP.NET, and in such cases, I typically combine AspNetCore.Diagnostics.HealthChecks with HealthChecksUI for configuring and monitoring health checks.

As I have been working more with Node.js recently, I decided to develop this package to enable handling the output of AspNetCore.Diagnostics.HealthChecks in Node.js.

graph LR
    node1["Node.js Project\n(Wants to export UIHealthReport!)"]
    node2["ASP.NET Project\n(Exports UIHealthReport)"]
    node3["HealthChecks UI ASP.NET Project\n(Collects UIHealthReport)"]

    node3-->node1
    node3-->node2

Installation

npm install @appsightnet/nodejs-aspnet-healthz

Usage

// Create HealthCheckService instance
const options: HealthCheckServiceOptions = {
  registrations: [
    {
      name: 'healthy-0',
      instance: new StubHealthCheck('Healthy'),
      tags: ['liveness'],
    },
  ],
}
const healthCheckService = new DefaultHealthCheckService(options)

// Perform checks
const healthReport = await healthCheckService.checkHealthAsync()

// Export UIHealthReport json
const uiHealthReport = UIHealthReportUtils.fromHealthReport(healthReport)
console.log(JSON.stringify(uiHealthReport))
{
  "status": "Healthy",
  "totalDuration": "00:00:00.000",
  "entries": {
    "healthy-0": {
      "status": "Healthy",
      "description": "healthy-0 is Healthy!",
      "duration": "00:00:00.000",
      "tags": ["liveness"]
    }
  }
}

API Reference

Options

Perform only readiness checks

const healthReport = await healthCheckService.checkHealthAsync((predicate) =>
  predicate.tags.includes('readiness')
)

Set timeout per registration

const options: HealthCheckServiceOptions = {
  registrations: [
    {
      name: 'healthy-0',
      instance: new StubHealthCheck('Healthy'),
      tags: ['liveness'],
      timeoutMilliseconds: 1000,
    },
    {
      name: 'healthy-1',
      instance: new StubHealthCheck('Healthy'),
      tags: ['liveness'],
      timeoutMilliseconds: 2000,
    },
  ],
}
const healthCheckService = new DefaultHealthCheckService(options)

Set overall timeout for checks

const healthReport = await healthCheckService.checkHealthAsync(
  (_) => true,
  30000 // 30 seconds
)

Change Log

TBD

Acknowledgements