Socket
Book a DemoInstallSign in
Socket

hipalert-workspace

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

hipalert-workspace

![HipAlert Logo](./logo.svg)

unpublished
latest
npmnpm
Version
0.0.0
Version published
Maintainers
1
Created
Source

HipAlert

HipAlert Logo

HipAlert is a simple, extensible monitoring and alerting tool.

Getting started

To get started quickly, please see our quick start guide.

You can also run the entire stack in a Docker container, see the docker guide.

What HipAlert does

HipAlert is a simple, extensible monitoring and alerting tool. It consists of three main components:

  • Checks perform a check that can either be successful or unsuccessful. For example you could check for files to exist or for HTTP URLs to be reachable.
  • Alerts are used to inform users when a check fails. For example, you might have an alert that logs errors to STDOUT and another one that sends out an alert email.
  • Summary Writers write a summary of all checks and alerts somewhere. For example, a summary writer might publish a JSON file containing a list of all checks and an overall success status. Summary writers are especially practical if you want to expose the check status to other systems, e.g. by sending it off via REST or exposing it in-memory for the HipAlert backend's HTTP server.

The runner takes care of parsing the HipAlert configuration and executing it:

  • It runs all checks,
  • if checks fail, it uses alerts to publish these failures,
  • it writes a summary using the summary writers.

Additionally, an interval can be defined in which this check/alert/summary cycle is repeated. In the sample config file, that's every second.

Built-In Checks and Alerts

HipAlert brings some checks and alerts out of the box and ready to use:

Checks:

Alerts:

Extending and integrating HipAlert

If you want to create your own checks, alerts or summary writers or integrate HipAlert within another application, see our integration and extension guide.

Developing HipAlert

To develop HipAlert, clone this repository and see the development guide.

Dockerized Execution

You can run HipAlert in a Docker container. See the Docker guide.

FAQs

Package last updated on 03 Mar 2022

Did you know?

Socket

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.

Install

Related posts