khalidx / uptime

An uptime monitoring web application that is easy to understand, use, and extend.

Home Page:https://khalidx.github.io/uptime/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

An uptime monitoring web application that is easy to understand, use, and extend.

GitHub package.json keywords

GitHub license GitHub top language GitHub last commit GitHub Actions status

GitHub package.json version GitHub open enhancements GitHub open bugs

Screenshots

Status Page

Detail Page

Dashboard Page

Demo

Click here to view the live demo site.

Getting started

uptime is easy to deploy to your AWS account, with a one-liner for deployment.

  1. Make sure that the AWS_REGION and AWS_PROFILE environment variables are set, or that you have the appropriate AWS region and credentials configured elsewhere in your environment

  2. Make sure that you have node and npm

  3. Clone this repository, with git clone https://github.com/khalidx/uptime

  4. Run the following command to build and deploy:

npm install && npm run deploy

After deployment, the WebsiteUrl for the status page and the ServiceEndpoint for the API will be logged to the console.

If you are just trying out uptime, you can easily remove it from your AWS account with npm run undeploy.

Public vs VPC deployments

By default, the status page site will be accessible to the internet.

If you'd like the site to only be accessible within your AWS network, set the following variables in the serverless.yml file before deployment.

...
custom:
  uptime:
    privacy: vpc
    vpc: <your-vpc-id>
...

**Using an IAM managed policy or permissions boundary

By default, IAM roles will be created as-is.

If your organization requires a permissions boundary to be associated to the roles created for Lambda functions when deploying, set the following variables in the serverless.yml file before deployment.

...
custom:
  uptime:
    permissionsBoundary: <your-managed-iam-policy-arn>
...

Web

This section contains information about what you'll find on each page of the uptime web application.

/status

  • relevant messages
  • a listing of all services and their status
  • incident history

/status/{service}

  • service status
  • latency metrics
  • error metrics
  • scheduled checks

/dashboard

  • message management
  • service management
  • settings
  • logs
  • data export

API

This section contains information about the uptime API and the operations it supports.

Done Operations Path Description
βœ… GET, PUT, DELETE /settings Manage system settings, like the status page title
🚧 GET, POST /services Get a list of monitored services or add a service
🚧 GET, PUT, DELETE /services/{serviceId} Get or manage a specific service
🚧 GET, DELETE /services/{serviceId}/metrics Get service metrics, or reset collected metrics data for a service
🚧 GET, POST /services/{serviceId}/messages Get a list of operational status messages for a service, or add a new message
🚧 GET, PUT, DELETE /services/{serviceId}/messages/{messageId} Get or manage a specific message
🚧 GET, POST /services/{serviceId}/feedback Get a list of feedback messages for a service, or submit a feedback message
🚧 GET, POST /services/{serviceId}/feedback/{feedbackId} Get or manage a specific feedback message
🚧 GET, POST /services/{serviceId}/checks Get the configured checks for a service, like scheduled pings, or add a new service check
🚧 GET, PUT, DELETE /services/{serviceId}/checks/{checkId} Get or manage a specific service check

Support

Open a GitHub issue to ask a question, report a bug, raise a concern, or request a new feature.

Developers

This section is for developers looking to develop, modify, or extend this project.

Components

  • src/app/ (the uptime serverless application backend)
  • src/ui/ (the uptime web application frontend)

Usage

Prerequisites:

  • node and npm
  • Ensure the AWS_REGION and AWS_PROFILE environment variables are set, or that you have the appropriate AWS region and credentials configured elsewhere in your environment.

clone

Clone the repository from GitHub.

git clone https://github.com/khalidx/uptime && cd uptime

install

Install the project dependencies.

npm install

deploy

Deploy the application and site to AWS.

npm run deploy

dev

Starts the project with a development server and hot-reload, for developing the backend and front-end, locally.

Make sure the application is deployed first, so that non-local assets (like DynamoDb) are available for use.

npm run dev

undeploy

Remove the site and application from AWS.

npm run undeploy

docker

Alternatively, build, deploy the backend, and run the UI with Docker.

Make sure to provide your AWS credentials and target region as build arguments.

docker build \
--build-arg AWS_ACCESS_KEY_ID=<your-aws-key> \
--build-arg AWS_SECRET_ACCESS_KEY=<your-aws-secret> \
--build-arg AWS_REGION=us-east-1 \
-t uptime .

docker run --rm -p 8080:8080 uptime

About

An uptime monitoring web application that is easy to understand, use, and extend.

https://khalidx.github.io/uptime/

License:MIT License


Languages

Language:Vue 61.3%Language:TypeScript 37.4%Language:JavaScript 0.7%Language:Dockerfile 0.4%Language:HTML 0.3%