DatadogConfig represents vendor-specific config for Datadog.
| 101 | |
| 102 | // DatadogConfig represents vendor-specific config for Datadog. |
| 103 | type DatadogConfig struct { |
| 104 | EncryptedToken string `json:"encrypted_token"` |
| 105 | Site string `json:"site"` // One of: US, US3, US5, EU1, US1-FED, AP1 |
| 106 | KeyID string `json:"key_id"` |
| 107 | } |
| 108 | |
| 109 | // Implement the sealed marker interface for all vendor config types. |
| 110 | func (*AzureBlobConfig) isAuditLogStreamVendorConfig() {} |
nothing calls this directly
no outgoing calls
no test coverage detected