From 5d546e89da521edec9564a5b0bbc695ba3fea98d Mon Sep 17 00:00:00 2001 From: Kunal Kaushik Date: Fri, 30 May 2025 14:50:38 +0530 Subject: [PATCH] added Http Event Collector Channel config Prots --- .../config/service/v1/notification_channel.proto | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/notification-channel-config-service-api/src/main/proto/org/hypertrace/notification/config/service/v1/notification_channel.proto b/notification-channel-config-service-api/src/main/proto/org/hypertrace/notification/config/service/v1/notification_channel.proto index d052153b..91d16de7 100644 --- a/notification-channel-config-service-api/src/main/proto/org/hypertrace/notification/config/service/v1/notification_channel.proto +++ b/notification-channel-config-service-api/src/main/proto/org/hypertrace/notification/config/service/v1/notification_channel.proto @@ -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 { + oneof channel_type { + SplunkIntegrationChannelConfig splunk_integration_channel_config = 1; + CrowdStrikeIntegrationChannelConfig crowd_strike_integration_channel_config = 2; + } } message AwsS3BucketChannelConfig { @@ -60,3 +68,7 @@ message SplunkIntegrationChannelConfig { message SyslogIntegrationChannelConfig { string syslog_server_integration_id = 1; } + +message CrowdStrikeIntegrationChannelConfig { + string crowd_strike_integration_id = 1; +}