mirror of
https://github.com/bitwarden/server
synced 2025-12-15 07:43:54 +00:00
Add Datadog integration (#6289)
* Event integration updates and cleanups * Add Datadog integration * Update README to include link to Datadog PR * Move doc update into the Datadog PR; Fix empty message on ArgumentException * Adjust exception message Co-authored-by: Matt Bishop <mbishop@bitwarden.com> * Removed unnecessary nullable enable; Moved Docs link to PR into this PR * Remove unnecessary nullable enable calls --------- Co-authored-by: Matt Bishop <mbishop@bitwarden.com>
This commit is contained in:
@@ -304,6 +304,8 @@ public class GlobalSettings : IGlobalSettings
|
||||
public virtual string WebhookIntegrationSubscriptionName { get; set; } = "integration-webhook-subscription";
|
||||
public virtual string HecEventSubscriptionName { get; set; } = "events-hec-subscription";
|
||||
public virtual string HecIntegrationSubscriptionName { get; set; } = "integration-hec-subscription";
|
||||
public virtual string DatadogEventSubscriptionName { get; set; } = "events-datadog-subscription";
|
||||
public virtual string DatadogIntegrationSubscriptionName { get; set; } = "integration-datadog-subscription";
|
||||
|
||||
public string ConnectionString
|
||||
{
|
||||
@@ -345,6 +347,9 @@ public class GlobalSettings : IGlobalSettings
|
||||
public virtual string HecEventsQueueName { get; set; } = "events-hec-queue";
|
||||
public virtual string HecIntegrationQueueName { get; set; } = "integration-hec-queue";
|
||||
public virtual string HecIntegrationRetryQueueName { get; set; } = "integration-hec-retry-queue";
|
||||
public virtual string DatadogEventsQueueName { get; set; } = "events-datadog-queue";
|
||||
public virtual string DatadogIntegrationQueueName { get; set; } = "integration-datadog-queue";
|
||||
public virtual string DatadogIntegrationRetryQueueName { get; set; } = "integration-datadog-retry-queue";
|
||||
|
||||
public string HostName
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user