monika
monika copied to clipboard
Monika is a command line application to monitor every part of your web app using a simple YAML configuration file. Get alert not only when your site is down but also when it's slow.
# Monika Pull Request (PR) ## What feature/issue does this PR add 1. 779/refactor: Request in verbose mode ## How did you implement / how did you fix it ##...
As mentioned in [this discussion](https://github.com/hyperjumptech/monika/discussions/843), it'd be great if Monika can also check if a postgres is running. Maybe using [this function](https://node-postgres.com/api/client#clientconnect): ```javascript const { Client } = require('pg') const...
As mentioned in [this discussion](https://github.com/hyperjumptech/monika/discussions/843), it'd be great if Monika can also check if a redis server is running. Maybe using ping command as mentioned in [this Stack Overflow](https://stackoverflow.com/a/64934377/401544). Then...
To help debugging easier, let's show the following information when monika is run in verbose mode. - [x] The sent request: URL, method, body if any, headers if any. -...
As mentioned in [this discussion](https://github.com/hyperjumptech/monika/discussions/854), it'd be great if we can use some variables in header, url, and body. For example, ```yaml probes: - id: '1' name: 'Example: get Time'...
**Describe the bug** Not getting response alert notifications (from alert queries). **To Reproduce** Steps to reproduce the behavior: 1. Using the following config `monika.yaml`: ```yaml probes: - id: probe-01 name:...
**Describe the bug** When using SMPT as notification channel, Monika crashes **To Reproduce** Steps to reproduce the behavior: 1. Setup monika.yml to use `type: smtp` for notification ```yaml notifications: -...
As mentioned in the [discussion](https://github.com/hyperjumptech/monika/discussions/830), Monika should be able to create and update incident to Atlassian's Statuspage. References: - https://developer.statuspage.io/#operation/postPagesPageIdIncidents - https://developer.statuspage.io/#operation/putPagesPageIdIncidentsIncidentId
Our current search UI left a lot to be desired. Let's aim to look similar with the one in Remix website.