class SemanticLogger::Appender::Splunk

def reopen

open the handles to resources
After forking an active process call #reopen to re-open
def reopen
  # Connect to splunk. Connect is a synonym for creating a Service by hand and calling login.
  @service = ::Splunk.connect(config)
  # The index we are logging to
  @service_index = service.indexes[index]
end