From 1b698f9fe1a4f803ce32b17c32105aebf9550c82 Mon Sep 17 00:00:00 2001 From: Arik Alon Date: Tue, 24 Sep 2024 13:11:00 +0300 Subject: [PATCH] creating a dummy pr to check tests failures --- README.md | 4 ++-- src/robusta/runner/main.py | 7 ++----- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c0e8855d5..adf9704d8 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@

Better grouping, enrichment, and remediation of your existing alerts

How it Works | - Installation | + Installation | Integrations โ†— | Docs โ†— | Slack Community โ†— @@ -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) diff --git a/src/robusta/runner/main.py b/src/robusta/runner/main.py index 097bf8bda..799827c0b 100644 --- a/src/robusta/runner/main.py +++ b/src/robusta/runner/main.py @@ -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 @@ -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)