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

hera-monitor

v1.0.2

Published

This analytical tool mainly helps in tracking API performance.

Downloads

6

Readme

Hera

This analytical tool mainly helps in tracking API performance.

Features

  1. Actions : Check the performance of various aggregator endpoints by analysing the performance overheads from individual APIs.

  2. API Performance : Checking API response times and error rates.

How to use?

Installation

First of all, install the package by

npm install hera-monitor

Usage

If your app is small, I'd recommend using the following way:

let { Hera } = require("hera-monitor");
const express = require("express");
const app = express();
let axios = require("axios");
axios = Hera(app, axios);

This would would provide an express app and axios which is linked with Hera.

In case you're using axios and the express app in different files, the following method can be used:

App.js

let { attachHeraToExpress } = require("hera-monitor");
const express = require("express");
const app = express();
attachHeraToExpress(app)

service.js

let { attachHeraToAxios } = require("hera-monitor");
let axios = require("axios");
axios = attachHeraToAxios(axios)

Also, for Hera to record individual API calls, the request from express needs to be provided as sourceRequest in axios config.

eg.

axios(
  {
    url: "url",
    method: "rest method",
    ...other_params
  },
  {
    sourceRequest: expressRequest
  }
).then(response => {
  //Handle the response
});

axios
  .get("url", {
    sourceRequest: expressRequest
  })
  .then(response => {
    //Handle the response
  });

Options

  1. In case you want to create an axios instance with a configuration, it can be passed while attaching Hera to axios. eg.
let { Hera } = require("hera-monitor");
const express = require("express");
const app = express();
let axios = require("axios");
axios = Hera(app, axios, {
  axiosConfig: {
    //Required axios configuration
  }
});

let { attachHeraToAxios } = require("hera-monitor");
let axios = require("axios");
axios = attachHeraToAxios(axios, {
  //Required axios configuration
});
  1. Here is a list of other options which can be provided while starting Hera, as the third parameter to Hera or the second parameter to attachHeraToExpress

eg.

let { Hera } = require("hera-monitor");
const express = require("express");
const app = express();
let axios = require("axios");
axios = Hera(app, axios, {
  historyLimit: 4
});

let { attachHeraToExpress } = require("hera-monitor");
const express = require("express");
const app = express();
attachHeraToExpress(app, {
  historyLimit: 4
});
  • historyLimit : This specifies how many days of logs should be retained. By default, this is 7.
  • callLife : This specifies how long Hera would wait for a call to be resolved (in ms) before its discarded. By default, this is 10800000.