Skip to content
Merged
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ message NotificationChannelMutableData {
repeated AwsS3BucketChannelConfig s3_bucket_channel_config = 4;
repeated SplunkIntegrationChannelConfig splunk_integration_channel_config = 5;
repeated SyslogIntegrationChannelConfig syslog_integration_channel_config = 6;
repeated HttpEventCollectorChannelConfig http_event_collector_channel_config = 7;
}

message HttpEventCollectorChannelConfig {
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this still coming from hypertrace side? Can you confirm?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes Ronak, notification channels and rules are still driven by hypertrace config.

oneof channel_type {
SplunkIntegrationChannelConfig splunk_integration_channel_config = 1;
CrowdStrikeIntegrationChannelConfig crowd_strike_integration_channel_config = 2;
}
}

message AwsS3BucketChannelConfig {
Expand Down Expand Up @@ -60,3 +68,7 @@ message SplunkIntegrationChannelConfig {
message SyslogIntegrationChannelConfig {
string syslog_server_integration_id = 1;
}

message CrowdStrikeIntegrationChannelConfig {
string crowd_strike_integration_id = 1;
}