-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
364 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
import json | ||
import logging | ||
|
||
import requests | ||
|
||
from robusta.core.model.base_params import AIInvestigateParams | ||
from robusta.core.model.events import ExecutionBaseEvent | ||
from robusta.core.playbooks.actions_registry import action | ||
from robusta.core.reporting import Finding, FindingSubject | ||
from robusta.core.reporting.base import EnrichmentType | ||
from robusta.core.reporting.consts import FindingSubjectType, FindingType | ||
from robusta.core.reporting.holmes import HolmesRequest, HolmesResult, HolmesResultsBlock | ||
from robusta.integrations.prometheus.utils import HolmesDiscovery | ||
|
||
|
||
@action | ||
def ask_holmes(event: ExecutionBaseEvent, params: AIInvestigateParams): | ||
holmes_url = HolmesDiscovery.find_holmes_url(params.holmes_url) | ||
if not holmes_url: | ||
logging.error("Holmes url not found") | ||
return | ||
|
||
try: | ||
issue_name = params.context.get("issue_type", "unknown health issue") | ||
holmes_req = HolmesRequest( | ||
source=params.context.get("source", "unknown source"), | ||
title=f"{issue_name}", | ||
description="", | ||
subject=params.resource.dict() if params.resource else None, | ||
context=params.context if params.context else None, | ||
include_tool_calls=True, | ||
include_tool_call_results=True, | ||
) | ||
result = requests.post(f"{holmes_url}/api/investigate", data=holmes_req.json()) | ||
result.raise_for_status() | ||
|
||
holmes_result = HolmesResult(**json.loads(result.text)) | ||
title_suffix = ( | ||
f" on {params.resource.name}" | ||
if params.resource.name and params.resource.name.lower() != "unresolved" | ||
else "" | ||
) | ||
|
||
finding = Finding( | ||
title=f"AI Analysis of {issue_name}{title_suffix}", | ||
aggregation_key="HolmesInvestigationResult", | ||
subject=FindingSubject( | ||
name=params.resource.name, | ||
namespace=params.resource.namespace, | ||
subject_type=FindingSubjectType.from_kind(params.resource.kind), | ||
node=params.resource.node, | ||
container=params.resource.container, | ||
), | ||
finding_type=FindingType.AI_ANALYSIS, | ||
failure=False, | ||
) | ||
finding.add_enrichment( | ||
[HolmesResultsBlock(holmes_result=holmes_result)], enrichment_type=EnrichmentType.ai_analysis | ||
) | ||
|
||
event.add_finding(finding) | ||
|
||
except Exception: | ||
logging.exception("Failed to get holmes analysis") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
from typing import Any, Dict, List, Optional | ||
|
||
from pydantic import BaseModel | ||
|
||
from robusta.core.reporting import BaseBlock | ||
|
||
|
||
class HolmesRequest(BaseModel): | ||
source: str # "prometheus" etc | ||
title: str | ||
description: str | ||
subject: dict | ||
context: Dict[str, Any] | ||
include_tool_calls: bool = False | ||
include_tool_call_results: bool = False | ||
|
||
|
||
class ToolCallResult(BaseModel): | ||
tool_name: str | ||
description: str | ||
result: str | ||
|
||
|
||
class HolmesResult(BaseModel): | ||
tool_calls: Optional[List[ToolCallResult]] = None | ||
analysis: Optional[str] = None | ||
|
||
|
||
class HolmesResultsBlock(BaseBlock): | ||
holmes_result: Optional[HolmesResult] | ||
|
||
def __init__( | ||
self, | ||
holmes_result: Optional[HolmesResult] = None, | ||
**kwargs, | ||
): | ||
super().__init__( | ||
holmes_result=holmes_result, | ||
**kwargs, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.