Class: LogStash::Outputs::LMLogs
- Inherits:
-
Base
- Object
- Base
- LogStash::Outputs::LMLogs
- Defined in:
- lib/logstash/outputs/lmlogs.rb
Overview
An example output that does nothing.
Defined Under Namespace
Classes: InvalidHTTPConfigError
Constant Summary collapse
- @@MAX_PAYLOAD_SIZE =
8*1024*1024
Instance Method Summary collapse
- #client ⇒ Object
-
#client_config ⇒ Object
def register.
- #close ⇒ Object
- #generate_auth_string(body) ⇒ Object
- #isValidPayloadSize(documents, lmlogs_event, max_payload_size) ⇒ Object
- #log_failure(message, opts) ⇒ Object
- #multi_receive(events) ⇒ Object
- #register ⇒ Object
- #send_batch(events) ⇒ Object
Instance Method Details
#client ⇒ Object
153 154 155 |
# File 'lib/logstash/outputs/lmlogs.rb', line 153 def client @client ||= make_client end |
#client_config ⇒ Object
def register
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
# File 'lib/logstash/outputs/lmlogs.rb', line 110 def client_config c = { connect_timeout: @connect_timeout, socket_timeout: @socket_timeout, request_timeout: @request_timeout, follow_redirects: @follow_redirects, automatic_retries: @automatic_retries, retry_non_idempotent: @retry_non_idempotent, check_connection_timeout: @validate_after_inactivity, pool_max: @pool_max, pool_max_per_route: @pool_max_per_route, cookies: @cookies, keepalive: @keepalive } if @proxy # Symbolize keys if necessary c[:proxy] = @proxy.is_a?(Hash) ? @proxy.reduce({}) {|memo,(k,v)| memo[k.to_sym] = v; memo} : @proxy end if @access_id if !@access_key || !@access_key.value raise ::LogStash::ConfigurationError, "access_id '#{@access_id}' specified without access_key!" end # Symbolize keys if necessary c[:auth] = { :access_id => @access_id, :access_key => @access_key.value, :eager => true } end end |
#close ⇒ Object
158 159 160 |
# File 'lib/logstash/outputs/lmlogs.rb', line 158 def close @client.close end |
#generate_auth_string(body) ⇒ Object
163 164 165 166 167 168 169 170 171 172 173 |
# File 'lib/logstash/outputs/lmlogs.rb', line 163 def generate_auth_string(body) = DateTime.now.strftime('%Q') hash_this = "POST#{}#{body}/log/ingest" sign_this = OpenSSL::HMAC.hexdigest( OpenSSL::Digest.new('sha256'), "#{@access_key.value}", hash_this ) signature = Base64.strict_encode64(sign_this) "LMv1 #{@access_id}:#{signature}:#{}" end |
#isValidPayloadSize(documents, lmlogs_event, max_payload_size) ⇒ Object
273 274 275 276 277 278 279 280 281 |
# File 'lib/logstash/outputs/lmlogs.rb', line 273 def isValidPayloadSize(documents,lmlogs_event,max_payload_size) if (documents.to_json.bytesize + lmlogs_event.to_json.bytesize) > max_payload_size send_batch(documents) documents = [] end documents.push(lmlogs_event) return documents end |
#log_failure(message, opts) ⇒ Object
269 270 271 |
# File 'lib/logstash/outputs/lmlogs.rb', line 269 def log_failure(, opts) @logger.error("[HTTP Output Failure] #{}", opts) end |
#multi_receive(events) ⇒ Object
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
# File 'lib/logstash/outputs/lmlogs.rb', line 238 def multi_receive(events) puts @@MAX_PAYLOAD_SIZE if debug puts events.to_json end events.each_slice(@batch_size) do |chunk| documents = [] chunk.each do |event| lmlogs_event = { message: event.get(@message_key).to_s } lmlogs_event["_lm.resourceId"] = {} lmlogs_event["_lm.resourceId"]["#{@lm_property}"] = event.get(@property_key.to_s) if @keep_timestamp lmlogs_event["timestamp"] = event.get("@timestamp") end if @timestamp_is_key lmlogs_event["timestamp"] = event.get(@timestamp_key.to_s) end documents = isValidPayloadSize(documents,lmlogs_event,@@MAX_PAYLOAD_SIZE) end send_batch(documents) end end |
#register ⇒ Object
102 103 104 105 106 107 108 |
# File 'lib/logstash/outputs/lmlogs.rb', line 102 def register @total = 0 @total_failed = 0 logger.info("Initialized LogicMonitor output plugin with configuration", :host => @host) end |
#send_batch(events) ⇒ Object
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 |
# File 'lib/logstash/outputs/lmlogs.rb', line 175 def send_batch(events) url = "https://" + @portal_name + ".logicmonitor.com/rest/log/ingest" body = events.to_json auth_string = generate_auth_string(body) request = client.post(url, { :body => body, :headers => { "Content-Type" => "application/json", "User-Agent" => "LM Logs Logstash Plugin", "Authorization" => "#{auth_string}" } }) request.on_success do |response| if response.code == 202 @total += events.length @logger.debug("Successfully sent ", :response_code => response.code, :batch_size => events.length, :total_sent => @total, :time => Time::now.utc) elsif response.code == 207 log_failure( "207 HTTP code - some of the events successfully parsed, some not. ", :response_code => response.code, :url => url, :response_body => response.body, :total_failed => @total_failed) else @total_failed += 1 log_failure( "Encountered non-202/207 HTTP code #{response.code}", :response_code => response.code, :url => url, :response_body => response.body, :total_failed => @total_failed) end end request.on_failure do |exception| @total_failed += 1 log_failure("Could not access URL", :url => url, :method => @http_method, :body => body, :message => exception., :class => exception.class.name, :backtrace => exception.backtrace, :total_failed => @total_failed ) end @logger.debug("Sending LM Logs", :total => @total, :time => Time::now.utc) request.call rescue Exception => e @logger.error("[Exception=] #{e.} #{e.backtrace}") end |