keephq/keep
Fork: 727 Star: 7346 (更新于 2024-12-02 08:46:47)
license: NOASSERTION
Language: Python .
The open-source alert management and AIOps platform
最后发布版本: v0.30.7 ( 2024-12-01 17:30:47)
The open-source alert management and AIOps platform
Docs · Try it out · Report Bug · Book a Demo · Website
- 🔍 Single pane of glass - Best-in-class customizable UI for all your alerts and incidents
- 🛠️ Swiss Army Knife for alerts - Deduplication, correlation, filtering and enrichment
- 🔄 Deep integrations - Bi-directional syncs with monitoring tools, customizable workflows
- ⚡ Automation - GitHub Actions for your monitoring tools
- 🤖 AIOps 2.0 - AI-powered correlation and summarization
See full platform documentation.
Supported Integrations
View the full list in our documentation
Missing a provider? Submit a new provider request and we'll add it quickly!
Observability Tools
Databases & Data Warehouses
BigQuery |
ClickHouse |
MongoDB |
MySQL |
PostgreSQL |
Snowflake |
Communication Platforms
Discord |
Google Chat |
Mailchimp |
Mailgun |
Mattermost |
Ntfy.sh |
Pushover |
Resend |
SendGrid |
Slack |
SMTP |
Teams |
Telegram |
Twilio |
Incident Management
Grafana Incident |
Grafana OnCall |
Ilert |
Incident.io |
AWS Incident Manager |
OpsGenie |
PagerDuty |
Pagertree |
SINGL4 |
Squadcast |
Zenduty |
Ticketing Tools
GitHub |
GitLab |
Jira |
Linear |
LinearB |
Microsoft Planner |
Redmine |
ServiceNow |
Trello |
Container Orchecstration Platforms
Azure AKS |
GKE |
Kubernetes |
OpenShift |
Data Enrichment
Bash |
OpenAI |
Python |
QuickChart |
SSH |
Webhook |
Workflows
Keep is GitHub Actions for your monitoring tools.
A Keep Workflow is a declarative YAML file that automates your alert and incident management. Each workflow consists of:
- Triggers - What starts the workflow (alerts, incidents, schedule or manual)
- Steps - Read or fetch data (enrichment, context)
- Actions - Execute operations (update tickets, send notifications, restart servers)
Here's a simple workflow that creates a Jira ticket for every critical
alert from sentry
for payments
and api
services.
For more workflows, see here.
workflow:
id: sentry-alerts
description: create ticket alerts for critical alerts from sentry
triggers:
- type: alert
# customize the filter to run only on critical alert from sentry
filters:
- key: source
value: sentry
- key: severity
value: critical
# regex to match specific services
- key: service
value: r"(payments|ftp)"
actions:
- name: send-slack-message-team-payments
# if the alert is on the payments service, slack the payments team
if: "'{{ alert.service }}' == 'payments'"
provider:
type: slack
# control which Slack configuration you want to use
config: " {{ providers.team-payments-slack }} "
# customize the alert message with context from {{ alert }} or any other {{ step }}
with:
message: |
"A new alert from Sentry: Alert: {{ alert.name }} - {{ alert.description }}
{{ alert}}"
- name: create-jira-ticket-oncall-board
# control the workflow flow with "if" and "foreach" statements
if: "'{{ alert.service }}' == 'ftp' and not '{{ alert.ticket_id }}'"
provider:
type: jira
config: " {{ providers.jira }} "
with:
board_name: "Oncall Board"
custom_fields:
customfield_10201: "Critical"
issuetype: "Task"
# customize the summary
summary: "{{ alert.name }} - {{ alert.description }} (created by Keep)"
description: |
"This ticket was created by Keep.
Please check the alert details below:
{code:json} {{ alert }} {code}"
# enrich the alerts with more context. from now on, the alert will be assigned with the ticket id, type and url
enrich_alert:
- key: ticket_type
value: jira
- key: ticket_id
value: results.issue.key
- key: ticket_url
value: results.ticket_url
Enterprise Ready
- Developer First - Modern REST APIs, native SDKs, and comprehensive documentation for seamless integration
- Enterprise Security - Full authentication support (SSO, SAML, OIDC, LDAP) with granular access control (RBAC, ABAC) and team management
- Flexible Deployment - Deploy on-premises or in air-gapped environments with cloud-agnostic architecture
- Production Scale - High availability, performance-tested infrastructure supporting horizontal scaling for enterprise workloads
Getting Started
Need help? Can't find your environment listed? Reach out on Slack and we'll help you quickly.
Keep can run in various environments and configurations. The easiest way to start is with Keep's Docker Compose.
- Running Keep locally.
- Running Keep on Kubernetes.
- Running Keep with Docker.
- Running Keep on AWS ECS.
- Running Keep on OpenShift.
🫵 Keepers
Top Contributors
A special thanks to our top contributors who help us make Keep great. You are more than awesome!
Want to become a top contributor? Join our Slack and DM Tal, Shahar, or Furkan.
Contributors
Thank you for contributing and continuously making Keep better, you're awesome 🫶
最近版本更新:(数据更新于 2024-12-03 15:02:04)
2024-12-01 17:30:47 v0.30.7
2024-11-29 03:43:11 v0.30.6
2024-11-28 20:29:32 v0.30.5
2024-11-28 19:09:12 v0.30.4
2024-11-26 22:37:35 v0.30.2
2024-11-25 20:59:19 v0.30.1
2024-11-25 17:01:21 v0.30.0
2024-11-25 16:09:14 v0.29.5
2024-11-25 01:44:57 v0.29.4
2024-11-21 19:47:34 v0.29.3
主题(topics):
aiops, alarm, alarms, alerting, alerts, monitoring, monitoring-tool, python, python3, workflow-automation
keephq/keep同语言 Python最近更新仓库
2024-12-12 07:49:49 microsoft/graphrag
2024-12-12 07:15:49 hiddify/Hiddify-Manager
2024-12-11 23:44:17 Skyvern-AI/skyvern
2024-12-11 04:46:50 home-assistant/core
2024-12-11 01:30:31 ultralytics/ultralytics
2024-12-11 01:23:11 goauthentik/authentik