abdullahalshawafi / URL-Monitor

An uptime monitoring RESTful API server that allows authenticated users to monitor URLs, and get detailed uptime reports about their availability, average response time, and total uptime/downtime.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NestJS URL Monitor

An uptime monitoring RESTful API server that allows authenticated users to monitor URLs, and get detailed uptime reports about their availability, average response time, and total uptime/downtime.

How to run

  • Clone the repository.
  • Run yarn install to install the dependencies.
  • Copy .env.example to .env and fill the required environment variables.
  • Run yarn start:dev to start the development server.
  • The server will be running on http://localhost:3000.

For production

  • Run yarn build to build the project.
  • Run yarn start:prod to start the production server.
  • Or use docker-compose up to start the production server using Docker.

API Documentation

API documentation is available in the URL Monitor API.postman_collection.json file. You can import it to Postman to test the APIs.

Overview

  • Signup with email verification.
  • CRUD operations for URL checks (GET, PUT, and DELETE can be called only by the user who created the check).
  • Authenticated users can receive a notification whenever one of their URLs goes down or up again:
    • Email.
    • Webhook (optional).
  • Authenticated users can get detailed uptime reports about their URLs availability, average response time, and total uptime/downtime.
  • Authenticated users can group their checks by tags and get reports by tag.

Features

  • APIs should be consuming and producing application/json.
  • Authentication should be stateless.
  • Each URL check may have the following options:
    • name: The name of the check.
    • url: The URL to be monitored.
    • protocol: The resource protocol name HTTP, HTTPS, or TCP.
    • path: A specific path to be monitored (optional).
    • port: The server port number (optional).
    • webhook: A webhook URL to receive a notification on (optional).
    • timeout (defaults to 5 seconds): The timeout of the polling request (optional).
    • interval (defaults to 10 minutes): The time interval for polling requests (optional).
    • threshold (defaults to 1 failure): The threshold of failed requests that will create an alert (optional).
    • authentication: An HTTP authentication header, with the Basic scheme, to be sent with the polling request (optional).
      • authentication.username
      • authentication.password
    • httpHeaders: A list of key/value pairs custom HTTP headers to be sent with the polling request (optional).
    • assert: The response assertion to be used on the polling response (optional).
      • assert.statusCode: An HTTP status code to be asserted.
    • tags: A list of the check tags (optional).
    • ignoreSSL: A flag to ignore broken/expired SSL certificates in case of using the HTTPS protocol.
  • Each report may have the following information:
    • status: The current status of the URL.
    • availability: A percentage of the URL availability.
    • outages: The total number of URL downtimes.
    • downtime: The total time, in seconds, of the URL downtime.
    • uptime: The total time, in seconds, of the URL uptime.
    • responseTime: The average response time for the URL.
    • history: Timestamped logs of the polling requests.

About

An uptime monitoring RESTful API server that allows authenticated users to monitor URLs, and get detailed uptime reports about their availability, average response time, and total uptime/downtime.


Languages

Language:TypeScript 94.8%Language:Handlebars 3.0%Language:JavaScript 1.6%Language:Dockerfile 0.6%