holmesgpt 0.12.3a1__py3-none-any.whl → 0.12.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of holmesgpt might be problematic. Click here for more details.

Files changed (52) hide show
  1. holmes/__init__.py +1 -1
  2. holmes/config.py +75 -33
  3. holmes/core/config.py +5 -0
  4. holmes/core/conversations.py +17 -2
  5. holmes/core/investigation.py +1 -0
  6. holmes/core/llm.py +1 -2
  7. holmes/core/prompt.py +29 -4
  8. holmes/core/supabase_dal.py +49 -13
  9. holmes/core/tool_calling_llm.py +26 -1
  10. holmes/core/tools.py +2 -1
  11. holmes/core/tools_utils/tool_executor.py +1 -0
  12. holmes/core/toolset_manager.py +10 -3
  13. holmes/core/tracing.py +77 -10
  14. holmes/interactive.py +110 -20
  15. holmes/main.py +13 -18
  16. holmes/plugins/destinations/slack/plugin.py +19 -9
  17. holmes/plugins/prompts/_fetch_logs.jinja2 +11 -1
  18. holmes/plugins/prompts/_general_instructions.jinja2 +6 -37
  19. holmes/plugins/prompts/_permission_errors.jinja2 +6 -0
  20. holmes/plugins/prompts/_runbook_instructions.jinja2 +13 -5
  21. holmes/plugins/prompts/_toolsets_instructions.jinja2 +22 -14
  22. holmes/plugins/prompts/generic_ask.jinja2 +6 -0
  23. holmes/plugins/prompts/generic_ask_conversation.jinja2 +1 -0
  24. holmes/plugins/prompts/generic_ask_for_issue_conversation.jinja2 +1 -0
  25. holmes/plugins/prompts/generic_investigation.jinja2 +1 -0
  26. holmes/plugins/prompts/kubernetes_workload_ask.jinja2 +0 -2
  27. holmes/plugins/runbooks/__init__.py +20 -4
  28. holmes/plugins/toolsets/__init__.py +7 -9
  29. holmes/plugins/toolsets/aks-node-health.yaml +0 -8
  30. holmes/plugins/toolsets/argocd.yaml +4 -1
  31. holmes/plugins/toolsets/azure_sql/apis/azure_sql_api.py +1 -1
  32. holmes/plugins/toolsets/azure_sql/apis/connection_failure_api.py +2 -0
  33. holmes/plugins/toolsets/confluence.yaml +1 -1
  34. holmes/plugins/toolsets/datadog/datadog_metrics_instructions.jinja2 +54 -4
  35. holmes/plugins/toolsets/datadog/toolset_datadog_metrics.py +150 -6
  36. holmes/plugins/toolsets/kubernetes.yaml +6 -0
  37. holmes/plugins/toolsets/prometheus/prometheus.py +2 -6
  38. holmes/plugins/toolsets/prometheus/prometheus_instructions.jinja2 +2 -2
  39. holmes/plugins/toolsets/runbook/runbook_fetcher.py +65 -6
  40. holmes/plugins/toolsets/service_discovery.py +1 -1
  41. holmes/plugins/toolsets/slab.yaml +1 -1
  42. holmes/utils/colors.py +7 -0
  43. holmes/utils/console/consts.py +5 -0
  44. holmes/utils/console/result.py +2 -1
  45. holmes/utils/keygen_utils.py +6 -0
  46. holmes/version.py +2 -2
  47. holmesgpt-0.12.4.dist-info/METADATA +258 -0
  48. {holmesgpt-0.12.3a1.dist-info → holmesgpt-0.12.4.dist-info}/RECORD +51 -47
  49. holmesgpt-0.12.3a1.dist-info/METADATA +0 -400
  50. {holmesgpt-0.12.3a1.dist-info → holmesgpt-0.12.4.dist-info}/LICENSE.txt +0 -0
  51. {holmesgpt-0.12.3a1.dist-info → holmesgpt-0.12.4.dist-info}/WHEEL +0 -0
  52. {holmesgpt-0.12.3a1.dist-info → holmesgpt-0.12.4.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,258 @@
1
+ Metadata-Version: 2.1
2
+ Name: holmesgpt
3
+ Version: 0.12.4
4
+ Summary:
5
+ Author: Natan Yellin
6
+ Author-email: natan@robusta.dev
7
+ Requires-Python: >=3.10,<4.0
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Requires-Dist: aiohttp (>=3.10.2,<4.0.0)
12
+ Requires-Dist: azure-core (>=1.34.0,<2.0.0)
13
+ Requires-Dist: azure-identity (>=1.23.0,<2.0.0)
14
+ Requires-Dist: azure-mgmt-alertsmanagement (>=1.0.0,<2.0.0)
15
+ Requires-Dist: azure-mgmt-monitor (>=7.0.0b1,<8.0.0)
16
+ Requires-Dist: azure-mgmt-resource (>=23.3.0,<24.0.0)
17
+ Requires-Dist: azure-mgmt-sql (>=4.0.0b21,<5.0.0)
18
+ Requires-Dist: azure-monitor-query (>=1.2.0,<2.0.0)
19
+ Requires-Dist: backoff (>=2.2.1,<3.0.0)
20
+ Requires-Dist: boto3 (>=1.34.145,<2.0.0)
21
+ Requires-Dist: bs4 (>=0.0.2,<0.0.3)
22
+ Requires-Dist: cachetools (>=5.5.0,<6.0.0)
23
+ Requires-Dist: certifi (>=2024.7.4,<2025.0.0)
24
+ Requires-Dist: colorlog (>=6.8.2,<7.0.0)
25
+ Requires-Dist: confluent-kafka (>=2.6.1,<3.0.0)
26
+ Requires-Dist: fastapi (>=0.116,<0.117)
27
+ Requires-Dist: google-api-python-client (>=2.156.0,<3.0.0)
28
+ Requires-Dist: humanize (>=4.9.0,<5.0.0)
29
+ Requires-Dist: jinja2 (>=3.1.2,<4.0.0)
30
+ Requires-Dist: kubernetes (>=32.0.1,<33.0.0)
31
+ Requires-Dist: litellm (==1.74.7)
32
+ Requires-Dist: markdown (>=3.6,<4.0)
33
+ Requires-Dist: markdownify (>=1.1.0,<2.0.0)
34
+ Requires-Dist: mcp (==v1.12.2)
35
+ Requires-Dist: openai (>=1.6.1,<2.0.0)
36
+ Requires-Dist: opensearch-py (>=2.8.0,<3.0.0)
37
+ Requires-Dist: prompt-toolkit (>=3.0.51,<4.0.0)
38
+ Requires-Dist: protobuf (>=6.31.1)
39
+ Requires-Dist: pydantic (>=2.7,<3.0)
40
+ Requires-Dist: pydantic-settings (>=2.1.0,<3.0.0)
41
+ Requires-Dist: pydash (>=8.0.1,<9.0.0)
42
+ Requires-Dist: pygments (>=2.18.0,<3.0.0)
43
+ Requires-Dist: pyodbc (>=5.0.1,<6.0.0)
44
+ Requires-Dist: pytest-shared-session-scope (>=0.4.0,<0.5.0)
45
+ Requires-Dist: python-benedict (>=0.33.1,<0.34.0)
46
+ Requires-Dist: python_multipart (>=0.0.18,<0.0.19)
47
+ Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
48
+ Requires-Dist: requests (>=2.32.4,<3.0.0)
49
+ Requires-Dist: rich (>=13.7.1,<14.0.0)
50
+ Requires-Dist: sentry-sdk[fastapi] (>=2.20.0,<3.0.0)
51
+ Requires-Dist: setuptools (==70.0.0)
52
+ Requires-Dist: slack-bolt (>=1.18.1,<2.0.0)
53
+ Requires-Dist: starlette (==0.47.2)
54
+ Requires-Dist: strenum (>=0.4.15,<0.5.0)
55
+ Requires-Dist: supabase (>=2.5,<3.0)
56
+ Requires-Dist: tenacity (>=9.1.2,<10.0.0)
57
+ Requires-Dist: typer (>=0.15.4,<0.16.0)
58
+ Requires-Dist: urllib3 (>=1.26.19,<2.0.0)
59
+ Requires-Dist: uvicorn (>=0.30,<0.31)
60
+ Description-Content-Type: text/markdown
61
+
62
+ <div align="center">
63
+ <h1 align="center">AI Agent for Cloud Troubleshooting and Alert Investigation</h1>
64
+
65
+ HolmesGPT is an AI agent for investigating problems in your cloud, finding the root cause, and suggesting remediations. It has dozens of built-in integrations for cloud providers, observability tools, and on-call systems.
66
+
67
+ HolmesGPT has been submitted to the CNCF as a sandbox project ([view status](https://github.com/cncf/sandbox/issues/392)). You can learn more about HolmesGPT's maintainers and adopters [here](./ADOPTERS.md).
68
+
69
+ <p align="center">
70
+ <a href="#how-it-works"><strong>How it Works</strong></a> |
71
+ <a href="#installation"><strong>Installation</strong></a> |
72
+ <a href="#supported-llm-providers"><strong>LLM Providers</strong></a> |
73
+ <a href="https://www.youtube.com/watch?v=TfQfx65LsDQ"><strong>YouTube Demo</strong></a> |
74
+ <a href="https://deepwiki.com/robusta-dev/holmesgpt"><img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki"></a>
75
+ </p>
76
+ </div>
77
+
78
+ ![HolmesGPT Investigation Demo](https://robusta-dev.github.io/holmesgpt/assets/HolmesInvestigation.gif)
79
+
80
+ ## How it Works
81
+
82
+ HolmesGPT connects AI models with live observability data and organizational knowledge. It uses an **agentic loop** to analyze data from multiple sources and identify possible root causes.
83
+
84
+ <img width="3114" alt="holmesgpt-architecture-diagram" src="https://github.com/user-attachments/assets/f659707e-1958-4add-9238-8565a5e3713a" />
85
+
86
+ ### 🔗 Data Sources
87
+
88
+ HolmesGPT integrates with popular observability and cloud platforms. The following data sources ("toolsets") are built-in. [Add your own](#customizing-holmesgpt).
89
+
90
+ | Data Source | Status | Notes |
91
+ |-------------|--------|-------|
92
+ | [<img src="images/integration_logos/argocd-icon.png" alt="ArgoCD" width="20" style="vertical-align: middle;"> **ArgoCD**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/argocd/) | ✅ | Get status, history and manifests and more of apps, projects and clusters |
93
+ | [<img src="images/integration_logos/aws_rds_logo.png" alt="AWS RDS" width="20" style="vertical-align: middle;"> **AWS RDS**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/aws/) | ✅ | Fetch events, instances, slow query logs and more |
94
+ | [<img src="images/integration_logos/confluence_logo.png" alt="Confluence" width="20" style="vertical-align: middle;"> **Confluence**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/confluence/) | ✅ | Private runbooks and documentation |
95
+ | [<img src="images/integration_logos/coralogix-icon.png" alt="Coralogix Logs" width="20" style="vertical-align: middle;"> **Coralogix Logs**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/coralogix-logs/) | ✅ | Retrieve logs for any resource |
96
+ | [<img src="images/integration_logos/date_time_icon.png" alt="Datetime" width="20" style="vertical-align: middle;"> **Datetime**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/datetime/) | ✅ | Date and time-related operations |
97
+ | [<img src="images/integration_logos/docker_logo.png" alt="Docker" width="20" style="vertical-align: middle;"> **Docker**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/docker/) | ✅ | Get images, logs, events, history and more |
98
+ | [<img src="images/integration_logos/github_logo.png" alt="GitHub" width="20" style="vertical-align: middle;"> **GitHub**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/github/) | 🟡 Beta | Remediate alerts by opening pull requests with fixes |
99
+ | [<img src="images/integration_logos/datadog_logo.png" alt="DataDog" width="20" style="vertical-align: middle;"> **DataDog**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/datadog/) | 🟡 Beta | Fetches log data from datadog |
100
+ | [<img src="images/integration_logos/grafana_loki-icon.png" alt="Loki" width="20" style="vertical-align: middle;"> **Grafana Loki**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/grafanaloki/) | ✅ | Query logs for Kubernetes resources or any query |
101
+ | [<img src="images/integration_logos/tempo_logo.png" alt="Tempo" width="20" style="vertical-align: middle;"> **Grafana Tempo**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/grafanatempo/) | ✅ | Fetch trace info, debug issues like high latency in application. |
102
+ | [<img src="images/integration_logos/helm_logo.png" alt="Helm" width="20" style="vertical-align: middle;"> **Helm**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/helm/) | ✅ | Release status, chart metadata, and values |
103
+ | [<img src="images/integration_logos/http-icon.png" alt="Internet" width="20" style="vertical-align: middle;"> **Internet**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/internet/) | ✅ | Public runbooks, community docs etc |
104
+ | [<img src="images/integration_logos/kafka_logo.png" alt="Kafka" width="20" style="vertical-align: middle;"> **Kafka**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/kafka/) | ✅ | Fetch metadata, list consumers and topics or find lagging consumer groups |
105
+ | [<img src="images/integration_logos/kubernetes-icon.png" alt="Kubernetes" width="20" style="vertical-align: middle;"> **Kubernetes**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/kubernetes/) | ✅ | Pod logs, K8s events, and resource status (kubectl describe) |
106
+ | [<img src="images/integration_logos/newrelic_logo.png" alt="NewRelic" width="20" style="vertical-align: middle;"> **NewRelic**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/newrelic/) | 🟡 Beta | Investigate alerts, query tracing data |
107
+ | [<img src="images/integration_logos/opensearchserverless-icon.png" alt="OpenSearch" width="20" style="vertical-align: middle;"> **OpenSearch**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/opensearch-status/) | ✅ | Query health, shard, and settings related info of one or more clusters|
108
+ | [<img src="images/integration_logos/prometheus-icon.png" alt="Prometheus" width="20" style="vertical-align: middle;"> **Prometheus**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/prometheus/) | ✅ | Investigate alerts, query metrics and generate PromQL queries |
109
+ | [<img src="images/integration_logos/rabbit_mq_logo.png" alt="RabbitMQ" width="20" style="vertical-align: middle;"> **RabbitMQ**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/rabbitmq/) | ✅ | Info about partitions, memory/disk alerts to troubleshoot split-brain scenarios and more |
110
+ | [<img src="images/integration_logos/robusta_logo.png" alt="Robusta" width="20" style="vertical-align: middle;"> **Robusta**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/robusta/) | ✅ | Multi-cluster monitoring, historical change data, user-configured runbooks, PromQL graphs and more |
111
+ | [<img src="images/integration_logos/slab_logo.png" alt="Slab" width="20" style="vertical-align: middle;"> **Slab**](https://robusta-dev.github.io/holmesgpt/data-sources/builtin-toolsets/slab/) | ✅ | Team knowledge base and runbooks on demand |
112
+
113
+ ### 🚀 End-to-End Automation
114
+
115
+ HolmesGPT can fetch alerts/tickets to investigate from external systems, then write the analysis back to the source or Slack.
116
+
117
+ | Integration | Status | Notes |
118
+ |-------------------------|-----------|-------|
119
+ | Slack | 🟡 Beta | [Demo.](https://www.loom.com/share/afcd81444b1a4adfaa0bbe01c37a4847) Tag HolmesGPT bot in any Slack message |
120
+ | Prometheus/AlertManager | ✅ | Robusta SaaS or HolmesGPT CLI |
121
+ | PagerDuty | ✅ | HolmesGPT CLI only |
122
+ | OpsGenie | ✅ | HolmesGPT CLI only |
123
+ | Jira | ✅ | HolmesGPT CLI only |
124
+ | GitHub | ✅ | HolmesGPT CLI only |
125
+
126
+ ## Installation
127
+
128
+ <a href="https://robusta-dev.github.io/holmesgpt/installation/cli-installation/">
129
+ <img src="images/integration_logos/all-installation-methods.png" alt="All Installation Methods" style="max-width:100%; height:auto;">
130
+ </a>
131
+
132
+ Read the [installation documentation](https://robusta-dev.github.io/holmesgpt/installation/cli-installation/) to learn how to install HolmesGPT.
133
+
134
+ ## Supported LLM Providers
135
+
136
+ <a href="https://robusta-dev.github.io/holmesgpt/ai-providers/">
137
+ <img src="images/integration_logos/all-integration-providers.png" alt="All Integration Providers" style="max-width:100%; height:auto;">
138
+ </a>
139
+
140
+ Read the [LLM Providers documentation](https://robusta-dev.github.io/holmesgpt/ai-providers/) to learn how to set up your LLM API key.
141
+
142
+ ## Using HolmesGPT
143
+
144
+ - In the Robusta SaaS: Go to [platform.robusta.dev](https://platform.robusta.dev/signup/?utm_source=github&utm_medium=holmesgpt-readme&utm_content=ways_to_use_holmesgpt_section) and use Holmes from your browser
145
+ - With HolmesGPT CLI: [setup an LLM API key](https://robusta-dev.github.io/holmesgpt/ai-providers/) and ask Holmes a question 👇
146
+
147
+ ```bash
148
+ holmes ask "what pods are unhealthy and why?"
149
+ ```
150
+
151
+ You can also provide files as context:
152
+ ```bash
153
+ holmes ask "summarize the key points in this document" -f ./mydocument.txt
154
+ ```
155
+
156
+ You can also load the prompt from a file using the `--prompt-file` option:
157
+ ```bash
158
+ holmes ask --prompt-file ~/long-prompt.txt
159
+
160
+ Enter interactive mode to ask follow-up questions:
161
+ ```bash
162
+ holmes ask "what pods are unhealthy and why?" --interactive
163
+ # or
164
+ holmes ask "what pods are unhealthy and why?" -i
165
+ ```
166
+
167
+ Also supported:
168
+
169
+ <details>
170
+ <summary>HolmesGPT CLI: investigate Prometheus alerts</summary>
171
+
172
+ Pull alerts from AlertManager and investigate them with HolmesGPT:
173
+
174
+ ```bash
175
+ holmes investigate alertmanager --alertmanager-url http://localhost:9093
176
+ # if on Mac OS and using the Holmes Docker image👇
177
+ # holmes investigate alertmanager --alertmanager-url http://docker.for.mac.localhost:9093
178
+ ```
179
+
180
+ <b>To investigate alerts in your browser, sign up for a free trial of [Robusta SaaS](https://platform.robusta.dev/signup/?utm_source=github&utm_medium=holmesgpt-readme&utm_content=ways_to_use_holmesgpt_section). </b>
181
+
182
+
183
+ <b>Optional:</b> port-forward to AlertManager before running the command mentioned above (if running Prometheus inside Kubernetes)
184
+
185
+ ```bash
186
+ kubectl port-forward alertmanager-robusta-kube-prometheus-st-alertmanager-0 9093:9093 &
187
+ ```
188
+ </details>
189
+
190
+ <details>
191
+ <summary>HolmesGPT CLI: investigate PagerDuty and OpsGenie alerts</summary>
192
+
193
+ ```bash
194
+ holmes investigate opsgenie --opsgenie-api-key <OPSGENIE_API_KEY>
195
+ holmes investigate pagerduty --pagerduty-api-key <PAGERDUTY_API_KEY>
196
+ # to write the analysis back to the incident as a comment
197
+ holmes investigate pagerduty --pagerduty-api-key <PAGERDUTY_API_KEY> --update
198
+ ```
199
+
200
+ For more details, run `holmes investigate <source> --help`
201
+ </details>
202
+
203
+ ## Customizing HolmesGPT
204
+
205
+ HolmesGPT can investigate many issues out of the box, with no customization or training. Optionally, you can extend Holmes to improve results:
206
+
207
+ **Custom Data Sources**: Add data sources (toolsets) to improve investigations
208
+ - If using Robusta SaaS: See [here](https://robusta-dev.github.io/holmesgpt/data-sources/custom-toolsets/)
209
+ - If using the CLI: Use `-t` flag with [custom toolset files](./examples/custom_toolset.yaml) or add to `~/.holmes/config.yaml`
210
+
211
+ **Custom Runbooks**: Give HolmesGPT instructions for known alerts:
212
+ - If using Robusta SaaS: Use the Robusta UI to add runbooks
213
+ - If using the CLI: Use `-r` flag with [custom runbook files](./examples/custom_runbooks.yaml) or add to `~/.holmes/config.yaml`
214
+
215
+ You can save common settings and API Keys in a config file to avoid passing them from the CLI each time:
216
+
217
+ <details>
218
+ <summary>Reading settings from a config file</summary>
219
+
220
+ You can save common settings and API keys in config file for re-use. Place the config file in <code>~/.holmes/config.yaml`</code> or pass it using the <code> --config</code>
221
+
222
+ You can view an example config file with all available settings [here](config.example.yaml).
223
+ </details>
224
+
225
+ ## 🔐 Data Privacy
226
+
227
+ By design, HolmesGPT has **read-only access** and respects RBAC permissions. It is safe to run in production environments.
228
+
229
+ We do **not** train HolmesGPT on your data. Data sent to Robusta SaaS is private to your account.
230
+
231
+ For extra privacy, [bring an API key](https://robusta-dev.github.io/holmesgpt/ai-providers/) for your own AI model.
232
+
233
+
234
+ ## Evals
235
+
236
+ Because HolmesGPT relies on LLMs, it relies on [a suite of pytest based evaluations](https://robusta-dev.github.io/holmesgpt/development/evals/) to ensure the prompt and HolmesGPT's default set of tools work as expected with LLMs.
237
+
238
+ - [Introduction to HolmesGPT's evals](https://robusta-dev.github.io/holmesgpt/development/evals/).
239
+ - [Write your own evals](https://robusta-dev.github.io/holmesgpt/development/evals/writing/).
240
+ - [Use Braintrust to view analyze results (optional)](https://robusta-dev.github.io/holmesgpt/development/evals/reporting/).
241
+
242
+
243
+ ## License
244
+ Distributed under the MIT License. See [LICENSE.txt](https://github.com/robusta-dev/holmesgpt/blob/master/LICENSE.txt) for more information.
245
+ <!-- Change License -->
246
+
247
+ ## Support
248
+
249
+ If you have any questions, feel free to message us on [robustacommunity.slack.com](https://bit.ly/robusta-slack)
250
+
251
+ ## How to Contribute
252
+
253
+ Please read our [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines and instructions.
254
+
255
+ For help, contact us on [Slack](https://bit.ly/robusta-slack) or ask [DeepWiki AI](https://deepwiki.com/robusta-dev/holmesgpt) your questions.
256
+
257
+ [![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/robusta-dev/holmesgpt)
258
+
@@ -1,56 +1,58 @@
1
1
  holmes/.git_archival.json,sha256=PbwdO7rNhEJ4ALiO12DPPb81xNAIsVxCA0m8OrVoqsk,182
2
- holmes/__init__.py,sha256=Pp5lw26yXBu-vOxmxoLdabouRYdFMk2D0czzpcfuf6M,265
2
+ holmes/__init__.py,sha256=jeKEV7Tn8N7KUTLm21MjDCY1siohNa-UNjR7pG1qtAA,257
3
3
  holmes/clients/robusta_client.py,sha256=u1ZvPBE7VaNVrPdtiTLDjI3Xrx6TWTnOWeIlky_aCHg,672
4
4
  holmes/common/env_vars.py,sha256=6Pi3v9cumKKCnEoeJT5fGgmzzerM5oV0izHnM-nPsBA,1963
5
5
  holmes/common/openshift.py,sha256=akbQ0GpnmuzXOqTcotpTDQSDKIROypS9mgPOprUgkCw,407
6
- holmes/config.py,sha256=WblVSBedeDeG_xl-SkPGkxTUgdw4vXz2mOJg08oQQpU,20266
6
+ holmes/config.py,sha256=z6miq1QIdB6r6uK7gFQ2w2PiP3zWsMuvfLhBiOo4IvQ,21746
7
7
  holmes/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- holmes/core/conversations.py,sha256=LXT3T-5hwl4xHXBhO4XyOKm6k9w58anQ3dw4F2aptqs,20769
9
- holmes/core/investigation.py,sha256=nSVkCfeliZjQT2PrgNPD3o1EwKe9je0Pq3F2bDNQiCU,5646
8
+ holmes/core/config.py,sha256=9QGIXeYff9FPWa91as2OkRO2SupHzfNQZWzfNC4Vl-8,113
9
+ holmes/core/conversations.py,sha256=krkcIe5Sl4JIGp5CfQrR74JYLnxis8ifKu09mOA5fAI,21428
10
+ holmes/core/investigation.py,sha256=ScnX2AgVA4SVKSERnA1jwZ_FlwP99XT5P2ifH7J6BzE,5695
10
11
  holmes/core/investigation_structured_output.py,sha256=f9MDfhaI5OfaZ4J_UKqMFhWncoODuo6CBNMNWbdIkvE,9991
11
12
  holmes/core/issue.py,sha256=dbctGv8KHAXC1SeOMkEP-BudJ50u7kA8jLN5FN_d808,2426
12
- holmes/core/llm.py,sha256=P81ZlwDSzK4B1uIMAtJuchQdHUfh088KDz0Yvr-jHk4,10761
13
+ holmes/core/llm.py,sha256=tISWKo8SyeNl-PpfGi18ZX7VWHNLPEnJMb2lnEJYHes,10719
13
14
  holmes/core/models.py,sha256=Bfo-HxC4SjW1Y60fjwn8AAq2zyrTfM61x6OsWartmU8,5693
14
15
  holmes/core/openai_formatting.py,sha256=T5GguKhYiJbHx7mFTyJZZReV-s9LBX443BD_nJQZR2s,1677
15
16
  holmes/core/performance_timing.py,sha256=MTbTiiX2jjPmW7PuNA2eYON40eWsHPryR1ap_KlwZ_E,2217
16
- holmes/core/prompt.py,sha256=pc2qoCw0xeJDjGwG0DHOtEUvKsnUAtR6API10ThdlkU,1244
17
+ holmes/core/prompt.py,sha256=G27CF6g9U6nvwqoFXpmnaFK7N5GfkXi5hZd5iGLt2yA,2252
17
18
  holmes/core/resource_instruction.py,sha256=rduue_t8iQi1jbWc3-k3jX867W1Fvc6Tah5uOJk35Mc,483
18
19
  holmes/core/runbooks.py,sha256=Oj5ICmiGgaq57t4erPzQDvHQ0rMGj1nhiiYhl8peH3Q,939
19
20
  holmes/core/safeguards.py,sha256=SAw-J9y3uAehJVZJYsFs4C62jzLV4p_C07F2jUuJHug,4895
20
- holmes/core/supabase_dal.py,sha256=76QjQcQKlZb8Mr9RCfXq5OJOfkVgm1m6dn-Gtux_J24,20231
21
- holmes/core/tool_calling_llm.py,sha256=SakvJ2nGgZquFMFkT66Iv0Kg3FnvsLxYTc3JnEGc6LA,34930
22
- holmes/core/tools.py,sha256=RU9d1onms_1M3-knZQN9HTOrJCB15xhfn5_kRG22Fr4,20280
21
+ holmes/core/supabase_dal.py,sha256=if8l3kKNuDzbMa_m3SSCNUperNP9pc8LqdWNAb3tJR4,21348
22
+ holmes/core/tool_calling_llm.py,sha256=oexIBsAF-3PFAYqsvvgt5YW7zUIK5k7zZQSsq-SUmY0,35891
23
+ holmes/core/tools.py,sha256=2MIWiaQ8AHzyVTFT5OXRQSoNtgxDcC3fKeXfihKbB3c,20372
23
24
  holmes/core/tools_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- holmes/core/tools_utils/tool_executor.py,sha256=ZGrzn8c8RelQa_t6ZR9siWBBzOCQ1fgKhug4JDqqgUM,2100
25
+ holmes/core/tools_utils/tool_executor.py,sha256=vnP96Qs-UiTno2qgYChd9DszTaDPfzWMNKt8C5JDKOY,2179
25
26
  holmes/core/tools_utils/toolset_utils.py,sha256=1r7nlET4e7CjzMl9MUc_pYOTtRU7YSL8AKp6fQF3_3o,2217
26
- holmes/core/toolset_manager.py,sha256=xc9-tv5jt5f-8qgDCGD4tn_mYcDHvX65UxIcnZfUGME,18171
27
- holmes/core/tracing.py,sha256=PTWjonUIfZLINeLzZgPmKRYdwYwINZopLXnco-cwpgU,7088
28
- holmes/interactive.py,sha256=g4CLH8lr2e5n_VSRfU5v-wzy0g0Vn7uIRXuQJ9GvG_8,36355
29
- holmes/main.py,sha256=DbDMrI3BDtcMT7E1n3tll3-U8xW4ZuAllBjbHhyR0Uw,34888
27
+ holmes/core/toolset_manager.py,sha256=uzWxMgBmPm3RZEeCCBGIWzU0tCecM72u8mThISR4r3g,18532
28
+ holmes/core/tracing.py,sha256=JYNmgrI2TO99Ct7Hx0EiwZVE0qoZ45MlrnfIMG8WV0c,8961
29
+ holmes/interactive.py,sha256=EN-92tPR3Tumr7yBcmkzHzlYCs-C8w1V7oydNkIlT08,39628
30
+ holmes/main.py,sha256=SFcsXCF0aYZvwwyzekjg2Pwcsf2U5sVLDJtLq-sbO0s,34645
30
31
  holmes/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
32
  holmes/plugins/destinations/__init__.py,sha256=vMYwTfA5nQ05us5Rzbaoe0R5C8Navo6ENVZhojtACTk,98
32
33
  holmes/plugins/destinations/slack/__init__.py,sha256=HVoDdTbdJJ1amXt12ZSMVcn3E04rcOrqk6BgNwvMbWY,56
33
- holmes/plugins/destinations/slack/plugin.py,sha256=o8RKBqQGqMiX3zn0FSAyRNE8mGJPE79792MzYld3VJA,5482
34
+ holmes/plugins/destinations/slack/plugin.py,sha256=C9_y-GLLqw3e0pWS2Jfu_P3XoXIpKYBXACNKIEdNdH4,6013
34
35
  holmes/plugins/interfaces.py,sha256=QpKx6BPOoDBS5p0En6-bU23fjNTC1bGR29xvJBQXhZ4,882
35
36
  holmes/plugins/prompts/__init__.py,sha256=btqcrfUvVodB0hHp2FTdbXaRdd8QIKl-vFsY4QyAuUg,1416
36
37
  holmes/plugins/prompts/_current_date_time.jinja2,sha256=E-frERHJYxd1x4_7LoZZbOxxS8p1uMZTEBZ_ehXUNiM,178
37
38
  holmes/plugins/prompts/_default_log_prompt.jinja2,sha256=xEqUBW3AufzzoQxdxxYvbOcve7YWlQxElZEfbfR1SUI,1233
38
- holmes/plugins/prompts/_fetch_logs.jinja2,sha256=3raniENVBjE7Psc0wSanCwOWlT3XE3JqHSgqflfcHoY,3020
39
- holmes/plugins/prompts/_general_instructions.jinja2,sha256=yA0ZkrK7KJa4Du-Xg3pq4ydP8axrctA_jH2RWRcfbAY,6917
39
+ holmes/plugins/prompts/_fetch_logs.jinja2,sha256=tc0Hs075oOc8n5dugu9QtGi8PWKPrSKtqTXbnZcP0l8,3387
40
+ holmes/plugins/prompts/_general_instructions.jinja2,sha256=gtU2FiR2gdglhcg0wpuJ0kk0vp4LLzcigvSBob0Ft4A,4732
40
41
  holmes/plugins/prompts/_global_instructions.jinja2,sha256=d_c-BtDhU_Rmx637TPAyzlIIim8ZAxy7JK3V4GV8IWI,1359
41
- holmes/plugins/prompts/_runbook_instructions.jinja2,sha256=EygoC5KdKGo2D6AvhePjXEeqBqFkQALrL2_uWqaE7d4,646
42
- holmes/plugins/prompts/_toolsets_instructions.jinja2,sha256=TVdbd63hCCgG2A6lZwG9cLFxEOuJAl5RBMi9v9PbVjM,2391
43
- holmes/plugins/prompts/generic_ask.jinja2,sha256=Lauva-1m2y1Wuh0wglC4RKAfikXXQQl6uwv65zF2FTI,1802
44
- holmes/plugins/prompts/generic_ask_conversation.jinja2,sha256=MyncHhfxB2QHGfbCPNS9e2flE_8sQFj4pcjjzee0HVY,1534
45
- holmes/plugins/prompts/generic_ask_for_issue_conversation.jinja2,sha256=6PjHpblLO3g_J-uiwZOB4ETsj0YSaT4ocW7fF81eXcA,1998
46
- holmes/plugins/prompts/generic_investigation.jinja2,sha256=jnIDBg-6zYYj056QOCwXtncaeoyMKHBtFHHntcq5HbU,3344
42
+ holmes/plugins/prompts/_permission_errors.jinja2,sha256=NNEFgkihiumV_nbwA6YnkjSkRu85pvIbPCuQKus41uc,498
43
+ holmes/plugins/prompts/_runbook_instructions.jinja2,sha256=ngm3rmPPvgPG-9fjtR3yVb84YQNdNWfWShDGIag1JnY,1121
44
+ holmes/plugins/prompts/_toolsets_instructions.jinja2,sha256=d-mJ6L5cricTiLpmsDby8j3i5JLKaxoUKdEFMnm0q5M,3114
45
+ holmes/plugins/prompts/generic_ask.jinja2,sha256=qgfaGEJPW5aylM4kvXMV3iKyKRvXiel2lPFihMexRsc,1996
46
+ holmes/plugins/prompts/generic_ask_conversation.jinja2,sha256=qsWIHkrLTHMJSSx62kzGaZBLWmSgOmyhpMQRYoZqj_I,1610
47
+ holmes/plugins/prompts/generic_ask_for_issue_conversation.jinja2,sha256=ooAPhHr7yEDQWziOTnjEUtDUZrGcApLNz2h5RS-0XnA,2074
48
+ holmes/plugins/prompts/generic_investigation.jinja2,sha256=Uy544GeWzANqGL3M0ix48EI_NaWp0XCcmonHlSqJFmI,3420
47
49
  holmes/plugins/prompts/generic_post_processing.jinja2,sha256=1YNBGKgpZkLNO6Xkbi4yqwWE2DZKACq4xl0ygywgY_w,596
48
50
  holmes/plugins/prompts/generic_ticket.jinja2,sha256=FVWvPVnX0JSeBbKu1RuBUcQ7hcsqz661n_QC_kWUPV0,437
49
51
  holmes/plugins/prompts/investigation_output_format.jinja2,sha256=C03_d4cQUhEvI5YBoVSkSZypM21wriGrocN4iP1_8co,1071
50
- holmes/plugins/prompts/kubernetes_workload_ask.jinja2,sha256=ogMXgz70Eqx7cmnrKgNb2uUFkXqlxS-nCgIheC82_rk,5883
52
+ holmes/plugins/prompts/kubernetes_workload_ask.jinja2,sha256=gRfYRYPit6ZIfd9p2a8akFXHxFr6nDkm1jETvGtXlP8,5847
51
53
  holmes/plugins/prompts/kubernetes_workload_chat.jinja2,sha256=rjB6mAHk2SDg2cwZp5vp66ihCer17BE6o8Ezr2zGQE4,1770
52
54
  holmes/plugins/runbooks/README.md,sha256=NeEyRcgE6glxFk214APWJz5Biw5c3IW8g9LYXiy6iUA,1160
53
- holmes/plugins/runbooks/__init__.py,sha256=oPCMKFEZZgDxdmii7g6VKu_gdSq-f9Ijil5D0ZwNCKM,2895
55
+ holmes/plugins/runbooks/__init__.py,sha256=2_39h7qZYhh0a7I2-OrvswF0Y8F7nWqI5zD_dgt_wsk,3333
54
56
  holmes/plugins/runbooks/catalog.json,sha256=GvrpVpk0AIm9HZ3dlh6FI_CVzHoCGJPvZggOMaL_WKs,436
55
57
  holmes/plugins/runbooks/jira.yaml,sha256=o24IL7Cb-Mv5X-cAj8Ik4KmEmY7bf98zBkMP5r39ong,777
56
58
  holmes/plugins/runbooks/kube-prometheus-stack.yaml,sha256=adzr0vxvQZHJ_HYzYl5NdmjrTpVByx9h-3abpaFUo-Y,743
@@ -63,17 +65,17 @@ holmes/plugins/sources/pagerduty/__init__.py,sha256=LYoN1dkUg7NCx7g-gdSomTTJhHyB
63
65
  holmes/plugins/sources/prometheus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
66
  holmes/plugins/sources/prometheus/models.py,sha256=9TcDIRLWZQhwjYGfRZFP_2fGweCn4G5xvYrLoXiQZTc,2904
65
67
  holmes/plugins/sources/prometheus/plugin.py,sha256=oBmuOwNM67suy6HmasUnyVOlBq9-mAxLZLlUzRHIggg,5941
66
- holmes/plugins/toolsets/__init__.py,sha256=Uo9EF4V4Xke-01F5Fnrx62I7bxQydqe_qYg346fj1e4,6904
67
- holmes/plugins/toolsets/aks-node-health.yaml,sha256=mdGQwOcxAOM-TqSLptyj-HyxHUF3OThhSSIqvhJujVQ,3768
68
+ holmes/plugins/toolsets/__init__.py,sha256=Y0gwx4M1ClPtBqMkESpyJ8reWV9qk4t-6vewpaLHm-I,6901
69
+ holmes/plugins/toolsets/aks-node-health.yaml,sha256=RHtJUd6h1EEXEq4AMGrxrGSW7r2Ahx-qq-v9a6jp408,3159
68
70
  holmes/plugins/toolsets/aks.yaml,sha256=oa8XogT1c-lqEL08muvpCzrXArbGL7MXUS2yUqX0sec,5744
69
- holmes/plugins/toolsets/argocd.yaml,sha256=j8Vq_bCKRg6cHeAGZMNgl9YSSU2PUsSH1dNOWafg4ls,3551
71
+ holmes/plugins/toolsets/argocd.yaml,sha256=ir3FkRiwVB9e_5_LwYfMx8Zi_1CnSQ13Iq6UL4Lg76s,3949
70
72
  holmes/plugins/toolsets/atlas_mongodb/instructions.jinja2,sha256=iyft4EwvYcImI_YrMte8_BTJZXGV6i0k84g3oKXR23k,988
71
73
  holmes/plugins/toolsets/atlas_mongodb/mongodb_atlas.py,sha256=bwEXXjuqUCchmUvyKzh2xhYIgq2e4Qw2og_h7SMp83A,13833
72
74
  holmes/plugins/toolsets/aws.yaml,sha256=AZ15JNdlS2RGASteNhBt2vfJhWAulVfteO94gedBus8,4121
73
75
  holmes/plugins/toolsets/azure_sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
74
76
  holmes/plugins/toolsets/azure_sql/apis/alert_monitoring_api.py,sha256=DSrKzzE6lofynViYr0SGaQrWjePpzbfdt3DcplbFGek,26397
75
- holmes/plugins/toolsets/azure_sql/apis/azure_sql_api.py,sha256=6xUByjRLzGxTk3V5hoNs2oL-yc_ay23BNnakVYHPgoM,11492
76
- holmes/plugins/toolsets/azure_sql/apis/connection_failure_api.py,sha256=dw743eIM-K6M-oOU5UErzKB4exRP64zt4g2BvKdXpGo,19098
77
+ holmes/plugins/toolsets/azure_sql/apis/azure_sql_api.py,sha256=2znPN2RcmyoErx3IXFy3CELJvmm799HoraYUC75c4R8,11498
78
+ holmes/plugins/toolsets/azure_sql/apis/connection_failure_api.py,sha256=TfWCwBxZMCvoRPcl9u7TWTtA3ng17I71D63tATcSA7U,19203
77
79
  holmes/plugins/toolsets/azure_sql/apis/connection_monitoring_api.py,sha256=10k5KY1CCDi2-G8qh9xMig0aW50Gl6nw6nwBpzw_Sy4,10189
78
80
  holmes/plugins/toolsets/azure_sql/apis/storage_analysis_api.py,sha256=sbz8b2IeGqwosA34ddbqnXbD_iPYKuAMyZrV0-__O9g,13835
79
81
  holmes/plugins/toolsets/azure_sql/azure_base_toolset.py,sha256=8eQPsFBPTCf_GMpbjfzzN3u-rGUXiElTD06RWCe7uso,2163
@@ -109,17 +111,17 @@ holmes/plugins/toolsets/bash/kubectl/kubectl_logs.py,sha256=r2F1-f-XWxdsWoyS_Mfn
109
111
  holmes/plugins/toolsets/bash/kubectl/kubectl_run.py,sha256=wUtxoDbd4KUha_3o2nKbrOAL4SHxwH4mM2UiJQ_VOTk,1592
110
112
  holmes/plugins/toolsets/bash/kubectl/kubectl_top.py,sha256=a-WxzgzEGbh-iZagCb1VJTrDjW5tcVAfq9QUGttTdBg,2397
111
113
  holmes/plugins/toolsets/bash/parse_command.py,sha256=TmlOgvhqda1piNGQL7CdYpvkADSJAC2Kr-2BeMOcxwI,3446
112
- holmes/plugins/toolsets/confluence.yaml,sha256=mN3dw_oVieiRjGiS9Q_eZWgptUVkyDUAVXvek6kysXU,880
114
+ holmes/plugins/toolsets/confluence.yaml,sha256=E4C9ZC2e_4KsN7sK_3NLSNGA_nqrNDjYR01mGA0xosM,785
113
115
  holmes/plugins/toolsets/consts.py,sha256=vxzGJBF1XNAE9CDteUFIYNRmOagmJ-ktFEfVEU8tHl0,205
114
116
  holmes/plugins/toolsets/coralogix/api.py,sha256=GhdSufUiRZMzLqyjQQoSRXvi89GM-b8-CIdkAANIqLs,5148
115
117
  holmes/plugins/toolsets/coralogix/toolset_coralogix_logs.py,sha256=i7AsxTKyub6E0b5IIf_myOz6qXJsk4jvKPOvCc41_go,3511
116
118
  holmes/plugins/toolsets/coralogix/utils.py,sha256=ogBAPDD46rCnlLjUb1sVVvjG2LntMoj7EBHW1CwqLjw,6036
117
119
  holmes/plugins/toolsets/datadog/datadog_api.py,sha256=W_HhlBp56M94wb8HyAca8tMxnJjQfxDh7UYWLtlClVM,4931
118
- holmes/plugins/toolsets/datadog/datadog_metrics_instructions.jinja2,sha256=kii2D0NleSR0xqSVq4G8q66lweQs5qPUcSLGjimgNKU,1085
120
+ holmes/plugins/toolsets/datadog/datadog_metrics_instructions.jinja2,sha256=eou93Mzwp22TQjNpqCjnL7tmAl2fbBfaDCZ7UpB-yvc,3644
119
121
  holmes/plugins/toolsets/datadog/datadog_traces_formatter.py,sha256=uTtWTrsbvO9cZcUDskJE9p5sEscieXwhEpxvRKkaiEw,10275
120
122
  holmes/plugins/toolsets/datadog/instructions_datadog_traces.jinja2,sha256=9j3-46UNE35DE2xBDTCRt1EedgNdgRXuC1u-X3yB-9I,1487
121
123
  holmes/plugins/toolsets/datadog/toolset_datadog_logs.py,sha256=oHtH7EwHgHLmdkNu3HpxBmnBdCdSgBgnez5bebYRsgk,9021
122
- holmes/plugins/toolsets/datadog/toolset_datadog_metrics.py,sha256=hue98btAFfX04FKtUM36wZX_zr_M8fUH40Fzr4BPr9o,17598
124
+ holmes/plugins/toolsets/datadog/toolset_datadog_metrics.py,sha256=6GwhQGXyDXSo3bu93tVsSfefl-sNObP82gjFr8qLHGs,24023
123
125
  holmes/plugins/toolsets/datadog/toolset_datadog_traces.py,sha256=QYdu4e-AAoykBXlDbxExiXYQVtJhbpYdOUD6bpvAkVU,25628
124
126
  holmes/plugins/toolsets/docker.yaml,sha256=AlJnUF3GssiFPnmqB-EfAfptB7Eyr8BBZ__v898i7Gs,1576
125
127
  holmes/plugins/toolsets/git.py,sha256=HQ8saTV3k_LvHx3G80eYWOMe3fAGd2N4hszK-UXiURU,31595
@@ -138,7 +140,7 @@ holmes/plugins/toolsets/helm.yaml,sha256=I_6LV-iF7za_X7u2aqzXp2_4sAAuJ1bhnImcMqy
138
140
  holmes/plugins/toolsets/internet/internet.py,sha256=SqyPjkaD3FdP17sTec_z8Yk7arrz9lfgqy0vU7qtlpM,7606
139
141
  holmes/plugins/toolsets/internet/notion.py,sha256=_-Xm3qVGaE4CNZGksOUAVf4HpNnOQLZyPs5hlPdpvp4,4621
140
142
  holmes/plugins/toolsets/kafka.py,sha256=2G8pqxGFkMBqVltg-upszhb5oep4ncUkh_C3amsxxYc,24149
141
- holmes/plugins/toolsets/kubernetes.yaml,sha256=b8Y6EM8JZDQPQ6i4kFkhX6MNdYKvo5yYCHhmsMwKmi8,14462
143
+ holmes/plugins/toolsets/kubernetes.yaml,sha256=QVyQ_N0YaOWaaKMNXPVlo9iToaXy8aobJJ69MdmFoTE,14871
142
144
  holmes/plugins/toolsets/kubernetes_logs.py,sha256=MR_Va0sHqOl4DpBiGjtH_939wQ5W8RcXqlBurzALBCw,15314
143
145
  holmes/plugins/toolsets/kubernetes_logs.yaml,sha256=j5BXf5FkUqfCb0ky3YguZ8-80ljhzefNbD9DTcGuWDc,2677
144
146
  holmes/plugins/toolsets/logging_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -152,8 +154,8 @@ holmes/plugins/toolsets/opensearch/opensearch_logs.py,sha256=TbBzLv7we91pTGqmsM1
152
154
  holmes/plugins/toolsets/opensearch/opensearch_traces.py,sha256=gXV2yXrAn0Tu3r5GMiSdsLAKx9myUrHWD0U-OYBXN0g,8497
153
155
  holmes/plugins/toolsets/opensearch/opensearch_traces_instructions.jinja2,sha256=Xn8AW4XCMYV1VkBbF8nNB9fUpKQ1Vbm88iFczj-LQXo,1035
154
156
  holmes/plugins/toolsets/opensearch/opensearch_utils.py,sha256=mh9Wp22tOdJYmA9IaFS7tD3aEENljyeuPOsF-lEe5C0,5097
155
- holmes/plugins/toolsets/prometheus/prometheus.py,sha256=H8YWHj1Q2C8SqabNYQdyoTGe0kZlEarELDQcSVmSkE0,31795
156
- holmes/plugins/toolsets/prometheus/prometheus_instructions.jinja2,sha256=hIR8Uo9QNVgsUdY94NVNKwpQvJiuGpkECGw8Eu-oVuY,2856
157
+ holmes/plugins/toolsets/prometheus/prometheus.py,sha256=LdhsG4nw17yCSweZkLWkrNvoYvSR1oiotvaLMRKbXFM,31719
158
+ holmes/plugins/toolsets/prometheus/prometheus_instructions.jinja2,sha256=7IR5cIIhLKkFFVjuJh6Lg6HkuNuyTt9WYKMAo_nZMqs,2842
157
159
  holmes/plugins/toolsets/rabbitmq/api.py,sha256=-BtqF7hQWtl_OamnQ521vYHhR8E2n2wcPNYxfI9r4kQ,14307
158
160
  holmes/plugins/toolsets/rabbitmq/rabbitmq_instructions.jinja2,sha256=qetmtJUMkx9LIihr2fSJ2EV9h2J-b-ZdUAvMtopXZYY,3105
159
161
  holmes/plugins/toolsets/rabbitmq/toolset_rabbitmq.py,sha256=EsF3t294zVsgAAu8Ujw_S_JR275qKjh86styBJBvFSs,8827
@@ -161,20 +163,21 @@ holmes/plugins/toolsets/robusta/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm
161
163
  holmes/plugins/toolsets/robusta/robusta.py,sha256=WAww6CaNxk9YhW7YeUD3NU_uTxpYqb62fvs2NbYopEY,8738
162
164
  holmes/plugins/toolsets/robusta/robusta_instructions.jinja2,sha256=E3UxlbyoNx96Fsk6d1laBTrnca1nLreWGMWnGPD2KbI,2060
163
165
  holmes/plugins/toolsets/runbook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
164
- holmes/plugins/toolsets/runbook/runbook_fetcher.py,sha256=3tj0uWEJg0at1Rdx9kZLuAngvIpYVc-QyE7ziKeYke4,2538
165
- holmes/plugins/toolsets/service_discovery.py,sha256=4PQbyQcKJzCnxcZecFPV-Ei0jDbtLUdXzqmN8vbvnMg,3252
166
+ holmes/plugins/toolsets/runbook/runbook_fetcher.py,sha256=fowxsqIbyJM_-O4zgpTgDl_3sAwPgVn1QNdjo1c09OU,6669
167
+ holmes/plugins/toolsets/service_discovery.py,sha256=QVrCCVcTE7APqyr0C44MGmJyCW9Ft-Ac-Wr4XfFBfjA,3268
166
168
  holmes/plugins/toolsets/servicenow/install.md,sha256=UeL069Qd2e4wC3kmc54wk62AoSpyeizKWV6NB1jUYVM,1217
167
169
  holmes/plugins/toolsets/servicenow/instructions.jinja2,sha256=koA2vJ1tOkGi2T5aGjmk9oTZPrt7WdoMSuVyxfO5-k4,491
168
170
  holmes/plugins/toolsets/servicenow/servicenow.py,sha256=qn2LGg2iBnFLsjvjbDP_181Ssb4-m9bl7nsYDPOABNc,7562
169
- holmes/plugins/toolsets/slab.yaml,sha256=7esaLXSAlfHdxq0Paz9sfNOjoYXudaZuuq9hVcXdNsE,777
171
+ holmes/plugins/toolsets/slab.yaml,sha256=lZcN3OLQYUZMBqYBQZvzmD8yojaIAo4455ES8AvTotk,694
170
172
  holmes/plugins/toolsets/utils.py,sha256=7rRmSJa9ZCdnakTz3CgAKRdtYEDjRJczXA3cMgj_n0Q,4246
171
173
  holmes/plugins/utils.py,sha256=Wn_UxZMB4V2_UiJDNy0pifGnIGS_zUwRhUlmttCywnY,372
172
174
  holmes/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
173
175
  holmes/utils/cache.py,sha256=aPc7zTdpBQ3JQR7ET4wvIwzXhx2PpPKiBBSTgbVNXlY,2219
174
176
  holmes/utils/cert_utils.py,sha256=5YAUOY3LjFqqFpYHnHLvSc70LCxEWf0spw1vZwLLvOw,1193
175
- holmes/utils/console/consts.py,sha256=klHl0_iXcw_mqtv-YUWBzx3oxi0maaHok_Eq_7ZZdb8,257
177
+ holmes/utils/colors.py,sha256=G-1EcwwOjLmilL74M4AfOGxvlGSMaDfGT518A9Iek2k,221
178
+ holmes/utils/console/consts.py,sha256=SXcXHWjMH63nh5ErDKR6K7wrCUoxxlZ0KKM1Ipoy6J4,387
176
179
  holmes/utils/console/logging.py,sha256=jnNWqHIJRb6mCOXN24YSi1w_oMxUcOkkXsZb42daFU0,3072
177
- holmes/utils/console/result.py,sha256=-n9QtaJtgagIYXu9XYF6foQ6poiCUcYZbK0CWbK9cJw,1334
180
+ holmes/utils/console/result.py,sha256=lCnn1YX6J36d1GTVYX0jkp8QrJKVosq8t7z7G1j6hhA,1386
178
181
  holmes/utils/default_toolset_installation_guide.jinja2,sha256=HEf7tX75HE3H4-YeLbJfa0WbiLEsI71usKrXHCO_sHo,992
179
182
  holmes/utils/definitions.py,sha256=WKVDFh1wfuo0UCV_1jXFjgP0gjGM3-U-UdxdVxmXaKM,287
180
183
  holmes/utils/env.py,sha256=7hLrfn6DGLJu2105CurM8UoJzDXLEXdiJwhgj79fYtI,1761
@@ -182,13 +185,14 @@ holmes/utils/file_utils.py,sha256=uN5JCH6QQqY8dXwFtQ7AuzlfOCUqOuAzP3TQZSau9MU,16
182
185
  holmes/utils/global_instructions.py,sha256=43M_ubhlgBH6YmPUHfkQkxcAR4WkfdINQ0WPrWGime0,578
183
186
  holmes/utils/holmes_status.py,sha256=7qUJU3TwMpQXS4Wri5dL2quUsZMkX0sR0OS9m0LHOms,737
184
187
  holmes/utils/holmes_sync_toolsets.py,sha256=HNUMstaPP2NS5bnEHJMPFjKbAgvsevuuTdDiSUZ7Pkk,3225
188
+ holmes/utils/keygen_utils.py,sha256=qZ0aIAqItsoX1egAJ2TFiHjaARLYAIid94-VgMq_bB0,135
185
189
  holmes/utils/markdown_utils.py,sha256=_yDc_IRB5zkj9THUlZ6nzir44VfirTjPccC_DrFrBkc,1507
186
190
  holmes/utils/pydantic_utils.py,sha256=g0e0jLTa8Je8JKrhEP4N5sMxj0_hhPOqFZr0Vpd67sg,1649
187
191
  holmes/utils/robusta.py,sha256=4FZKv5DhDnvINuMlbyFRWCYdR4p7Pj4tyYIUkq1vHUU,363
188
192
  holmes/utils/tags.py,sha256=SU4EZMBtLlIb7OlHsSpguFaypczRzOcuHYxDSanV3sQ,3364
189
- holmes/version.py,sha256=g_ytiKxYSKlQqYwYDMYBjDWprAc9ZyS2sLrfPb3XDkg,5217
190
- holmesgpt-0.12.3a1.dist-info/LICENSE.txt,sha256=RdZMj8VXRQdVslr6PMYMbAEu5pOjOdjDqt3yAmWb9Ds,1072
191
- holmesgpt-0.12.3a1.dist-info/METADATA,sha256=3sJKaJYQ8z4W8y6uTgyLbfrdO4oNSLp2LOrjjtm4Po0,21703
192
- holmesgpt-0.12.3a1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
193
- holmesgpt-0.12.3a1.dist-info/entry_points.txt,sha256=JdzEyZhpaYr7Boo4uy4UZgzY1VsAEbzMgGmHZtx9KFY,42
194
- holmesgpt-0.12.3a1.dist-info/RECORD,,
193
+ holmes/version.py,sha256=uDRPOvVaHreROj_9HPe81RVpTzHcG8ojpGTsnJIlQOM,5220
194
+ holmesgpt-0.12.4.dist-info/LICENSE.txt,sha256=RdZMj8VXRQdVslr6PMYMbAEu5pOjOdjDqt3yAmWb9Ds,1072
195
+ holmesgpt-0.12.4.dist-info/METADATA,sha256=ySUidP1-yzYNRXitU2EcXMJJG0Y1yP7AB1uYofbUWqM,16107
196
+ holmesgpt-0.12.4.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
197
+ holmesgpt-0.12.4.dist-info/entry_points.txt,sha256=JdzEyZhpaYr7Boo4uy4UZgzY1VsAEbzMgGmHZtx9KFY,42
198
+ holmesgpt-0.12.4.dist-info/RECORD,,