DEV Community

Cover image for Status page + Batteries
Raj Nandan Sharma
Raj Nandan Sharma

Posted on

Status page + Batteries

Kener is an open-source status page system designed to keep you informed about the health and performance of your applications and services. It provides a simple and intuitive interface for monitoring and managing incidents in real-time. With Kener, you can quickly identify and resolve issues, ensuring that your users are always informed about any disruptions.

To get started with Kener, follow these simple steps:

Clone the repository

git clone https://github.com/rajnandan1/kener.git
cd kener
Enter fullscreen mode Exit fullscreen mode

Install Dependencies

npm install
Enter fullscreen mode Exit fullscreen mode

Configs

  • Rename config/site.example.yaml -> config/site.yaml
  • Rename config/monitors.example.yaml -> config/monitors.yaml
mv config/site.example.yaml config/site.yaml
mv config/monitors.example.yaml config/monitors.yaml
mkdir -p ./static/kener
Enter fullscreen mode Exit fullscreen mode

Start Kener Dev

npm run kener:dev
Enter fullscreen mode Exit fullscreen mode

Kener Development Server would be running at PORT 5173. Go to http://localhost:5173

Kener also offers APIs that allow you to update status, create incidents, add comments, and more. These APIs can be integrated into your existing workflows to automate incident management and streamline your processes.

In addition, Kener provides badges that you can use to display the status and uptime of your monitors in your project's documentation or README files. These badges can be customized with different colors and styles to match your project's branding. You can also embed a modern looking status card for your monitor

To learn more about Kener and get started, visit the official repository and documentation.

Top comments (0)