SplunkConfig represents vendor-specific config for Splunk.
| 75 | |
| 76 | // SplunkConfig represents vendor-specific config for Splunk. |
| 77 | type SplunkConfig struct { |
| 78 | Domain string `json:"domain"` |
| 79 | Port uint16 `json:"port"` |
| 80 | KeyID string `json:"key_id"` |
| 81 | EncryptedToken string `json:"encrypted_token"` |
| 82 | SSLVerify bool `json:"ssl_verify"` |
| 83 | } |
| 84 | |
| 85 | // HecConfig represents vendor-specific config for an HTTPS Event Collector (HEC) endpoint. |
| 86 | type HecConfig struct { |
nothing calls this directly
no outgoing calls
no test coverage detected