Skip to content

Commit de8a097

Browse files
authored
added Http Event Collector Channel config Prots (#297)
1 parent 4c5657b commit de8a097

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

notification-channel-config-service-api/src/main/proto/org/hypertrace/notification/config/service/v1/notification_channel.proto

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ message NotificationChannelMutableData {
1616
repeated AwsS3BucketChannelConfig s3_bucket_channel_config = 4;
1717
repeated SplunkIntegrationChannelConfig splunk_integration_channel_config = 5;
1818
repeated SyslogIntegrationChannelConfig syslog_integration_channel_config = 6;
19+
repeated HttpEventCollectorChannelConfig http_event_collector_channel_config = 7;
20+
}
21+
22+
message HttpEventCollectorChannelConfig {
23+
oneof channel_type {
24+
SplunkIntegrationChannelConfig splunk_integration_channel_config = 1;
25+
CrowdStrikeIntegrationChannelConfig crowd_strike_integration_channel_config = 2;
26+
}
1927
}
2028

2129
message AwsS3BucketChannelConfig {
@@ -60,3 +68,7 @@ message SplunkIntegrationChannelConfig {
6068
message SyslogIntegrationChannelConfig {
6169
string syslog_server_integration_id = 1;
6270
}
71+
72+
message CrowdStrikeIntegrationChannelConfig {
73+
string crowd_strike_integration_id = 1;
74+
}

0 commit comments

Comments
 (0)