Sha256: f256a51fa20cc6b66b4d98c5f89a44d40e353f0dca7fe36d6e4795c52eb78086
Contents?: true
Size: 408 Bytes
Versions: 68
Compression:
Stored size: 408 Bytes
Contents
# encoding: utf-8 require "logstash/namespace" require "logstash/logging" 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
68 entries across 68 versions & 5 rubygems