Visit docs.impulse.bot for the full documentation.
- Mattermost, Slack, Telegram integrations
- Jira integration
- Freeze mechanism to pause incident update and silence
- Powerful webhooks for Twilio, Instatus and other third-party integrations
- Incident lifecycle reduces incidents chaos
- Scheduling using providers like Google Calendar via cloud chains
- Support for nested chains with unlimited depth
- Flexible message structure you can modify
- Customizable UI with multi-column sorting and advanced filtering capabilities
Run without messenger integration:
# Prepare "impulse" directory
git clone https://github.com/eslupmi/impulse.git impulse.bak
mkdir -p impulse/config impulse/data
cp impulse.bak/examples/docker-compose.yml impulse/docker-compose.yml
cp impulse.bak/examples/impulse.none.yml impulse/config/impulse.yml
rm -rf impulse.bak
# Replace "<release_tag>" with the latest stable Docker tag
tag=$(git ls-remote --tags https://github.com/eslupmi/impulse.git | awk -F/ '{print $NF}' | tail -n1)
sed -i "s|<release_tag>|$tag|" impulse/docker-compose.yml
# Run IMPulse without messenger integration
cd impulse
docker compose upNow IMPulse is available at http://localhost:5000/.
You can try to send a test alert with:
curl -XPOST -H "Content-Type: application/json" http://localhost:5000/ -d '{"receiver":"webhook-alerts","status":"firing","alerts":[{"status":"firing","labels":{"alertname":"InstanceDown4","instance":"localhost:9100","job":"node","severity":"warning"},"annotations":{"summary":"Instanceunavailable"},"startsAt":"2024-07-28T19:26:43.604Z","endsAt":"0001-01-01T00:00:00Z","generatorURL":"http://eva:9090/graph?g0.expr=up+%3D%3D+0&g0.tab=1","fingerprint":"a7ddb1de342424cb"}],"groupLabels":{"alertname":"InstanceDown"},"commonLabels":{"alertname":"InstanceDown","instance":"localhost:9100","job":"node","severity":"warning"},"commonAnnotations":{"summary":"Instanceunavailable"},"externalURL":"http://eva:9093","version":"4","groupKey":"{}:{alertname=\"InstanceDown\"}","truncatedAlerts":0}'See documentation and the Slack example to configure IMPulse for your messenger.
