A class to represent the Splunk endpoints
| 40 | |
| 41 | |
| 42 | class HECEndpoint(object): |
| 43 | """ |
| 44 | A class to represent the Splunk endpoints |
| 45 | """ |
| 46 | |
| 47 | RAW = "raw" |
| 48 | EVENT = "event" |
| 49 | |
| 50 | |
| 51 | class SplunkHECManager(object): |
nothing calls this directly
no outgoing calls
no test coverage detected