Sha256: 6ed8ab46518512b0b07a70812854509a112ad7e769165f65b146e61af5598921
Contents?: true
Size: 351 Bytes
Versions: 59
Compression:
Stored size: 351 Bytes
Contents
# encoding: utf-8 module LogStash module Modules class KibanaImporter include LogStash::Util::Loggable def initialize(client) @client = client end def put(via_kibana) path = via_kibana.import_path logger.debug("Attempting POST", :url_path => path, :content => via_kibana.content) via_kibana.import(@client) end end end end
Version data entries
59 entries across 59 versions & 1 rubygems