Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MAIN-0000: creating a dummy pr to check tests failures #1568

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<h2 align="center">Better grouping, enrichment, and remediation of your existing alerts</h2>
<p align="center">
<a href="#%EF%B8%8F-how-it-works"><strong>How it Works</strong></a> |
<a href="#-installing-robusta"><strong>Installation</strong></a> |
<a href="#-installing-robusta"><strong>Installation</strong></a> |
<a href="https://docs.robusta.dev/master/configuration/index.html"><strong>Integrations ↗</strong></a> |
<a href="https://docs.robusta.dev/master/index.html"><strong>Docs ↗</strong></a> |
<a href="https://bit.ly/robusta-slack"><strong>Slack Community ↗</strong></a>
Expand All @@ -16,7 +16,7 @@

Compatible with kube-prometheus-stack, Prometheus Operator, and more.

Robusta integrates with Prometheus by webhook and adds features like:
Robusta integrates with Prometheus by webhook and adds features like:

* [**Smart Grouping**](https://docs.robusta.dev/master/configuration/notification-grouping.html) - reduce notification spam with Slack threads 🧵
* [**AI Investigation**](https://docs.robusta.dev/master/configuration/ai-analysis.html#ai-analysis) - Kickstart alert investigation with AI (optional)
Expand Down
7 changes: 2 additions & 5 deletions src/robusta/runner/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@

import signal

from robusta.core.model.env_vars import (
ENABLE_TELEMETRY,
ROBUSTA_TELEMETRY_ENDPOINT,
TELEMETRY_PERIODIC_SEC,
)
from robusta.core.model.env_vars import ENABLE_TELEMETRY, ROBUSTA_TELEMETRY_ENDPOINT, TELEMETRY_PERIODIC_SEC
from robusta.core.playbooks.playbooks_event_handler_impl import PlaybooksEventHandlerImpl
from robusta.model.config import Registry
from robusta.patch.patch import create_monkey_patches
Expand Down Expand Up @@ -47,6 +43,7 @@ def main():
else:
logging.info("Telemetry is disabled.")

logging.info("nothing")
Web.init(event_handler, loader)

signal.signal(signal.SIGINT, event_handler.handle_sigint)
Expand Down
Loading