Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Add service and service monitor for forwarder #1546

Merged
merged 20 commits into from
Sep 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
d158d93
Added holmes_conversation action
itisallgood Aug 27, 2024
96a869c
Merge remote-tracking branch 'origin/master' into chat-input-box
itisallgood Aug 27, 2024
bb60372
Updated comment for HolmesConversationIssueContext
itisallgood Aug 27, 2024
1952702
Updated lightActions
itisallgood Aug 28, 2024
6b24ab7
Added HolmesToolsResult to verify tools input
itisallgood Aug 28, 2024
d85c101
Updated HolmesConversationRequest model
itisallgood Aug 29, 2024
3265c4f
Added getting holmes model in ActivityStats
itisallgood Aug 30, 2024
8c6ac66
Merge branch 'master' into chat-input-box
itisallgood Aug 30, 2024
0c83bc7
Made parameters optional for HolmesConversationIssueContext
itisallgood Aug 30, 2024
39e2791
Made some parameters for conversation api optional
itisallgood Aug 30, 2024
f6b79a5
Removed logging the error from get_holmes_model and fixed a bug
itisallgood Aug 30, 2024
924e65a
Merge remote-tracking branch 'origin/master' into chat-input-box
itisallgood Sep 5, 2024
48b9e0a
Added service and service monitor for forwarder
itisallgood Sep 9, 2024
58debbd
Merge branch 'master' into add-service-and-service-monitor-for-forwarder
itisallgood Sep 9, 2024
b1e0bb6
Merge branch 'master' into add-service-and-service-monitor-for-forwarder
itisallgood Sep 9, 2024
90962fe
Updated values.yaml
itisallgood Sep 9, 2024
4986899
Merge branch 'add-service-and-service-monitor-for-forwarder' of githu…
itisallgood Sep 9, 2024
8d713f6
Merge branch 'master' into add-service-and-service-monitor-for-forwarder
itisallgood Sep 20, 2024
2a3833c
Left only default values in forwarder.yaml
itisallgood Sep 20, 2024
236d293
Merge branch 'add-service-and-service-monitor-for-forwarder' of githu…
itisallgood Sep 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated lightActions
  • Loading branch information
itisallgood committed Aug 28, 2024
commit 1952702c34b178ba5dd8fcc699fcb6bef8db5e5e
1 change: 1 addition & 0 deletions helm/robusta/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ lightActions:
- prometheus_get_series
- prometheus_get_label_names
- holmes_workload_health
- holmes_conversation

# install prometheus, alert-manager, and grafana along with Robusta?
enablePrometheusStack: false
Expand Down
4 changes: 2 additions & 2 deletions src/robusta/core/model/base_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,12 @@ class HolmesConversationIssueContext(BaseModel):
source: str


class ConversationType(Enum):
class ConversationType(str, Enum):
"""
Conversation types for holmes_conversation action
"""

ISSUE = auto()
ISSUE = "issue"


class HolmesConversationParams(HolmesParams):
Expand Down
Loading