Grafana OnCall engine fork — self-hosted on-call scheduler and alert router
Find a file
2022-06-14 14:41:49 +03:00
.github Revert stylelint version (#52) 2022-06-13 15:17:12 -06:00
docs Add api key docs 2022-06-14 13:28:22 +04:00
engine Top menu fix 2022-06-14 11:53:56 +03:00
grafana-plugin Merge pull request #60 from grafana/launch-frontend-polishing 2022-06-14 14:41:49 +03:00
tools World, meet OnCall! 2022-06-03 08:09:47 -06:00
.dockerignore docker-compose polish 2022-06-10 00:18:17 +03:00
.drone.yml Build actions (#38) 2022-06-13 14:59:44 -06:00
.env.example Polishing telegram 2022-06-13 21:06:11 +03:00
.gitignore Polishing... 2022-06-10 22:58:46 +03:00
.pre-commit-config.yaml World, meet OnCall! 2022-06-03 08:09:47 -06:00
CHANGELOG.md Update plugin README (#48) 2022-06-13 14:04:01 -06:00
CODE_OF_CONDUCT.md Updated GOVERNANCE, added Code Of Conduct 2022-06-06 21:54:15 +03:00
DEVELOPER.md Slack polishing & docs 2022-06-13 15:33:56 +03:00
docker-compose-developer.yml Build actions (#38) 2022-06-13 14:59:44 -06:00
docker-compose.yml Reverting utf8 fix 2022-06-14 13:00:02 +03:00
GOVERNANCE.md Updated GOVERNANCE, added Code Of Conduct 2022-06-06 21:54:15 +03:00
LICENSE World, meet OnCall! 2022-06-03 08:09:47 -06:00
LICENSING.md Making LICENSING.md more explicit 2022-06-03 16:21:26 +02:00
MAINTAINERS.md Updated GOVERNANCE, added Code Of Conduct 2022-06-06 21:54:15 +03:00
README.md Update README.md 2022-06-14 09:49:27 +03:00
screenshot.png Update screenshot (#53) 2022-06-13 16:23:18 -06:00
SECURITY.md World, meet OnCall! 2022-06-03 08:09:47 -06:00

Developer-friendly incident response with brilliant Slack integration.

  • Collect and analyze alerts from multiple monitoring systems
  • On-call rotations based on schedules
  • Automatic escalations
  • Phone calls, SMS, Slack, Telegram notifications

Getting Started

We prepared multiple environments: production, developer and hobby:

  1. Download docker-compose.yaml:
curl https://github.com/grafana/oncall/blob/dev/docker-compose.yml -o docker-compose.yaml 
  1. Set variables:
echo "DOMAIN=http://localhost
SECRET_KEY=my_random_secret_must_be_more_than_32_characters_long
RABBITMQ_PASSWORD=rabbitmq_secret_pw
MYSQL_PASSWORD=mysql_secret_pw
COMPOSE_PROFILES=with_grafana  # Remove this line if you want to use existing grafana
GRAFANA_USER=admin
GRAFANA_PASSWORD=admin" > .env_hobby
  1. Launch services:
docker-compose --env-file .env_hobby -f docker-compose.yml up --build -d
  1. Issue one-time invite token:
docker-compose --env-file .env_hobby -f docker-compose.yml run engine python manage.py issue_invite_for_the_frontend --override
  1. Go to OnCall Plugin Configuration (or find OnCall plugin in configuration->plugins) and connect OnCall plugin with OnCall backend:
Invite token: ^^^ from the previous step.
OnCall backend URL: http://engine:8080
Grafana Url: http://grafana:3000
  1. Enjoy!

Join community

Further Reading