root_directory

in lib/logstash/outputs/kusto.rb [188:197]


  def root_directory
    parts = @path.split(File::SEPARATOR).reject(&:empty?)
    if Gem.win_platform?
      
      parts[1]
    else
      parts.first
    end
  end