# keep **Repository Path**: daibin1004/keep ## Basic Information - **Project Name**: keep - **Description**: Keep 是第一个开源 AIOps 平台,填补了现有监控工具(如 Grafana 和 Prometheus)在 AIOps 能力上的空白。它特别适合小型团队,因为传统企业工具成本高、维护复杂,而 Keep 提供企业级功能(如扩展性、SSO)的同时,保持对小型团队的友好性。它利用大型语言模型(LLM)时代的进步,将 AI 无缝集成到运维中。 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2025-05-27 - **Last Updated**: 2025-05-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

The open-source AIOps and alert management platform


Single pane of glass, alert deduplication, enrichment, filtering and correlation, bi-directional integrations, workflows, dashboards.
PRs Welcome Join Slack GitHub commit activity

Docs · Try it out · Report Bug · Book a Demo · Website

Sneak preview screenshot

- 🔍 **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](#workflows)** - GitHub Actions for your monitoring tools - 🤖 **AIOps 2.0** - AI-powered correlation and summarization
> See full [platform documentation](https://docs.keephq.dev).
## Supported Integrations > View the full list in our [documentation](https://docs.keephq.dev/providers/documentation) > Missing a provider? [Submit a new provider request](https://github.com/keephq/keep/issues/new?assignees=&labels=provider&projects=&template=new_provider_request.md&title=) and we'll add it quickly! ### AI Backends for Enrichments, Correlations and Incident Context Gathering
Anthropic
Anthropic
OpenAI
OpenAI
DeepSeek
DeepSeek
Ollama
Ollama
LlamaCPP
LlamaCPP
Grok
Grok
Gemini
Gemini
### Observability Tools
AppDynamics
AppDynamics
Axiom
Axiom
Azure Monitoring
Azure Monitoring
Centreon
Centreon
Checkmk
Checkmk
Cilium
Cilium
Checkly
Checkly
CloudWatch
CloudWatch
Coralogix
Coralogix
Dash0
Dash0
Datadog
Datadog
Dynatrace
Dynatrace
Elastic
Elastic
GCP Monitoring
GCP Monitoring
Grafana
Grafana
Grafana Loki
Grafana Loki
Graylog
Graylog
Kibana
Kibana
LibreNMS
LibreNMS
NetBox
NetBox
Netdata
Netdata
New Relic
New Relic
OpenSearch Serverless
OpenSearch Serverless
Parseable
Parseable
Pingdom
Pingdom
Prometheus
Prometheus
Rollbar
Rollbar
Sentry
Sentry
SignalFX
SignalFX
OpenObserve
OpenObserve
Site24x7
Site24x7
Splunk
Splunk
StatusCake
StatusCake
SumoLogic
SumoLogic
SumoLogic
ThousandEyes
UptimeKuma
UptimeKuma
VictoriaLogs
VictoriaLogs
VictoriaMetrics
VictoriaMetrics
Wazuh
Wazuh
Zabbix
Zabbix
### Databases & Data Warehouses
BigQuery
BigQuery
ClickHouse
ClickHouse
Databend
Databend
MongoDB
MongoDB
MySQL
MySQL
PostgreSQL
PostgreSQL
Snowflake
Snowflake
### Communication Platforms
Discord
Discord
Google Chat
Google Chat
Mailchimp
Mailchimp
Mailgun
Mailgun
Mattermost
Mattermost
Ntfy.sh
Ntfy.sh
Pushover
Pushover
Resend
Resend
SendGrid
SendGrid
Slack
Slack
SMTP
SMTP
Teams
Teams
Teams
Zoom
Telegram
Telegram
Twilio
Twilio
### Incident Management
Grafana Incident
Grafana Incident
Grafana OnCall
Grafana OnCall
Ilert
Ilert
Incident.io
Incident.io
AWS Incident Manager
AWS Incident Manager
OpsGenie
OpsGenie
PagerDuty
PagerDuty
Pagertree
Pagertree
SINGL4
SINGL4
Squadcast
Squadcast
Zenduty
Zenduty
Flashduty
Flashduty
### Ticketing Tools
Asana
Asana
GitHub
GitHub
GitLab
GitLab
Jira
Jira
Linear
Linear
LinearB
LinearB
Microsoft Planner
Microsoft Planner
Monday
Monday
Redmine
Redmine
ServiceNow
ServiceNow
Trello
Trello
YouTrack
YouTrack
### Container Orchecstration Platforms
Azure AKS
Azure AKS
ArgoCD
ArgoCD
GKE
GKE
Kubernetes
Kubernetes
OpenShift
OpenShift
### Data Enrichment
Bash
Bash
OpenAI
OpenAI
Python
Python
QuickChart
QuickChart
SSH
SSH
Webhook
Webhook
### Workflow Orchestration
Airflow
Airflow
### Queues
AmazonSQS
Amazon SQS
Kafka
Kafka
## 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](https://github.com/keephq/keep/tree/main/examples/workflows). ```yaml 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](https://docs.keephq.dev/deployment/authentication/overview)** - 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](https://docs.keephq.dev/deployment/stress-testing)** - 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](https://docs.keephq.dev/development/getting-started). - Running Keep on [Kubernetes](https://docs.keephq.dev/deployment/kubernetes/installation). - Running Keep with [Docker](https://docs.keephq.dev/deployment/docker). - Running Keep on [AWS ECS](https://docs.keephq.dev/deployment/ecs). - Running Keep on [OpenShift](https://docs.keephq.dev/deployment/kubernetes/openshift). ## 🫵 Keepers ### Top Contributors A special thanks to our top contributors who help us make Keep great. You are more than awesome! - [Furkan](https://github.com/pehlicd) - [Asharon](https://github.com/asharonbaltazar) 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 🫶