Class: LogStash::Filters::Elapsed

Inherits:
Base
  • Object
show all
Defined in:
lib/logstash/filters/elapsed.rb

Overview

The elapsed filter tracks a pair of start/end events and uses their timestamps to calculate the elapsed time between them.

The filter has been developed to track the execution time of processes and other long tasks.

The configuration looks like this:

source,ruby

filter {

elapsed {
  start_tag => "start event tag"
  end_tag => "end event tag"
  unique_id_field => "id field name"
  timeout => seconds
  new_event_on_match => true/false
}

}

The events managed by this filter must have some particular properties. The event describing the start of the task (the “start event”) must contain a tag equal to ‘start_tag`. On the other side, the event describing the end of the task (the “end event”) must contain a tag equal to `end_tag`. Both these two kinds of event need to own an ID field which identify uniquely that particular task. The name of this field is stored in `unique_id_field`.

You can use a Grok filter to prepare the events for the elapsed filter. An example of configuration can be:

source,ruby

filter

grok {
  match => { "message" => "%{TIMESTAMP_ISO8601 START id: (?<task_id>.*)" }
  add_tag => [ "taskStarted" ]
}

grok {
  match => { "message" => "%TIMESTAMP_ISO8601 END id: (?<task_id>.*)" }
  add_tag => [ "taskTerminated" ]
}

elapsed {
  start_tag => "taskStarted"
  end_tag => "taskTerminated"
  unique_id_field => "task_id"
}

}

The elapsed filter collects all the “start events”. If two, or more, “start events” have the same ID, only the first one is recorded, the others are discarded.

When an “end event” matching a previously collected “start event” is received, there is a match. The configuration property ‘new_event_on_match` tells where to insert the elapsed information: they can be added to the “end event” or a new “match event” can be created. Both events store the following information:

  • the tags ‘elapsed` and `elapsed_match`

  • the field ‘elapsed_time` with the difference, in seconds, between the two events timestamps

  • an ID filed with the task ID

  • the field ‘elapsed_timestamp_start` with the timestamp of the start event

If the “end event” does not arrive before “timeout” seconds, the “start event” is discarded and an “expired event” is generated. This event contains:

  • the tags ‘elapsed` and `elapsed_expired_error`

  • a field called ‘elapsed_time` with the age, in seconds, of the “start event”

  • an ID filed with the task ID

  • the field ‘elapsed_timestamp_start` with the timestamp of the “start event”

Constant Summary collapse

PREFIX =
"elapsed_"
ELAPSED_FIELD =
PREFIX + "time"
TIMESTAMP_START_EVENT_FIELD =
PREFIX + "timestamp_start"
HOST_FIELD =
"host"
ELAPSED_TAG =
"elapsed"
EXPIRED_ERROR_TAG =
PREFIX + "expired_error"
END_WITHOUT_START_TAG =
PREFIX + "end_without_start"
MATCH_TAG =
PREFIX + "match"

Instance Method Summary collapse

Instance Method Details

#filter(event) ⇒ Object



127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
# File 'lib/logstash/filters/elapsed.rb', line 127

def filter(event)


  unique_id = event.get(@unique_id_field)
  return if unique_id.nil?

  if(start_event?(event))
    filter_matched(event)
    @logger.info("Elapsed, 'start event' received", start_tag: @start_tag, unique_id_field: @unique_id_field)

    @mutex.synchronize do
      unless(@start_events.has_key?(unique_id))
        @start_events[unique_id] = LogStash::Filters::Elapsed::Element.new(event)
      end
    end

  elsif(end_event?(event))
    filter_matched(event)
    @logger.info("Elapsed, 'end event' received", end_tag: @end_tag, unique_id_field: @unique_id_field)

    @mutex.lock
    if(@start_events.has_key?(unique_id))
      start_event = @start_events.delete(unique_id).event
      @mutex.unlock
      elapsed = event.get("@timestamp") - start_event.get("@timestamp")
      if(@new_event_on_match)
        elapsed_event = new_elapsed_event(elapsed, unique_id, start_event.get("@timestamp"))
        filter_matched(elapsed_event)
        yield elapsed_event if block_given?
      else
        return add_elapsed_info(event, elapsed, unique_id, start_event.get("@timestamp"))
      end
    else
      @mutex.unlock
      # The "start event" did not arrive.
      event.tag(END_WITHOUT_START_TAG)
    end
  end
end

#flush(options = {}) ⇒ Object

The method is invoked by LogStash every 5 seconds.



168
169
170
171
172
173
174
175
176
177
# File 'lib/logstash/filters/elapsed.rb', line 168

def flush(options = {})
  expired_elements = []

  @mutex.synchronize do
    increment_age_by(5)
    expired_elements = remove_expired_elements()
  end

  return create_expired_events_from(expired_elements)
end

#registerObject



113
114
115
116
117
118
119
120
# File 'lib/logstash/filters/elapsed.rb', line 113

def register
  @mutex = Mutex.new
  # This is the state of the filter. The keys are the "unique_id_field",
  # the values are couples of values: <start event, age>
  @start_events = {}

  @logger.info("Elapsed, timeout: #{@timeout} seconds")
end

#start_eventsObject

Getter method used for the tests



123
124
125
# File 'lib/logstash/filters/elapsed.rb', line 123

def start_events
  @start_events
end