holmesgpt 0.16.2a0__py3-none-any.whl → 0.18.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.
- holmes/__init__.py +3 -5
- holmes/clients/robusta_client.py +4 -3
- holmes/common/env_vars.py +18 -2
- holmes/common/openshift.py +1 -1
- holmes/config.py +11 -6
- holmes/core/conversations.py +30 -13
- holmes/core/investigation.py +21 -25
- holmes/core/investigation_structured_output.py +3 -3
- holmes/core/issue.py +1 -1
- holmes/core/llm.py +50 -31
- holmes/core/models.py +19 -17
- holmes/core/openai_formatting.py +1 -1
- holmes/core/prompt.py +47 -2
- holmes/core/runbooks.py +1 -0
- holmes/core/safeguards.py +4 -2
- holmes/core/supabase_dal.py +4 -2
- holmes/core/tool_calling_llm.py +102 -141
- holmes/core/tools.py +19 -28
- holmes/core/tools_utils/token_counting.py +9 -2
- holmes/core/tools_utils/tool_context_window_limiter.py +13 -30
- holmes/core/tools_utils/tool_executor.py +0 -18
- holmes/core/tools_utils/toolset_utils.py +1 -0
- holmes/core/toolset_manager.py +37 -2
- holmes/core/tracing.py +13 -2
- holmes/core/transformers/__init__.py +1 -1
- holmes/core/transformers/base.py +1 -0
- holmes/core/transformers/llm_summarize.py +3 -2
- holmes/core/transformers/registry.py +2 -1
- holmes/core/transformers/transformer.py +1 -0
- holmes/core/truncation/compaction.py +37 -2
- holmes/core/truncation/input_context_window_limiter.py +3 -2
- holmes/interactive.py +52 -8
- holmes/main.py +17 -37
- holmes/plugins/interfaces.py +2 -1
- holmes/plugins/prompts/__init__.py +2 -1
- holmes/plugins/prompts/_fetch_logs.jinja2 +5 -5
- holmes/plugins/prompts/_runbook_instructions.jinja2 +2 -1
- holmes/plugins/prompts/base_user_prompt.jinja2 +7 -0
- holmes/plugins/prompts/conversation_history_compaction.jinja2 +2 -1
- holmes/plugins/prompts/generic_ask.jinja2 +0 -2
- holmes/plugins/prompts/generic_ask_conversation.jinja2 +0 -2
- holmes/plugins/prompts/generic_ask_for_issue_conversation.jinja2 +0 -2
- holmes/plugins/prompts/generic_investigation.jinja2 +0 -2
- holmes/plugins/prompts/investigation_procedure.jinja2 +2 -1
- holmes/plugins/prompts/kubernetes_workload_ask.jinja2 +0 -2
- holmes/plugins/prompts/kubernetes_workload_chat.jinja2 +0 -2
- holmes/plugins/runbooks/__init__.py +32 -3
- holmes/plugins/sources/github/__init__.py +4 -2
- holmes/plugins/sources/prometheus/models.py +1 -0
- holmes/plugins/toolsets/__init__.py +30 -26
- holmes/plugins/toolsets/atlas_mongodb/mongodb_atlas.py +13 -12
- holmes/plugins/toolsets/azure_sql/apis/alert_monitoring_api.py +3 -2
- holmes/plugins/toolsets/azure_sql/apis/azure_sql_api.py +2 -1
- holmes/plugins/toolsets/azure_sql/apis/connection_failure_api.py +3 -2
- holmes/plugins/toolsets/azure_sql/apis/connection_monitoring_api.py +3 -1
- holmes/plugins/toolsets/azure_sql/apis/storage_analysis_api.py +3 -1
- holmes/plugins/toolsets/azure_sql/azure_sql_toolset.py +12 -12
- holmes/plugins/toolsets/azure_sql/tools/analyze_connection_failures.py +7 -7
- holmes/plugins/toolsets/azure_sql/tools/analyze_database_connections.py +7 -7
- holmes/plugins/toolsets/azure_sql/tools/analyze_database_health_status.py +3 -5
- holmes/plugins/toolsets/azure_sql/tools/analyze_database_performance.py +3 -3
- holmes/plugins/toolsets/azure_sql/tools/analyze_database_storage.py +7 -7
- holmes/plugins/toolsets/azure_sql/tools/get_active_alerts.py +6 -8
- holmes/plugins/toolsets/azure_sql/tools/get_slow_queries.py +3 -3
- holmes/plugins/toolsets/azure_sql/tools/get_top_cpu_queries.py +3 -3
- holmes/plugins/toolsets/azure_sql/tools/get_top_data_io_queries.py +3 -3
- holmes/plugins/toolsets/azure_sql/tools/get_top_log_io_queries.py +3 -3
- holmes/plugins/toolsets/azure_sql/utils.py +0 -32
- holmes/plugins/toolsets/bash/argocd/__init__.py +3 -3
- holmes/plugins/toolsets/bash/aws/__init__.py +4 -4
- holmes/plugins/toolsets/bash/azure/__init__.py +4 -4
- holmes/plugins/toolsets/bash/bash_toolset.py +2 -3
- holmes/plugins/toolsets/bash/common/bash.py +19 -9
- holmes/plugins/toolsets/bash/common/bash_command.py +1 -1
- holmes/plugins/toolsets/bash/common/stringify.py +1 -1
- holmes/plugins/toolsets/bash/kubectl/__init__.py +2 -1
- holmes/plugins/toolsets/bash/kubectl/constants.py +0 -1
- holmes/plugins/toolsets/bash/kubectl/kubectl_get.py +3 -4
- holmes/plugins/toolsets/bash/parse_command.py +12 -13
- holmes/plugins/toolsets/connectivity_check.py +124 -0
- holmes/plugins/toolsets/coralogix/api.py +132 -119
- holmes/plugins/toolsets/coralogix/coralogix.jinja2 +14 -0
- holmes/plugins/toolsets/coralogix/toolset_coralogix.py +219 -0
- holmes/plugins/toolsets/coralogix/utils.py +15 -79
- holmes/plugins/toolsets/datadog/datadog_api.py +36 -3
- holmes/plugins/toolsets/datadog/datadog_logs_instructions.jinja2 +34 -1
- holmes/plugins/toolsets/datadog/datadog_metrics_instructions.jinja2 +3 -3
- holmes/plugins/toolsets/datadog/datadog_models.py +59 -0
- holmes/plugins/toolsets/datadog/datadog_url_utils.py +213 -0
- holmes/plugins/toolsets/datadog/instructions_datadog_traces.jinja2 +165 -28
- holmes/plugins/toolsets/datadog/toolset_datadog_general.py +71 -28
- holmes/plugins/toolsets/datadog/toolset_datadog_logs.py +224 -375
- holmes/plugins/toolsets/datadog/toolset_datadog_metrics.py +67 -36
- holmes/plugins/toolsets/datadog/toolset_datadog_traces.py +360 -343
- holmes/plugins/toolsets/elasticsearch/__init__.py +6 -0
- holmes/plugins/toolsets/elasticsearch/elasticsearch.py +834 -0
- holmes/plugins/toolsets/git.py +7 -8
- holmes/plugins/toolsets/grafana/base_grafana_toolset.py +16 -4
- holmes/plugins/toolsets/grafana/common.py +2 -30
- holmes/plugins/toolsets/grafana/grafana_tempo_api.py +2 -1
- holmes/plugins/toolsets/grafana/loki/instructions.jinja2 +18 -2
- holmes/plugins/toolsets/grafana/loki/toolset_grafana_loki.py +92 -18
- holmes/plugins/toolsets/grafana/loki_api.py +4 -0
- holmes/plugins/toolsets/grafana/toolset_grafana.py +109 -25
- holmes/plugins/toolsets/grafana/toolset_grafana_dashboard.jinja2 +22 -0
- holmes/plugins/toolsets/grafana/toolset_grafana_tempo.py +201 -33
- holmes/plugins/toolsets/grafana/trace_parser.py +3 -2
- holmes/plugins/toolsets/internet/internet.py +10 -10
- holmes/plugins/toolsets/internet/notion.py +5 -6
- holmes/plugins/toolsets/investigator/core_investigation.py +3 -3
- holmes/plugins/toolsets/investigator/model.py +3 -1
- holmes/plugins/toolsets/json_filter_mixin.py +134 -0
- holmes/plugins/toolsets/kafka.py +12 -7
- holmes/plugins/toolsets/kubernetes.yaml +260 -30
- holmes/plugins/toolsets/kubernetes_logs.py +3 -3
- holmes/plugins/toolsets/logging_utils/logging_api.py +16 -6
- holmes/plugins/toolsets/mcp/toolset_mcp.py +88 -60
- holmes/plugins/toolsets/newrelic/new_relic_api.py +41 -1
- holmes/plugins/toolsets/newrelic/newrelic.jinja2 +24 -0
- holmes/plugins/toolsets/newrelic/newrelic.py +212 -55
- holmes/plugins/toolsets/prometheus/prometheus.py +358 -102
- holmes/plugins/toolsets/prometheus/prometheus_instructions.jinja2 +11 -3
- holmes/plugins/toolsets/rabbitmq/api.py +23 -4
- holmes/plugins/toolsets/rabbitmq/toolset_rabbitmq.py +5 -5
- holmes/plugins/toolsets/robusta/robusta.py +5 -5
- holmes/plugins/toolsets/runbook/runbook_fetcher.py +25 -6
- holmes/plugins/toolsets/servicenow_tables/servicenow_tables.py +1 -1
- holmes/plugins/toolsets/utils.py +1 -1
- holmes/utils/config_utils.py +1 -1
- holmes/utils/connection_utils.py +31 -0
- holmes/utils/console/result.py +10 -0
- holmes/utils/file_utils.py +2 -1
- holmes/utils/global_instructions.py +10 -26
- holmes/utils/holmes_status.py +4 -3
- holmes/utils/log.py +15 -0
- holmes/utils/markdown_utils.py +2 -3
- holmes/utils/memory_limit.py +58 -0
- holmes/utils/sentry_helper.py +23 -0
- holmes/utils/stream.py +12 -5
- holmes/utils/tags.py +4 -3
- holmes/version.py +3 -1
- {holmesgpt-0.16.2a0.dist-info → holmesgpt-0.18.4.dist-info}/METADATA +12 -10
- holmesgpt-0.18.4.dist-info/RECORD +258 -0
- holmes/plugins/toolsets/aws.yaml +0 -80
- holmes/plugins/toolsets/coralogix/toolset_coralogix_logs.py +0 -114
- holmes/plugins/toolsets/datadog/datadog_traces_formatter.py +0 -310
- holmes/plugins/toolsets/datadog/toolset_datadog_rds.py +0 -736
- holmes/plugins/toolsets/grafana/grafana_api.py +0 -64
- holmes/plugins/toolsets/opensearch/__init__.py +0 -0
- holmes/plugins/toolsets/opensearch/opensearch.py +0 -250
- holmes/plugins/toolsets/opensearch/opensearch_logs.py +0 -161
- holmes/plugins/toolsets/opensearch/opensearch_traces.py +0 -215
- holmes/plugins/toolsets/opensearch/opensearch_traces_instructions.jinja2 +0 -12
- holmes/plugins/toolsets/opensearch/opensearch_utils.py +0 -166
- holmes/utils/keygen_utils.py +0 -6
- holmesgpt-0.16.2a0.dist-info/RECORD +0 -258
- holmes/plugins/toolsets/{opensearch → elasticsearch}/opensearch_ppl_query_docs.jinja2 +0 -0
- holmes/plugins/toolsets/{opensearch → elasticsearch}/opensearch_query_assist.py +2 -2
- /holmes/plugins/toolsets/{opensearch → elasticsearch}/opensearch_query_assist_instructions.jinja2 +0 -0
- {holmesgpt-0.16.2a0.dist-info → holmesgpt-0.18.4.dist-info}/LICENSE +0 -0
- {holmesgpt-0.16.2a0.dist-info → holmesgpt-0.18.4.dist-info}/WHEEL +0 -0
- {holmesgpt-0.16.2a0.dist-info → holmesgpt-0.18.4.dist-info}/entry_points.txt +0 -0
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Traces and Spans
|
|
2
|
-
* All applications are instrumented and has spans and traces.
|
|
3
|
-
* ALWAYS, first, use get_traces_fields to understand the documents fields, then ALWAYS, search for trace documents based on the fields recieved in the previous call. You MUST filter by the fields names that appears here
|
|
4
|
-
* When investigating network errors, latency, or performance issues, ALWAYS check traces and spans
|
|
5
|
-
* The search query should always contain the root 'query' element in the search expression
|
|
6
|
-
* Search traces using the `fetch_opensearch_logs` tool
|
|
7
|
-
* try to search traces based on what you're looking for, and the trace fields available
|
|
8
|
-
* Always build the query with '.keyword' when doing exact match
|
|
9
|
-
* if time range is not specified, get logs for the last hour
|
|
10
|
-
* When investigating numeric errors, these are error codes
|
|
11
|
-
* Always search for traces BEFORE checking logs. If the logs contain information that can lead to another trace search, do another trace search
|
|
12
|
-
* ALWAYS check for traces to learn about the traffic, latency and errors
|
|
@@ -1,166 +0,0 @@
|
|
|
1
|
-
import json
|
|
2
|
-
import logging
|
|
3
|
-
from typing import Optional, Any, cast
|
|
4
|
-
from urllib.parse import urljoin
|
|
5
|
-
|
|
6
|
-
from pydantic import BaseModel
|
|
7
|
-
import requests # type: ignore
|
|
8
|
-
|
|
9
|
-
from holmes.core.tools import Toolset
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
class OpenSearchLoggingLabelsConfig(BaseModel):
|
|
13
|
-
pod: str = "kubernetes.pod_name"
|
|
14
|
-
namespace: str = "kubernetes.namespace_name"
|
|
15
|
-
timestamp: str = "@timestamp"
|
|
16
|
-
message: str = "message"
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
class BaseOpenSearchConfig(BaseModel):
|
|
20
|
-
opensearch_url: str
|
|
21
|
-
index_pattern: str
|
|
22
|
-
opensearch_auth_header: Optional[str] = None
|
|
23
|
-
# Setting to None will disable the cache
|
|
24
|
-
fields_ttl_seconds: Optional[int] = 14400 # 4 hours
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
class OpenSearchLoggingConfig(BaseOpenSearchConfig):
|
|
28
|
-
labels: OpenSearchLoggingLabelsConfig = OpenSearchLoggingLabelsConfig()
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
def add_auth_header(auth_header: Optional[str]) -> dict[str, Any]:
|
|
32
|
-
results = {}
|
|
33
|
-
if auth_header:
|
|
34
|
-
results["Authorization"] = auth_header
|
|
35
|
-
return results
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
def get_search_url(config: BaseOpenSearchConfig) -> str:
|
|
39
|
-
return urljoin(config.opensearch_url, f"/{config.index_pattern}/_search")
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
def opensearch_health_check(config: BaseOpenSearchConfig) -> tuple[bool, str]:
|
|
43
|
-
url = get_search_url(config)
|
|
44
|
-
try:
|
|
45
|
-
headers = {"Content-Type": "application/json"}
|
|
46
|
-
headers.update(add_auth_header(config.opensearch_auth_header))
|
|
47
|
-
health_response = requests.get(
|
|
48
|
-
url=url,
|
|
49
|
-
verify=True,
|
|
50
|
-
data=json.dumps({"size": 1}),
|
|
51
|
-
headers=headers,
|
|
52
|
-
)
|
|
53
|
-
health_response.raise_for_status()
|
|
54
|
-
return True, ""
|
|
55
|
-
except Exception as e:
|
|
56
|
-
logging.info("Failed to initialize opensearch toolset", exc_info=True)
|
|
57
|
-
return False, f"Failed to initialize opensearch toolset. url={url}. {str(e)}"
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
def format_log_to_json(log_line: Any) -> str:
|
|
61
|
-
try:
|
|
62
|
-
return json.dumps(log_line)
|
|
63
|
-
except Exception:
|
|
64
|
-
# Handle potential serialization errors (e.g., non-serializable objects)
|
|
65
|
-
return str(log_line)
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
def format_logs(
|
|
69
|
-
logs: list[dict[str, Any]],
|
|
70
|
-
config: OpenSearchLoggingConfig,
|
|
71
|
-
) -> str:
|
|
72
|
-
if not logs or not isinstance(logs, list):
|
|
73
|
-
return ""
|
|
74
|
-
|
|
75
|
-
# Get field names from config or use defaults
|
|
76
|
-
message_field = config.labels.message
|
|
77
|
-
|
|
78
|
-
formatted_lines = []
|
|
79
|
-
|
|
80
|
-
for hit in logs:
|
|
81
|
-
# Ensure hit is a dictionary and has _source
|
|
82
|
-
if not isinstance(hit, dict):
|
|
83
|
-
formatted_lines.append(format_log_to_json(hit))
|
|
84
|
-
continue
|
|
85
|
-
source = hit.get("_source")
|
|
86
|
-
if not isinstance(source, dict):
|
|
87
|
-
formatted_lines.append(format_log_to_json(hit))
|
|
88
|
-
continue
|
|
89
|
-
|
|
90
|
-
message = source.get(message_field, None)
|
|
91
|
-
|
|
92
|
-
if message and not isinstance(message, str):
|
|
93
|
-
message = str(message) # Convert non-strings
|
|
94
|
-
|
|
95
|
-
if message:
|
|
96
|
-
formatted_lines.append(message)
|
|
97
|
-
else:
|
|
98
|
-
# fallback displaying the logs line as-is
|
|
99
|
-
formatted_lines.append(format_log_to_json(hit))
|
|
100
|
-
|
|
101
|
-
return "\n".join(formatted_lines)
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
def build_query(
|
|
105
|
-
config: OpenSearchLoggingConfig,
|
|
106
|
-
namespace: str,
|
|
107
|
-
pod_name: str,
|
|
108
|
-
start_time: Optional[str] = None,
|
|
109
|
-
end_time: Optional[str] = None,
|
|
110
|
-
match: Optional[str] = None,
|
|
111
|
-
limit: Optional[int] = None,
|
|
112
|
-
) -> dict[str, Any]:
|
|
113
|
-
size = limit if limit else 5000
|
|
114
|
-
|
|
115
|
-
pod_field = config.labels.pod
|
|
116
|
-
namespace_field = config.labels.namespace
|
|
117
|
-
timestamp_field = config.labels.timestamp
|
|
118
|
-
message_field = config.labels.message
|
|
119
|
-
|
|
120
|
-
must_constraints: list[dict] = [
|
|
121
|
-
{"term": {f"{pod_field}.keyword": pod_name}},
|
|
122
|
-
{"term": {f"{namespace_field}.keyword": namespace}},
|
|
123
|
-
]
|
|
124
|
-
|
|
125
|
-
query = {
|
|
126
|
-
"size": size,
|
|
127
|
-
"sort": [{timestamp_field: {"order": "asc"}}],
|
|
128
|
-
"query": {"bool": {"must": must_constraints}},
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
# Add timestamp range if provided
|
|
132
|
-
if start_time or end_time:
|
|
133
|
-
range_query: dict = {"range": {timestamp_field: {}}}
|
|
134
|
-
if start_time:
|
|
135
|
-
range_query["range"][timestamp_field]["gte"] = start_time
|
|
136
|
-
if end_time:
|
|
137
|
-
range_query["range"][timestamp_field]["lte"] = end_time
|
|
138
|
-
|
|
139
|
-
must_constraints.append(range_query)
|
|
140
|
-
|
|
141
|
-
# Add message filter if provided
|
|
142
|
-
if match:
|
|
143
|
-
must_constraints.append({"match_phrase": {message_field: match}})
|
|
144
|
-
|
|
145
|
-
return query
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
class BaseOpenSearchToolset(Toolset):
|
|
149
|
-
def get_example_config(self) -> dict[str, Any]:
|
|
150
|
-
example_config = BaseOpenSearchConfig(
|
|
151
|
-
opensearch_url="YOUR OPENSEARCH URL",
|
|
152
|
-
index_pattern="YOUR OPENSEARCH INDEX NAME",
|
|
153
|
-
opensearch_auth_header="YOUR OPENSEARCH AUTH HEADER (Optional)",
|
|
154
|
-
)
|
|
155
|
-
return example_config.model_dump()
|
|
156
|
-
|
|
157
|
-
def prerequisites_callable(self, config: dict[str, Any]) -> tuple[bool, str]:
|
|
158
|
-
if not config:
|
|
159
|
-
return False, "Missing opensearch traces URL. Check your config"
|
|
160
|
-
else:
|
|
161
|
-
self.config = BaseOpenSearchConfig(**config)
|
|
162
|
-
return opensearch_health_check(self.config)
|
|
163
|
-
|
|
164
|
-
@property
|
|
165
|
-
def opensearch_config(self) -> BaseOpenSearchConfig:
|
|
166
|
-
return cast(BaseOpenSearchConfig, self.config)
|
holmes/utils/keygen_utils.py
DELETED
|
@@ -1,258 +0,0 @@
|
|
|
1
|
-
holmes/.git_archival.json,sha256=PbwdO7rNhEJ4ALiO12DPPb81xNAIsVxCA0m8OrVoqsk,182
|
|
2
|
-
holmes/__init__.py,sha256=jlhEEIdfV2NHyLi5Y7FMLyklw6BDh9YsvOTtIKgYQBQ,263
|
|
3
|
-
holmes/clients/robusta_client.py,sha256=YZA70OXGO0WZGTqtBhKiOtP7bhsrSW_f2Ea3Qcg9aMY,1530
|
|
4
|
-
holmes/common/env_vars.py,sha256=15oIGn-__lpJMY_rNc8c-fIUwq7p5wQvTs5Auq4l6vI,4403
|
|
5
|
-
holmes/common/openshift.py,sha256=akbQ0GpnmuzXOqTcotpTDQSDKIROypS9mgPOprUgkCw,407
|
|
6
|
-
holmes/config.py,sha256=Q6RUaHawkrGohPOZIGmy4SnqFYgP993mXZU3qbKn5II,23328
|
|
7
|
-
holmes/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
holmes/core/config.py,sha256=9QGIXeYff9FPWa91as2OkRO2SupHzfNQZWzfNC4Vl-8,113
|
|
9
|
-
holmes/core/conversations.py,sha256=cmaSnKIfvzyZq62O9QWasX6PrxSU5mSPpuCJnD1cyms,23015
|
|
10
|
-
holmes/core/feedback.py,sha256=Gu69ghRYGSCPDgFA77xOB5RPbVdQX-9Qpv4yVVegL4g,6793
|
|
11
|
-
holmes/core/investigation.py,sha256=UxqnJ3XoqyayH5yBD6ITJ7qXByx31CwVeBRKoM_s47M,5784
|
|
12
|
-
holmes/core/investigation_structured_output.py,sha256=sNxyqmsElQ-B22OlzTOrJtfrlipjyidcTU07idOBO7w,10570
|
|
13
|
-
holmes/core/issue.py,sha256=dbctGv8KHAXC1SeOMkEP-BudJ50u7kA8jLN5FN_d808,2426
|
|
14
|
-
holmes/core/llm.py,sha256=3qFMjMflFba1NDk64oaU2lPi7Yr8oktYPdNKxzEQ8cM,28423
|
|
15
|
-
holmes/core/models.py,sha256=xFHFutZWoIaQWSeuq1PiYPw9SGkDrQsQ9qYXuk60EEU,9096
|
|
16
|
-
holmes/core/openai_formatting.py,sha256=31MwVvu0v0JiXot4Y0AwDJlFYe9vx8IB6mZiyC1y_lo,4684
|
|
17
|
-
holmes/core/prompt.py,sha256=-cGxS8mxe-wRCvF0EC_thfuujmrr5J9s8DDRn9HB95Q,3046
|
|
18
|
-
holmes/core/resource_instruction.py,sha256=rduue_t8iQi1jbWc3-k3jX867W1Fvc6Tah5uOJk35Mc,483
|
|
19
|
-
holmes/core/runbooks.py,sha256=Oj5ICmiGgaq57t4erPzQDvHQ0rMGj1nhiiYhl8peH3Q,939
|
|
20
|
-
holmes/core/safeguards.py,sha256=XrKgmMoJxSROfoSOW6t6QEG2MFppzC20Nyn1HA5G4Go,4935
|
|
21
|
-
holmes/core/supabase_dal.py,sha256=uHTkWg5NxrYHQP1a2VbcY6tbR_KhkpC_FheBKL_mIOw,28540
|
|
22
|
-
holmes/core/todo_tasks_formatter.py,sha256=USyJZcoX6zoxID1UV-abAKdaWFYLO6QJd-UKryJAurI,1487
|
|
23
|
-
holmes/core/tool_calling_llm.py,sha256=Q0vS3fPk3mHf3BJz6jVR7tEP0xhjzqspVAzAC4tB7DA,45338
|
|
24
|
-
holmes/core/tools.py,sha256=FYUm4wh3oFesabX2jaHvOGG8420bo61T26SUwH35Tjg,33288
|
|
25
|
-
holmes/core/tools_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
-
holmes/core/tools_utils/token_counting.py,sha256=7ZXbPqEIb8ClVvG_t9z2wlujDtX7m_pTVi242-2ZmQE,427
|
|
27
|
-
holmes/core/tools_utils/tool_context_window_limiter.py,sha256=tGDVb0LhpACWTrM1tmOEFfTqEhdbdAx7pJ-Eoedr7y8,2432
|
|
28
|
-
holmes/core/tools_utils/tool_executor.py,sha256=pUkddbm_kgYdfhR1w5IbnSmwG56kvA4VadzBV8OqG8g,2632
|
|
29
|
-
holmes/core/tools_utils/toolset_utils.py,sha256=SvWzen8Fg_TB_6Idw1hK0nCPrJL40ueWVMfsv8Kh2RY,2363
|
|
30
|
-
holmes/core/toolset_manager.py,sha256=UqAUfjY09SAGirOHzyQwpOu2wxQUzU0F1STw8w-1abw,25878
|
|
31
|
-
holmes/core/tracing.py,sha256=o1vTLCbnFvBOVnQKqRaj4HDNYGYAd4ub2IgkV1E3qY4,9130
|
|
32
|
-
holmes/core/transformers/__init__.py,sha256=kCwmx-IQ6BpGpMpnm563ecl5Ik1nx4lhKb2y3KAKF7I,600
|
|
33
|
-
holmes/core/transformers/base.py,sha256=FHUocHIS_oUBLWMiibdAuKY0Lpz5xY2ICji6DbmP2Do,1500
|
|
34
|
-
holmes/core/transformers/llm_summarize.py,sha256=ZEJn3DElzMZLCCHNIzlCozllM2CmQ-JyXiqaGO7dAw4,6407
|
|
35
|
-
holmes/core/transformers/registry.py,sha256=x8kKRXJvc_tJO2RvNGyoVXt6rFgG4S_ZcTG8p_OXYH0,3771
|
|
36
|
-
holmes/core/transformers/transformer.py,sha256=rfT84Oq6qJyryevZGFKEbo1VSxinK4FBWUw_HpJ72xE,1028
|
|
37
|
-
holmes/core/truncation/compaction.py,sha256=tIm8hM6bLA_NKG0--LAewmdNjUnw9NTOJlcLgfntYLI,2118
|
|
38
|
-
holmes/core/truncation/dal_truncation_utils.py,sha256=I69I7Jac1kTtpxDRMe8O3IPN8Au0bZJqI8gXwW-GMaI,776
|
|
39
|
-
holmes/core/truncation/input_context_window_limiter.py,sha256=spTOqBGKu1yputPxMt5xv46bemkMmvOWGW9bnIQB-NQ,8897
|
|
40
|
-
holmes/interactive.py,sha256=xijvR6lRlgcQ0n5_aT81qEYOEOgfAe_7SkqkVdZKvUU,47510
|
|
41
|
-
holmes/main.py,sha256=GNY-mwX3Tk_4-uf2bkrTiEhQm4rFdEc8Uw0r_GMe26I,34999
|
|
42
|
-
holmes/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
holmes/plugins/destinations/__init__.py,sha256=vMYwTfA5nQ05us5Rzbaoe0R5C8Navo6ENVZhojtACTk,98
|
|
44
|
-
holmes/plugins/destinations/slack/__init__.py,sha256=HVoDdTbdJJ1amXt12ZSMVcn3E04rcOrqk6BgNwvMbWY,56
|
|
45
|
-
holmes/plugins/destinations/slack/plugin.py,sha256=C9_y-GLLqw3e0pWS2Jfu_P3XoXIpKYBXACNKIEdNdH4,6013
|
|
46
|
-
holmes/plugins/interfaces.py,sha256=QpKx6BPOoDBS5p0En6-bU23fjNTC1bGR29xvJBQXhZ4,882
|
|
47
|
-
holmes/plugins/prompts/__init__.py,sha256=sOUHbHFQ6tYX7XWLi-Ak87cOQB1E889X5X8kWJGTvcU,1503
|
|
48
|
-
holmes/plugins/prompts/_ai_safety.jinja2,sha256=IoVdOXHnkGwLaiuUzMczEdoahyrKhkdYvyDmz9Oewxw,2262
|
|
49
|
-
holmes/plugins/prompts/_current_date_time.jinja2,sha256=KynAvkQFqf_SXjqVY77nB8z4RgN7gti4SBSq1H7moHs,354
|
|
50
|
-
holmes/plugins/prompts/_default_log_prompt.jinja2,sha256=Tqw8CD2ZMStXIfMdYaoZT_d-FvQ_PMg6-knqag-YEgc,1478
|
|
51
|
-
holmes/plugins/prompts/_fetch_logs.jinja2,sha256=6ogGb49jUT7rWGxwgeHVTGTqird3PJLwYkyi9__5jnU,5956
|
|
52
|
-
holmes/plugins/prompts/_general_instructions.jinja2,sha256=IvGkmKaIrG7wXJlVcNqtYrst1Z-vRZYRMENzf_nDoz4,5774
|
|
53
|
-
holmes/plugins/prompts/_global_instructions.jinja2,sha256=d_c-BtDhU_Rmx637TPAyzlIIim8ZAxy7JK3V4GV8IWI,1359
|
|
54
|
-
holmes/plugins/prompts/_permission_errors.jinja2,sha256=gIMQx-zaTnuEv7SkQVC_GvxsR5R85fLuDZnJIKWcm5A,480
|
|
55
|
-
holmes/plugins/prompts/_runbook_instructions.jinja2,sha256=PCosKWqjvE5UwolJvAA4n_fytFKJMCDk_QVskr5myxU,1507
|
|
56
|
-
holmes/plugins/prompts/_toolsets_instructions.jinja2,sha256=MaK5HRxhJyZ3I9zsmgdLO4lU95l24CwGp70ON5xHLMc,3024
|
|
57
|
-
holmes/plugins/prompts/conversation_history_compaction.jinja2,sha256=F-m7soEKD01uifWKWEczvraLBvjDAkPo3PrOJcaqyRw,4884
|
|
58
|
-
holmes/plugins/prompts/generic_ask.jinja2,sha256=kdf5uHK9s2DmUPIE77lM3TiCNAI4MIHkVoJotl7wjHw,1951
|
|
59
|
-
holmes/plugins/prompts/generic_ask_conversation.jinja2,sha256=aZ0AxXgbxnHsJj12R29eO9DzvBjJphBouL486p1F5yk,1611
|
|
60
|
-
holmes/plugins/prompts/generic_ask_for_issue_conversation.jinja2,sha256=lgTeeQVNgKmguA_HnvOV8OwrQUETpbPn_ZxFXIK7KIM,2075
|
|
61
|
-
holmes/plugins/prompts/generic_investigation.jinja2,sha256=u0PR1oU6w_c85oPVX9N5tjkc21_-uaQSGtVPW60iHrs,3419
|
|
62
|
-
holmes/plugins/prompts/generic_post_processing.jinja2,sha256=1YNBGKgpZkLNO6Xkbi4yqwWE2DZKACq4xl0ygywgY_w,596
|
|
63
|
-
holmes/plugins/prompts/generic_ticket.jinja2,sha256=FVWvPVnX0JSeBbKu1RuBUcQ7hcsqz661n_QC_kWUPV0,437
|
|
64
|
-
holmes/plugins/prompts/investigation_output_format.jinja2,sha256=C03_d4cQUhEvI5YBoVSkSZypM21wriGrocN4iP1_8co,1071
|
|
65
|
-
holmes/plugins/prompts/investigation_procedure.jinja2,sha256=oG_j1NfN-9ahhnHXoDbCHJ7iYu3gPh5hWfPV9KFBp94,12616
|
|
66
|
-
holmes/plugins/prompts/kubernetes_workload_ask.jinja2,sha256=6PgNe1CJRLCmxw5cK886rZf8FHJjnAw5wnuMmUajQUQ,5931
|
|
67
|
-
holmes/plugins/prompts/kubernetes_workload_chat.jinja2,sha256=2gWaVWaN8F1Qh7_K3eykaDaOvMlEarK7ItaeFunCWgM,1771
|
|
68
|
-
holmes/plugins/runbooks/CLAUDE.md,sha256=WYjf-ZvKmfrShmhTHplLscIpIB1j2TrrG6C_LR63XR0,5511
|
|
69
|
-
holmes/plugins/runbooks/README.md,sha256=dPrAO4bZGGW1C3FFaUm_adPMrb72DSSmbUkRSwqNK4U,2585
|
|
70
|
-
holmes/plugins/runbooks/__init__.py,sha256=V02gmHm7uc83kwuNF2ujZhgRr1JeV9F8qysZPMLRLx0,6608
|
|
71
|
-
holmes/plugins/runbooks/catalog.json,sha256=oB47G6kvzqunXPXg7MlQSb5LLmRsT8F6D9O9ELirLEg,516
|
|
72
|
-
holmes/plugins/runbooks/jira.yaml,sha256=o24IL7Cb-Mv5X-cAj8Ik4KmEmY7bf98zBkMP5r39ong,777
|
|
73
|
-
holmes/plugins/runbooks/kube-prometheus-stack.yaml,sha256=adzr0vxvQZHJ_HYzYl5NdmjrTpVByx9h-3abpaFUo-Y,743
|
|
74
|
-
holmes/plugins/runbooks/networking/dns_troubleshooting_instructions.md,sha256=WuyS49-guD5pjW-L16RZ-X3Kc60sF4JGIla9y2tPgBc,5480
|
|
75
|
-
holmes/plugins/runbooks/upgrade/upgrade_troubleshooting_instructions.md,sha256=XqfG1vIOPFYHy2f9K7HQsxLmPqsauL0g6wUwnA0cn2Y,6108
|
|
76
|
-
holmes/plugins/sources/github/__init__.py,sha256=4EibJreFerVUvBwq0uP8-oUXGv3drQxQI5KEoxTrBvE,3050
|
|
77
|
-
holmes/plugins/sources/jira/__init__.py,sha256=4G4NVOXKFGXnCgT2Jd9r9NQLQ5ToR3t7Z60AquOMhmg,4733
|
|
78
|
-
holmes/plugins/sources/opsgenie/__init__.py,sha256=83-OJ8S-olphO5s30PgIt9RFWLA9iAY7jAhz51_mMlk,4109
|
|
79
|
-
holmes/plugins/sources/pagerduty/__init__.py,sha256=LYoN1dkUg7NCx7g-gdSomTTJhHyBV2JdDPyBq0DNgas,5578
|
|
80
|
-
holmes/plugins/sources/prometheus/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
81
|
-
holmes/plugins/sources/prometheus/models.py,sha256=9TcDIRLWZQhwjYGfRZFP_2fGweCn4G5xvYrLoXiQZTc,2904
|
|
82
|
-
holmes/plugins/sources/prometheus/plugin.py,sha256=oBmuOwNM67suy6HmasUnyVOlBq9-mAxLZLlUzRHIggg,5941
|
|
83
|
-
holmes/plugins/toolsets/__init__.py,sha256=b2mM9CES9fw00tq30cwA0z5AdSt3Sa5QYVPKHRKWAAY,7785
|
|
84
|
-
holmes/plugins/toolsets/aks-node-health.yaml,sha256=37Dvk4D0ez1GQlt91MQkI0pZ5RLtUEFAOxDXDCVzb-g,5995
|
|
85
|
-
holmes/plugins/toolsets/aks.yaml,sha256=_XwrMSsghFnCqlbsZvVfwF3qgQFnxi47AC5Oavi2YC0,9532
|
|
86
|
-
holmes/plugins/toolsets/argocd.yaml,sha256=lbRIooJIkpumNdRgoDRHTjNb9PvFTfjQcT0iWU2x8mg,3932
|
|
87
|
-
holmes/plugins/toolsets/atlas_mongodb/instructions.jinja2,sha256=iyft4EwvYcImI_YrMte8_BTJZXGV6i0k84g3oKXR23k,988
|
|
88
|
-
holmes/plugins/toolsets/atlas_mongodb/mongodb_atlas.py,sha256=8AdGtsox8huiR5UhKnQRN0cz8uPwNr1AGrtsUzvg7bY,15647
|
|
89
|
-
holmes/plugins/toolsets/aws.yaml,sha256=AM5MizvfHeGFoCRr6kf3Wcd6y_EAhSDqtZajTFrLVfE,4475
|
|
90
|
-
holmes/plugins/toolsets/azure_sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
-
holmes/plugins/toolsets/azure_sql/apis/alert_monitoring_api.py,sha256=DSrKzzE6lofynViYr0SGaQrWjePpzbfdt3DcplbFGek,26397
|
|
92
|
-
holmes/plugins/toolsets/azure_sql/apis/azure_sql_api.py,sha256=2znPN2RcmyoErx3IXFy3CELJvmm799HoraYUC75c4R8,11498
|
|
93
|
-
holmes/plugins/toolsets/azure_sql/apis/connection_failure_api.py,sha256=TfWCwBxZMCvoRPcl9u7TWTtA3ng17I71D63tATcSA7U,19203
|
|
94
|
-
holmes/plugins/toolsets/azure_sql/apis/connection_monitoring_api.py,sha256=10k5KY1CCDi2-G8qh9xMig0aW50Gl6nw6nwBpzw_Sy4,10189
|
|
95
|
-
holmes/plugins/toolsets/azure_sql/apis/storage_analysis_api.py,sha256=sbz8b2IeGqwosA34ddbqnXbD_iPYKuAMyZrV0-__O9g,13835
|
|
96
|
-
holmes/plugins/toolsets/azure_sql/azure_base_toolset.py,sha256=8eQPsFBPTCf_GMpbjfzzN3u-rGUXiElTD06RWCe7uso,2163
|
|
97
|
-
holmes/plugins/toolsets/azure_sql/azure_sql_instructions.jinja2,sha256=GvuxActaoJXA__4k72en7I44jEv_ye0MevSmlHfnzxA,6557
|
|
98
|
-
holmes/plugins/toolsets/azure_sql/azure_sql_toolset.py,sha256=QqMiV7ZY-Dh3jgRyKeON5ha5H-wbvmAVHYA9GF-2UVI,8038
|
|
99
|
-
holmes/plugins/toolsets/azure_sql/install.md,sha256=eBhdG-OG9HhbrEGvI31aAHRPWwBQne6H95mvBROqZ_s,1585
|
|
100
|
-
holmes/plugins/toolsets/azure_sql/tools/__init__.py,sha256=lEYFZ5X0mHdqwmi6XXTlM1qA7sBYsuQwVCXmluo-L34,25
|
|
101
|
-
holmes/plugins/toolsets/azure_sql/tools/analyze_connection_failures.py,sha256=f_3TPbAjMDNAjqUr6BkoNzbMn4wvG_gQS-6HH3bC4AY,13385
|
|
102
|
-
holmes/plugins/toolsets/azure_sql/tools/analyze_database_connections.py,sha256=84STGBRVQbs_6wrufRsTk0m-aGGKt50O4vO6ShwhBTc,10481
|
|
103
|
-
holmes/plugins/toolsets/azure_sql/tools/analyze_database_health_status.py,sha256=1UIdpo4kouoIsIhhGcZ1z_nMrz8GTm9BdZwQQw-FTGI,8334
|
|
104
|
-
holmes/plugins/toolsets/azure_sql/tools/analyze_database_performance.py,sha256=2E-wloRjNr-PpiVGb-b7DWmqp1wbdz2hQzcsDGXi8QM,10705
|
|
105
|
-
holmes/plugins/toolsets/azure_sql/tools/analyze_database_storage.py,sha256=kGUwWFngJRjI5wlF2lonNZaJir6yZNAptmkwgHh65Tw,16022
|
|
106
|
-
holmes/plugins/toolsets/azure_sql/tools/get_active_alerts.py,sha256=ycmjlBzY0ZvnbWxTLxvYGGhoUb8EKDI4QFGpAHAxk6M,9427
|
|
107
|
-
holmes/plugins/toolsets/azure_sql/tools/get_slow_queries.py,sha256=-J4PKLtjTSfiOEAu28_2TeL233Qbe-1xwD9XBwzumu8,7300
|
|
108
|
-
holmes/plugins/toolsets/azure_sql/tools/get_top_cpu_queries.py,sha256=28x4xCrvyVj0o4Gr9QKo1qPJzUbkBdozcO_DJhiAFEo,7251
|
|
109
|
-
holmes/plugins/toolsets/azure_sql/tools/get_top_data_io_queries.py,sha256=EXWDVat_lZbcGQTcybQrgcLHUXMJYRNwZ1UIJxZZcTg,8277
|
|
110
|
-
holmes/plugins/toolsets/azure_sql/tools/get_top_log_io_queries.py,sha256=LIn1Xjr5PusJeEg24oH80X9kf0V36FIZz7JY7D3RPEs,7652
|
|
111
|
-
holmes/plugins/toolsets/azure_sql/utils.py,sha256=nN8ZcVpkOa05nocY4W1gf7aaaNhzn2oD-P0STYQK2Ck,2331
|
|
112
|
-
holmes/plugins/toolsets/bash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
113
|
-
holmes/plugins/toolsets/bash/argocd/__init__.py,sha256=1ck-b82embOjsiiZkvuDChXiFaNYFwl5xW-ysBRB4vA,2186
|
|
114
|
-
holmes/plugins/toolsets/bash/argocd/constants.py,sha256=J1bkIX_3S4WQEcqHsCIMh0T-ehHmdFHXcr8mbgJNMEI,3176
|
|
115
|
-
holmes/plugins/toolsets/bash/aws/__init__.py,sha256=4fzFz64Ussyvznp-AJ2w5pGa4IbYYw6bosK_o-XbTTM,2229
|
|
116
|
-
holmes/plugins/toolsets/bash/aws/constants.py,sha256=g8IH1CLkAZuV8SQEQrUVjLul7S28UvAwRjHwnYXkl3M,18389
|
|
117
|
-
holmes/plugins/toolsets/bash/azure/__init__.py,sha256=FsLA_v_otjuo_COEw8Hmiuh5_aQ3RWRIstECeBAS5hg,1863
|
|
118
|
-
holmes/plugins/toolsets/bash/azure/constants.py,sha256=jz2R8-EiSjGjAPBTtIAbLwfyHOJPVmI117wp-u_e8Kc,10361
|
|
119
|
-
holmes/plugins/toolsets/bash/bash_instructions.jinja2,sha256=AKVW1DpD6lii8cF582LZzEe9sOh3YJCerXBapwlEKhU,481
|
|
120
|
-
holmes/plugins/toolsets/bash/bash_toolset.py,sha256=CN05nUsyUtEQbHzs-OnqYXz16-Z0EjYwIIGCpLVANoc,9559
|
|
121
|
-
holmes/plugins/toolsets/bash/common/bash.py,sha256=EbudJi4ialC5q0Lrdg2d7VkP9faW3pOsuHUszCXp5Fo,1853
|
|
122
|
-
holmes/plugins/toolsets/bash/common/bash_command.py,sha256=aGlzQnUQHpEK3BNwztESassqzKQ5PFObwvHcFn5GQIY,4570
|
|
123
|
-
holmes/plugins/toolsets/bash/common/config.py,sha256=dRd_gl16e2jG_gk6_mRVT6o3idiVXJ-8CtBONAx1DOU,285
|
|
124
|
-
holmes/plugins/toolsets/bash/common/stringify.py,sha256=8dd4KqaNbMmdEaMgAnfEpbNhShVIWkce0S13ckbxNP4,1470
|
|
125
|
-
holmes/plugins/toolsets/bash/common/validators.py,sha256=hdQCwrLP9TR7TfViKIajRooqwvd3ZXC-bB-hUvNRsUk,4146
|
|
126
|
-
holmes/plugins/toolsets/bash/docker/__init__.py,sha256=PrWTOL1k7UXPD35zoIEnNhmKKzigTJxu5MLsAtHxrZc,1914
|
|
127
|
-
holmes/plugins/toolsets/bash/docker/constants.py,sha256=mmyC7RJY2eamp7yjAfqTz-mpB76fP0ZTf6uTuaeYsGY,5015
|
|
128
|
-
holmes/plugins/toolsets/bash/helm/__init__.py,sha256=WUpWPm1qcJyvdvT6qPWioshbakqMyeTzuaaxvigUIFU,2094
|
|
129
|
-
holmes/plugins/toolsets/bash/helm/constants.py,sha256=WnVCu8hv4eiDeIhyPumOU2UkC-dk3ndG1Nw5s8RrjEE,1898
|
|
130
|
-
holmes/plugins/toolsets/bash/kubectl/__init__.py,sha256=KCoiVytpxPJg4EeUWF_1EX0Ey9I4cE8EhCSLSK9gGP0,4302
|
|
131
|
-
holmes/plugins/toolsets/bash/kubectl/constants.py,sha256=jYC1YCsdM-fel3V-T5yKR0QUzwuJX0nCr7FHKCbUVt8,1494
|
|
132
|
-
holmes/plugins/toolsets/bash/kubectl/kubectl_describe.py,sha256=y-Yiy3LsleZF1DBuhq8fCSZwkdY3yD3v7z5TRLpZCY8,1596
|
|
133
|
-
holmes/plugins/toolsets/bash/kubectl/kubectl_events.py,sha256=5EP-imdVcK-b1WRSTYp1b0FiWHEwoyuS93FaRWL8xHU,1290
|
|
134
|
-
holmes/plugins/toolsets/bash/kubectl/kubectl_get.py,sha256=jjw9lTj0_9IsTkFnIIV3rib2CoYlIFTUrHX_GQUglyA,1527
|
|
135
|
-
holmes/plugins/toolsets/bash/kubectl/kubectl_logs.py,sha256=IhK22AwX5Glc93JlhmIxOdemjRShjDnjSK6PmIA3y2M,1197
|
|
136
|
-
holmes/plugins/toolsets/bash/kubectl/kubectl_run.py,sha256=1CGnbzRftgrgCLGrtF8ThOld8Ebc6Vb6VaXMQAdufoA,1585
|
|
137
|
-
holmes/plugins/toolsets/bash/kubectl/kubectl_top.py,sha256=Hjpx9K5e93OZVaJV85Oey_OdiiXYCQerGwHwWF75rhQ,1354
|
|
138
|
-
holmes/plugins/toolsets/bash/parse_command.py,sha256=ggC--vw9vI8KkXUSOnHRiwavZf93cnUvbEqNhS_yeiI,5963
|
|
139
|
-
holmes/plugins/toolsets/bash/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
140
|
-
holmes/plugins/toolsets/bash/utilities/base64_util.py,sha256=yAImxU-VQJ1ioCN-whItR9x3u0Sx84dQBMUkFw7KC1Q,324
|
|
141
|
-
holmes/plugins/toolsets/bash/utilities/cut.py,sha256=gDBdzY9gM9h6heEqeYhWwjDULpvpwWMDNYbQ-vvNKiE,318
|
|
142
|
-
holmes/plugins/toolsets/bash/utilities/grep/__init__.py,sha256=9_4yBTJYRH4vFq_B5yklf4Io0C-7v8GaJeItxZ22B1I,267
|
|
143
|
-
holmes/plugins/toolsets/bash/utilities/head.py,sha256=kgNypaY0xcbMpBt7486zdsqPcnrU17Qi--EuYaxw0AM,276
|
|
144
|
-
holmes/plugins/toolsets/bash/utilities/jq.py,sha256=qQLuVB40ROaw33jJCME_aRt2ElytAe9W81sh56JgM14,2586
|
|
145
|
-
holmes/plugins/toolsets/bash/utilities/sed.py,sha256=tDUVr1VxuLvHKv1n9_CSaBfgYIwnwLA30Vln_ehkGBY,5756
|
|
146
|
-
holmes/plugins/toolsets/bash/utilities/sort.py,sha256=atvOuiNyk4BbKvWthZusArcNslH1fMx_nMJUIB3vF9E,352
|
|
147
|
-
holmes/plugins/toolsets/bash/utilities/tail.py,sha256=GGHQoMAos0j5kN0EGSq_oQ63j9ZczyhrvEe8tgMLRzg,276
|
|
148
|
-
holmes/plugins/toolsets/bash/utilities/tr.py,sha256=4X3_816-ur6dDMyuJdS2ZwqdKz9aqqOHzqx-yi2m1cs,2157
|
|
149
|
-
holmes/plugins/toolsets/bash/utilities/uniq.py,sha256=bod-81lXO7-EQiy73A9aaDnc-RkrclwdBJ4rS_rUyn8,320
|
|
150
|
-
holmes/plugins/toolsets/bash/utilities/wc.py,sha256=EhhRcKjb9QNI51uUjftyzzHQucCawkTU3AB2cviTV90,287
|
|
151
|
-
holmes/plugins/toolsets/cilium.yaml,sha256=iwd1cTEPJ0672cJsnfndirttnWAC1RaH4c8E9sWntqI,12754
|
|
152
|
-
holmes/plugins/toolsets/confluence.yaml,sha256=WPflxrGKFA5VTcy5p4t2FY86oFECzoyTHkudUxhAL-k,768
|
|
153
|
-
holmes/plugins/toolsets/consts.py,sha256=vxzGJBF1XNAE9CDteUFIYNRmOagmJ-ktFEfVEU8tHl0,205
|
|
154
|
-
holmes/plugins/toolsets/coralogix/api.py,sha256=25ZnTfAvh5ZHzDsjap8As87opjGbMSBMQSSqelw7Tm0,5178
|
|
155
|
-
holmes/plugins/toolsets/coralogix/toolset_coralogix_logs.py,sha256=AbkYhWatgfJjdScNkaziRqg8KckcjfSHHQugO4bmE54,3929
|
|
156
|
-
holmes/plugins/toolsets/coralogix/utils.py,sha256=z9AAgyDTaxVgeSwaYDXGthBBCn_865gq7j1XUbZ5M-o,6938
|
|
157
|
-
holmes/plugins/toolsets/datadog/datadog_api.py,sha256=w8fILwJhMw5jua8O7d8WF5kbQSgRjXonPpZIf-EikJU,22675
|
|
158
|
-
holmes/plugins/toolsets/datadog/datadog_general_instructions.jinja2,sha256=Z0X7z_AlKtmw3kfDnz-aPJKOnSIX4bPPRz8gQZRCctk,8300
|
|
159
|
-
holmes/plugins/toolsets/datadog/datadog_logs_instructions.jinja2,sha256=NuzQFdUE9fc7MJfchgf6j7jHMANwUFkgRdg1qff5fBE,2943
|
|
160
|
-
holmes/plugins/toolsets/datadog/datadog_metrics_instructions.jinja2,sha256=_59DzoVsoQVh73SRYhMBsK7jgKYVpWnadfI1AD_eLVY,4231
|
|
161
|
-
holmes/plugins/toolsets/datadog/datadog_rds_instructions.jinja2,sha256=lbI6lkcMjG1CVKeL0XDkq5zl-fRDVxZ_t_CjS-Uh_OM,3119
|
|
162
|
-
holmes/plugins/toolsets/datadog/datadog_traces_formatter.py,sha256=uTtWTrsbvO9cZcUDskJE9p5sEscieXwhEpxvRKkaiEw,10275
|
|
163
|
-
holmes/plugins/toolsets/datadog/instructions_datadog_traces.jinja2,sha256=9j3-46UNE35DE2xBDTCRt1EedgNdgRXuC1u-X3yB-9I,1487
|
|
164
|
-
holmes/plugins/toolsets/datadog/toolset_datadog_general.py,sha256=BYIv4EyhXVvE4pc4RnTlBJfhR-cAQrmG7d_0FY2egLg,34619
|
|
165
|
-
holmes/plugins/toolsets/datadog/toolset_datadog_logs.py,sha256=iF__DdTEQ6bcC3sQtyxp3eXzx955H2d4c0geL7gavxI,17417
|
|
166
|
-
holmes/plugins/toolsets/datadog/toolset_datadog_metrics.py,sha256=rkHeA_gHSTbL1UOy62q9j7lBm9KXP2exEScq4oRBzsY,28089
|
|
167
|
-
holmes/plugins/toolsets/datadog/toolset_datadog_rds.py,sha256=d6IRJXLLutvGvXmRncpaFWEAYlXdyFdZI0ItCc_t5GM,29132
|
|
168
|
-
holmes/plugins/toolsets/datadog/toolset_datadog_traces.py,sha256=VU8s1HFvw3h-NMkjKKasg939RUeowOhvEqEl7bn6MoA,26267
|
|
169
|
-
holmes/plugins/toolsets/docker.yaml,sha256=O0Q0z0kZS8_QBEhwrUfbXdGUn1nP1K9k0FlQd6EZVJ4,1559
|
|
170
|
-
holmes/plugins/toolsets/git.py,sha256=1xJ06rcScjOjpJdSBFaabqdITD3qtpSoVP2-C9eEhQQ,32369
|
|
171
|
-
holmes/plugins/toolsets/grafana/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
172
|
-
holmes/plugins/toolsets/grafana/base_grafana_toolset.py,sha256=AjvbS4txSo97YqeeFlXUnu95oPFt8rB-CD1Ccf92a04,1760
|
|
173
|
-
holmes/plugins/toolsets/grafana/common.py,sha256=oMkTv711UlKrwjZI9xjEeClVaN-nZA-vRepXBTkFVL8,2460
|
|
174
|
-
holmes/plugins/toolsets/grafana/grafana_api.py,sha256=lqxgrzp4cQH0WkkRMa8J9oJb1-AtkmuXynqQGTnvrT4,2518
|
|
175
|
-
holmes/plugins/toolsets/grafana/grafana_tempo_api.py,sha256=C8XEZzIKzeh9pG-DBQoMW4Qi2Kh3ZoI4TXVGUx2CxUc,14688
|
|
176
|
-
holmes/plugins/toolsets/grafana/loki/instructions.jinja2,sha256=Qy3bTJ8wMUnyf603396pobkPoeqxj67se_R4YUAOT6E,803
|
|
177
|
-
holmes/plugins/toolsets/grafana/loki/toolset_grafana_loki.py,sha256=kO4MbTqgi7qerlsHJ6xJtNasDRcq5scEE0SoD1yh5nU,4173
|
|
178
|
-
holmes/plugins/toolsets/grafana/loki_api.py,sha256=f7oTzfhJ1LojsPoAfsKt32ADWffLEywBJQWG9eyfb7I,2529
|
|
179
|
-
holmes/plugins/toolsets/grafana/toolset_grafana.py,sha256=yHLfDcpqhrCPpdsuxqYN7P-vj284H8A-8rsX0G_oSk0,9401
|
|
180
|
-
holmes/plugins/toolsets/grafana/toolset_grafana_dashboard.jinja2,sha256=cSZ17PfyMA-_ObZXrNRgEPBNz6tq8P5MQmkPQNVhBb8,825
|
|
181
|
-
holmes/plugins/toolsets/grafana/toolset_grafana_tempo.jinja2,sha256=0HBYUXkGYWZbHwIvfQEF5oL9LFMYzjgcmL1U6RjgPSE,10417
|
|
182
|
-
holmes/plugins/toolsets/grafana/toolset_grafana_tempo.py,sha256=DyBJH1u4ZqPO23XBj1HgojoV23CT2pU9b6PIKuJBEA4,38148
|
|
183
|
-
holmes/plugins/toolsets/grafana/trace_parser.py,sha256=8PjqPGDGo9uB2Z8WWWknMKdhcqlqZEVncQCCkl2F06A,7024
|
|
184
|
-
holmes/plugins/toolsets/helm.yaml,sha256=-IPDChKMHcxGbzA0z9GKczRshL-mD24cHpBizfNM1jM,1604
|
|
185
|
-
holmes/plugins/toolsets/internet/internet.py,sha256=Ovq8EEW_PizUxgAm3YEMkdd3TFiuKRiINXcd4zBgw4U,7786
|
|
186
|
-
holmes/plugins/toolsets/internet/notion.py,sha256=ELDtsP8kxdU8rExEL8hq1yV5DEeWDNOljHZEwjnumJc,4795
|
|
187
|
-
holmes/plugins/toolsets/investigator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
188
|
-
holmes/plugins/toolsets/investigator/core_investigation.py,sha256=FQmQT6AkE0-oq8Alo7GfCx_tPJo0Sby1_nOlcUW9JGU,5389
|
|
189
|
-
holmes/plugins/toolsets/investigator/investigator_instructions.jinja2,sha256=C6y6OaJI2dQSLSw7Zq9-D-sWmL5K_40zRItvkzVAdH4,13967
|
|
190
|
-
holmes/plugins/toolsets/investigator/model.py,sha256=6AE9Iy05GaX3gC9ChTtZQOFGjSUsas_pB9_YyDaJXP0,342
|
|
191
|
-
holmes/plugins/toolsets/kafka.py,sha256=kO_CKzdXG__6QmiwaGumZgPkdZbft0f1DpqhNV8ogs8,24774
|
|
192
|
-
holmes/plugins/toolsets/kubernetes.yaml,sha256=uBg_jRDrM6QFuiOi0-q8TRC93tCBLJiEc27mPMVlx4M,13683
|
|
193
|
-
holmes/plugins/toolsets/kubernetes_logs.py,sha256=b84d-yCrGq9ua4B_zeitUy9AqDcUdipRAY71IFe5C7s,32814
|
|
194
|
-
holmes/plugins/toolsets/kubernetes_logs.yaml,sha256=3AhUKihYMSL57Tm_y5HgEbtyoer6Kpm7oAcRz1GxgDw,4532
|
|
195
|
-
holmes/plugins/toolsets/logging_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
196
|
-
holmes/plugins/toolsets/logging_utils/logging_api.py,sha256=AG-EJnkzRLq8s4naG3yyuYjl3y_Q2oOwCYvmto8Ydc0,15475
|
|
197
|
-
holmes/plugins/toolsets/logging_utils/types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
198
|
-
holmes/plugins/toolsets/mcp/toolset_mcp.py,sha256=v_C6Jvf69y013_ykkoxkxpAVCuYbJ5OfBHKIl2VgAhg,9007
|
|
199
|
-
holmes/plugins/toolsets/newrelic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
200
|
-
holmes/plugins/toolsets/newrelic/new_relic_api.py,sha256=i_rxTjwt-qK9MASQSp5lI_C4HoegRJITV5Z5qsBdJ90,4077
|
|
201
|
-
holmes/plugins/toolsets/newrelic/newrelic.jinja2,sha256=O782MgMO17j-C8BnKbZmr0_bGoHn-1JJJX40IiLrKLk,3547
|
|
202
|
-
holmes/plugins/toolsets/newrelic/newrelic.py,sha256=DzFhNq-wwm1fmHU-ORVCRnbJddcIfkCmSbNntpeqoMA,6370
|
|
203
|
-
holmes/plugins/toolsets/opensearch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
204
|
-
holmes/plugins/toolsets/opensearch/opensearch.py,sha256=VVyEJnECRfhwNUQqilugi9t0tPymyp7hRFwYQSFDg2E,8629
|
|
205
|
-
holmes/plugins/toolsets/opensearch/opensearch_logs.py,sha256=_j-JAhLWtxhBPafCveympxtxQ2EalsqKW6jLfaXHG94,5929
|
|
206
|
-
holmes/plugins/toolsets/opensearch/opensearch_ppl_query_docs.jinja2,sha256=D1Xl_tFfZ91XvzRqdUjsrH0vQjs95Ddn_EPwMcwlzcs,56327
|
|
207
|
-
holmes/plugins/toolsets/opensearch/opensearch_query_assist.py,sha256=lt27E6Ey7EQ34YejSOrUWYlHnWTnqdgm7wHMGVVjZUo,2721
|
|
208
|
-
holmes/plugins/toolsets/opensearch/opensearch_query_assist_instructions.jinja2,sha256=Qoqb8wFqj0WBukA_uhA6l-2bFs06PqYFDESQCN_uWZQ,6699
|
|
209
|
-
holmes/plugins/toolsets/opensearch/opensearch_traces.py,sha256=Xd_toAzZikdUrInZG8_oBQ0gI-QCvYrf0w2ZciFC1kU,8869
|
|
210
|
-
holmes/plugins/toolsets/opensearch/opensearch_traces_instructions.jinja2,sha256=Xn8AW4XCMYV1VkBbF8nNB9fUpKQ1Vbm88iFczj-LQXo,1035
|
|
211
|
-
holmes/plugins/toolsets/opensearch/opensearch_utils.py,sha256=mh9Wp22tOdJYmA9IaFS7tD3aEENljyeuPOsF-lEe5C0,5097
|
|
212
|
-
holmes/plugins/toolsets/openshift.yaml,sha256=H3Z1N2d4lQ8xK8AZyXWAdumjLCXE-89q7VcSS5CgWUg,15719
|
|
213
|
-
holmes/plugins/toolsets/prometheus/prometheus.py,sha256=Ip18XzSxqT0lPCQ2jnZ5MXUQoodOZdCak6KZI_IyqnM,67743
|
|
214
|
-
holmes/plugins/toolsets/prometheus/prometheus_instructions.jinja2,sha256=taf5C-N9rdp1A7S__hETefcm2OaYHJLjs1ZbuqIsGtE,6383
|
|
215
|
-
holmes/plugins/toolsets/prometheus/utils.py,sha256=ZenD354dP0sRmm0R-QBuAq1jyn40GjYf4wx15bXIYRc,775
|
|
216
|
-
holmes/plugins/toolsets/rabbitmq/api.py,sha256=-BtqF7hQWtl_OamnQ521vYHhR8E2n2wcPNYxfI9r4kQ,14307
|
|
217
|
-
holmes/plugins/toolsets/rabbitmq/rabbitmq_instructions.jinja2,sha256=qetmtJUMkx9LIihr2fSJ2EV9h2J-b-ZdUAvMtopXZYY,3105
|
|
218
|
-
holmes/plugins/toolsets/rabbitmq/toolset_rabbitmq.py,sha256=k1Sq0Iw8f4ygLVdMDSWMXEGqLX5Jq98hTDcAlsjrv6A,9286
|
|
219
|
-
holmes/plugins/toolsets/robusta/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
220
|
-
holmes/plugins/toolsets/robusta/robusta.py,sha256=5TjYsHd9_cItj1RigwJuBaLyL9mBB0pnnKpHKk4gKxc,16911
|
|
221
|
-
holmes/plugins/toolsets/robusta/robusta_instructions.jinja2,sha256=q-R3t5YmTznGcrZG19sAjyGVgOglBJALNgaVK73cyJY,4119
|
|
222
|
-
holmes/plugins/toolsets/runbook/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
223
|
-
holmes/plugins/toolsets/runbook/runbook_fetcher.py,sha256=ITwAZYODFeMmk7Cea-YLDXj6IetYf2TPS4F4pZdnXkU,11529
|
|
224
|
-
holmes/plugins/toolsets/service_discovery.py,sha256=HqENA92SyN7Z_Kd8OZVfw-S9PwdYhn6HDFUAo1-fosw,3268
|
|
225
|
-
holmes/plugins/toolsets/servicenow_tables/instructions.jinja2,sha256=8ry8i0hFufpGqeKFhB3wZREwBKJSFEctQrcxAvT9NDY,3613
|
|
226
|
-
holmes/plugins/toolsets/servicenow_tables/servicenow_tables.py,sha256=NGfk9-IYbLR6eSYR5lEqv4CQFBI17zx62pzD1BTWBog,18901
|
|
227
|
-
holmes/plugins/toolsets/slab.yaml,sha256=1Pz0Rzs0B6-TnJiiN2w8qJ9E_bh2haQn0mfhTszaZE0,677
|
|
228
|
-
holmes/plugins/toolsets/utils.py,sha256=EZqPEBJcnMZliWMiN82XOQstr_NwanEqnzsd6incEFk,6891
|
|
229
|
-
holmes/plugins/utils.py,sha256=Wn_UxZMB4V2_UiJDNy0pifGnIGS_zUwRhUlmttCywnY,372
|
|
230
|
-
holmes/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
231
|
-
holmes/utils/cache.py,sha256=aPc7zTdpBQ3JQR7ET4wvIwzXhx2PpPKiBBSTgbVNXlY,2219
|
|
232
|
-
holmes/utils/cert_utils.py,sha256=5YAUOY3LjFqqFpYHnHLvSc70LCxEWf0spw1vZwLLvOw,1193
|
|
233
|
-
holmes/utils/colors.py,sha256=G-1EcwwOjLmilL74M4AfOGxvlGSMaDfGT518A9Iek2k,221
|
|
234
|
-
holmes/utils/config_utils.py,sha256=w69TLsd-qFSK3yBpG2aBIIN1Y2K-DLdxEW_1rvJDUbs,3625
|
|
235
|
-
holmes/utils/console/consts.py,sha256=SXcXHWjMH63nh5ErDKR6K7wrCUoxxlZ0KKM1Ipoy6J4,387
|
|
236
|
-
holmes/utils/console/logging.py,sha256=2HLGg58VKfECD4YhSMacIoSRt9b7tbVMDthuHa-qj6I,3253
|
|
237
|
-
holmes/utils/console/result.py,sha256=lCnn1YX6J36d1GTVYX0jkp8QrJKVosq8t7z7G1j6hhA,1386
|
|
238
|
-
holmes/utils/default_toolset_installation_guide.jinja2,sha256=-GyBn3bO24bV7H3GHQRq9lgFyfA9tgN858qTkPfxlu0,580
|
|
239
|
-
holmes/utils/definitions.py,sha256=WKVDFh1wfuo0UCV_1jXFjgP0gjGM3-U-UdxdVxmXaKM,287
|
|
240
|
-
holmes/utils/env.py,sha256=Gcm-Lvp8HRjSu2pZxg4ob0gtKMRxvyum77lCJ5zdCi0,1951
|
|
241
|
-
holmes/utils/file_utils.py,sha256=uN5JCH6QQqY8dXwFtQ7AuzlfOCUqOuAzP3TQZSau9MU,1694
|
|
242
|
-
holmes/utils/global_instructions.py,sha256=cs1FofsVd9nfABELyTDfgLP3_pReAhktWLPcQH8NaTQ,2749
|
|
243
|
-
holmes/utils/holmes_status.py,sha256=ypKh7cS_PpHmuKSsj389Vu3zfNpwq-U51ou2x8Plcw4,761
|
|
244
|
-
holmes/utils/holmes_sync_toolsets.py,sha256=sePYPOjOVmo8FAxePTvv1D4-IPhIze6Nb3wOXpnjgyM,3147
|
|
245
|
-
holmes/utils/keygen_utils.py,sha256=qZ0aIAqItsoX1egAJ2TFiHjaARLYAIid94-VgMq_bB0,135
|
|
246
|
-
holmes/utils/krr_utils.py,sha256=ObQ_hfZ5ceazy3w6oGt9eQjRDAPhTNnO3dowMZ1AoY0,6744
|
|
247
|
-
holmes/utils/llms.py,sha256=YLqq54I84wW7Kp7Z7CPVTxAFPb-Sq6xkdmVGzVf60jI,629
|
|
248
|
-
holmes/utils/markdown_utils.py,sha256=_yDc_IRB5zkj9THUlZ6nzir44VfirTjPccC_DrFrBkc,1507
|
|
249
|
-
holmes/utils/pydantic_utils.py,sha256=g0e0jLTa8Je8JKrhEP4N5sMxj0_hhPOqFZr0Vpd67sg,1649
|
|
250
|
-
holmes/utils/sentry_helper.py,sha256=BPkyMs7Yo_0b7QLMmAQ3mKZyXTmxkgVRjr3kikr5ZX8,1328
|
|
251
|
-
holmes/utils/stream.py,sha256=YgwCgXQjlM6gSKCjTU5ZSeHK9q_VMOoL8_-iL5hQhek,4873
|
|
252
|
-
holmes/utils/tags.py,sha256=SU4EZMBtLlIb7OlHsSpguFaypczRzOcuHYxDSanV3sQ,3364
|
|
253
|
-
holmes/version.py,sha256=5-3__IY_2hcIC4WQyTqcdyX1QF-e2VfkYKrI4BIrq0Q,5992
|
|
254
|
-
holmesgpt-0.16.2a0.dist-info/LICENSE,sha256=To11ahvEeW4Vlz3wgs9yuR9eYf7E7GjWeZEEZwwQjQg,10208
|
|
255
|
-
holmesgpt-0.16.2a0.dist-info/METADATA,sha256=glpCc78gouP8FxjqmCCpIxJDn0c9rwbAzJ9hSF986DE,16502
|
|
256
|
-
holmesgpt-0.16.2a0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
257
|
-
holmesgpt-0.16.2a0.dist-info/entry_points.txt,sha256=JdzEyZhpaYr7Boo4uy4UZgzY1VsAEbzMgGmHZtx9KFY,42
|
|
258
|
-
holmesgpt-0.16.2a0.dist-info/RECORD,,
|
|
File without changes
|
/holmes/plugins/toolsets/{opensearch → elasticsearch}/opensearch_query_assist_instructions.jinja2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|